/* Techi Champs - Custom Styles */

/* Import Inter font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* CSS Variables */
:root {
  --tc-orange: #F97316;
  --tc-yellow: #FBBF24;
  --tc-black: #0B0B0C;
  --tc-ivory: #FFF7ED;
  --gradient-primary: linear-gradient(135deg, var(--tc-orange) 0%, var(--tc-yellow) 100%);
  --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  --shadow-glow: 0 0 20px rgba(249, 115, 22, 0.3);
  --shadow-glow-yellow: 0 0 20px rgba(251, 191, 36, 0.3);
}

/* Base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--tc-black);
  background-color: var(--tc-ivory);
  overflow-x: hidden;
}

/* 3D Effects and Animations */
.parallax-bg {
  position: relative;
  overflow: hidden;
}

.parallax-layer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  will-change: transform;
}

.starfield {
  background: radial-gradient(2px 2px at 20px 30px, #eee, transparent),
              radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.8), transparent),
              radial-gradient(1px 1px at 90px 40px, #fff, transparent),
              radial-gradient(1px 1px at 130px 80px, rgba(255,255,255,0.6), transparent),
              radial-gradient(2px 2px at 160px 30px, #ddd, transparent);
  background-repeat: repeat;
  background-size: 200px 100px;
  animation: twinkle 20s linear infinite;
}

@keyframes twinkle {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-100px); }
}

.floating-orb {
  position: absolute;
  border-radius: 50%;
  background: var(--gradient-primary);
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
  filter: blur(40px);
}

.floating-orb:nth-child(1) {
  width: 200px;
  height: 200px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-orb:nth-child(2) {
  width: 150px;
  height: 180px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.floating-orb:nth-child(3) {
  width: 100px;
  height: 50px;
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

/* Card Tilt Effect */
.tilt-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transform-style: preserve-3d;
}

.tilt-card:hover {
  transform: perspective(1000px) rotateX(5deg) rotateY(5deg) scale(1.02);
  box-shadow: var(--shadow-glow);
}

/* Glassmorphism */
.glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.glass-dark {
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

/* Animated Background */
.animated-bg {
  background: linear-gradient(-45deg, var(--tc-orange), var(--tc-yellow), var(--tc-orange), var(--tc-yellow));
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
}

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

/* Marquee Animation */
.marquee {
  display: flex;
  animation: marquee 30s linear infinite;
}

.marquee:hover {
  animation-play-state: paused;
}

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

  opacity: 1;
  transform: translateY(0);
}

/* Timeline Progress */
  position: relative;
}

  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 50px;
  transition: width 0.5s ease;
  z-index: 1;
}

/* Button Hover Effects */
.btn-3d {
  position: relative;
  transition: all 0.3s ease;
  transform-style: preserve-3d;
}

.btn-3d:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-3d:active {
  transform: translateY(0) scale(0.98);
}

/* Mobile Menu Slide Animation */
.mobile-menu {
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
}

.mobile-menu.open {
  transform: translateX(0);
}

/* Accordion Animation */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.accordion-content.open {
  max-height: 500px;
  transition: max-height 0.3s ease-in;
}

  opacity: 1;
  transform: translateX(0);
  position: relative;
}

/* Focus Styles for Accessibility */
.focus-visible:focus {
  outline: 2px solid var(--tc-orange);
  outline-offset: 2px;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .tilt-card:hover {
    transform: none;
  }
  
  .floating-orb {
    animation: none;
  }
  
  .starfield {
    animation: none;
  }
  
  .marquee {
    animation: none;
  }
}

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

::-webkit-scrollbar-track {
  background: var(--tc-ivory);
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-primary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--tc-orange);
}

/* Utility Classes */
.text-shadow {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.backdrop-blur {
  backdrop-filter: blur(10px);
}

.rotate-3d {
  transform-style: preserve-3d;
}

.perspective {
  perspective: 1000px;
}

/* Loading Animation */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: var(--tc-orange);
  animation: spin 1s ease-in-out infinite;
}

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

/* Toast Notification */
.toast {
  position: fixed;
  top: 20px;
  right: 20px;
  background: var(--tc-black);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 1000;
}

.toast.show {
  transform: translateX(0);
}

/* Form Validation Styles */
.form-error {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

.form-success {
  border-color: #10b981 !important;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1) !important;
}

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

/* Responsive Design Helpers */
@media (max-width: 768px) {
  .tilt-card:hover {
    transform: none;
  }
  
  .floating-orb {
    display: none;
  }
}
/* Enhanced 3D Hero Section Styles */

.hero-3d {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.hero-3d::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(249, 115, 22, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(251, 191, 36, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(249, 115, 22, 0.2) 0%, transparent 50%);
    animation: heroGradient 8s ease-in-out infinite;
    z-index: 1;
}

@keyframes heroGradient {
    0%, 100% { 
        transform: translateZ(0px) rotateX(0deg) rotateY(0deg);
        opacity: 0.8;
    }
    50% { 
        transform: translateZ(20px) rotateX(5deg) rotateY(5deg);
        opacity: 1;
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    transform-style: preserve-3d;
}

.hero-title-3d {
    transform: translateZ(50px);
    text-shadow: 
        0 0 20px rgba(249, 115, 22, 0.5),
        0 0 40px rgba(251, 191, 36, 0.3),
        0 0 60px rgba(249, 115, 22, 0.2);
    animation: titleFloat 6s ease-in-out infinite;
}

@keyframes titleFloat {
    0%, 100% { 
        transform: translateZ(50px) rotateX(0deg) rotateY(0deg);
    }
    50% { 
        transform: translateZ(60px) rotateX(2deg) rotateY(2deg);
    }
}

.hero-subtitle-3d {
    transform: translateZ(30px);
    animation: subtitleFloat 6s ease-in-out infinite 1s;
}

@keyframes subtitleFloat {
    0%, 100% { 
        transform: translateZ(30px) rotateX(0deg);
    }
    50% { 
        transform: translateZ(40px) rotateX(1deg);
    }
}

.hero-buttons-3d {
    transform: translateZ(40px);
    animation: buttonsFloat 6s ease-in-out infinite 2s;
}

@keyframes buttonsFloat {
    0%, 100% { 
        transform: translateZ(40px) rotateX(0deg);
    }
    50% { 
        transform: translateZ(50px) rotateX(1deg);
    }
}

.hero-form-3d {
    transform: translateZ(20px) rotateY(-5deg);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: formFloat 8s ease-in-out infinite 3s;
}

@keyframes formFloat {
    0%, 100% { 
        transform: translateZ(20px) rotateY(-5deg) rotateX(0deg);
    }
    50% { 
        transform: translateZ(30px) rotateY(-3deg) rotateX(2deg);
    }
}

.floating-orb-3d {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.3), rgba(251, 191, 36, 0.3));
    filter: blur(40px);
    animation: orbFloat3D 12s ease-in-out infinite;
    transform-style: preserve-3d;
}

.floating-orb-3d:nth-child(1) {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
    transform: translateZ(100px) rotateX(45deg) rotateY(45deg);
}

.floating-orb-3d:nth-child(2) {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 10%;
    animation-delay: 4s;
    transform: translateZ(150px) rotateX(-30deg) rotateY(60deg);
}

.floating-orb-3d:nth-child(3) {
    width: 150px;
    height: 180px;
    bottom: 20%;
    left: 15%;
    animation-delay: 8s;
    transform: translateZ(80px) rotateX(60deg) rotateY(-45deg);
}

@keyframes orbFloat3D {
    0%, 100% { 
        transform: translateZ(100px) rotateX(45deg) rotateY(45deg) scale(1);
        opacity: 0.3;
    }
    25% { 
        transform: translateZ(120px) rotateX(60deg) rotateY(30deg) scale(1.1);
        opacity: 0.5;
    }
    50% { 
        transform: translateZ(80px) rotateX(30deg) rotateY(60deg) scale(0.9);
        opacity: 0.4;
    }
    75% { 
        transform: translateZ(110px) rotateX(50deg) rotateY(40deg) scale(1.05);
        opacity: 0.6;
    }
}

.starfield-3d {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(251, 191, 36, 0.6), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.9), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(249, 115, 22, 0.4), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(255, 255, 255, 0.7), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: starfield3D 20s linear infinite;
    transform: translateZ(-50px);
}

@keyframes starfield3D {
    0% { 
        transform: translateZ(-50px) translateY(0px) rotateX(0deg);
        opacity: 0.8;
    }
    100% { 
        transform: translateZ(-50px) translateY(-100px) rotateX(10deg);
        opacity: 1;
    }
}

.gradient-text-3d {
    background: linear-gradient(135deg, #F97316 0%, #FBBF24 50%, #F97316 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift3D 4s ease-in-out infinite;
    text-shadow: 
        0 0 30px rgba(249, 115, 22, 0.5),
        0 0 60px rgba(251, 191, 36, 0.3);
}

@keyframes gradientShift3D {
    0% { 
        background-position: 0% 50%;
        transform: translateZ(0px);
    }
    50% { 
        background-position: 100% 50%;
        transform: translateZ(10px);
    }
    100% { 
        background-position: 0% 50%;
        transform: translateZ(0px);
    }
}

.btn-3d-enhanced {
    position: relative;
    transform-style: preserve-3d;
    transition: all 0.3s ease;
    box-shadow: 
        0 10px 30px rgba(249, 115, 22, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

.btn-3d-enhanced:hover {
    transform: translateY(-5px) translateZ(20px) rotateX(5deg);
    box-shadow: 
        0 20px 40px rgba(249, 115, 22, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-3d-enhanced:active {
    transform: translateY(-2px) translateZ(10px) rotateX(2deg);
}

.hero-glass-effect {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .hero-3d::before,
    .hero-title-3d,
    .hero-subtitle-3d,
    .hero-buttons-3d,
    .hero-form-3d,
    .floating-orb-3d,
    .starfield-3d,
    .gradient-text-3d {
        animation: none;
        transform: none;
    }
    
    .btn-3d-enhanced:hover {
        transform: none;
    }
}
/* 3D Geometric Shapes and Particles */

.floating-cube-3d {
    position: absolute;
    width: 40px;
    height: 50px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.3), rgba(251, 191, 36, 0.3));
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform-style: preserve-3d;
    animation: cubeFloat3D 15s ease-in-out infinite;
    box-shadow: 
        0 0 20px rgba(249, 115, 22, 0.2),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.floating-cube-3d::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 40px;
    height: 50px;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(249, 115, 22, 0.2));
    transform: rotateX(60deg) rotateY(45deg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.floating-cube-3d::after {
    content: '';
    position: absolute;
    top: 0;
    left: -20px;
    width: 40px;
    height: 50px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(251, 191, 36, 0.2));
    transform: rotateY(60deg) rotateX(45deg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@keyframes cubeFloat3D {
    0%, 100% { 
        transform: translateZ(0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
        opacity: 0.6;
    }
    25% { 
        transform: translateZ(50px) rotateX(90deg) rotateY(45deg) rotateZ(30deg);
        opacity: 0.8;
    }
    50% { 
        transform: translateZ(100px) rotateX(180deg) rotateY(90deg) rotateZ(60deg);
        opacity: 0.7;
    }
    75% { 
        transform: translateZ(75px) rotateX(270deg) rotateY(135deg) rotateZ(90deg);
        opacity: 0.9;
    }
}

.floating-pyramid-3d {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 50px solid rgba(249, 115, 22, 0.3);
    transform-style: preserve-3d;
    animation: pyramidFloat3D 12s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(249, 115, 22, 0.3));
}

.floating-pyramid-3d::before {
    content: '';
    position: absolute;
    top: 0;
    left: -25px;
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 50px solid rgba(251, 191, 36, 0.2);
    transform: rotateY(60deg);
}

.floating-pyramid-3d::after {
    content: '';
    position: absolute;
    top: 0;
    left: -25px;
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 50px solid rgba(249, 115, 22, 0.2);
    transform: rotateY(-60deg);
}

@keyframes pyramidFloat3D {
    0%, 100% { 
        transform: translateZ(0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
        opacity: 0.5;
    }
    33% { 
        transform: translateZ(60px) rotateX(45deg) rotateY(120deg) rotateZ(30deg);
        opacity: 0.7;
    }
    66% { 
        transform: translateZ(80px) rotateX(90deg) rotateY(240deg) rotateZ(60deg);
        opacity: 0.6;
    }
}

.particle-system-3d {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(249, 115, 22, 0.6) 50%, transparent 100%);
    border-radius: 50%;
    animation: particleFloat3D var(--duration) ease-in-out infinite;
    animation-delay: var(--delay);
    transform-style: preserve-3d;
}

.particle:nth-child(odd) {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.6) 0%, rgba(251, 191, 36, 0.4) 50%, transparent 100%);
}

@keyframes particleFloat3D {
    0% { 
        transform: translate3d(0, 100vh, 0) rotateX(0deg) rotateY(0deg) scale(0);
        opacity: 0;
    }
    10% { 
        transform: translate3d(10vw, 90vh, 20px) rotateX(45deg) rotateY(30deg) scale(1);
        opacity: 0.8;
    }
    50% { 
        transform: translate3d(50vw, 50vh, 100px) rotateX(90deg) rotateY(180deg) scale(1.2);
        opacity: 1;
    }
    90% { 
        transform: translate3d(90vw, 10vh, 20px) rotateX(135deg) rotateY(270deg) scale(0.8);
        opacity: 0.6;
    }
    100% { 
        transform: translate3d(100vw, 0, 0) rotateX(180deg) rotateY(360deg) scale(0);
        opacity: 0;
    }
}

/* Enhanced 3D Text Effects */
.hero-title-3d {
    position: relative;
}

.hero-title-3d::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer3D 3s ease-in-out infinite;
    transform: translateZ(10px);
}

@keyframes shimmer3D {
    0% { 
        background-position: -200% 0;
        transform: translateZ(10px) rotateX(0deg);
    }
    50% { 
        background-position: 200% 0;
        transform: translateZ(15px) rotateX(5deg);
    }
    100% { 
        background-position: -200% 0;
        transform: translateZ(10px) rotateX(0deg);
    }
}

/* 3D Button Enhancements */
.btn-3d-enhanced {
    position: relative;
    overflow: hidden;
}

.btn-3d-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-3d-enhanced:hover::before {
    left: 100%;
}

/* 3D Form Enhancements */
.hero-form-3d input,
.hero-form-3d select,
.hero-form-3d textarea {
    transition: all 0.3s ease;
    transform-style: preserve-3d;
}

.hero-form-3d input:focus,
.hero-form-3d select:focus,
.hero-form-3d textarea:focus {
    transform: translateZ(5px);
    box-shadow: 
        0 0 0 2px rgba(249, 115, 22, 0.5),
        0 10px 20px rgba(0, 0, 0, 0.1),
        0 0 30px rgba(249, 115, 22, 0.2);
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .floating-cube-3d,
    .floating-pyramid-3d,
    .particle,
    .hero-title-3d::before {
        animation: none;
        transform: none;
    }
    
    .btn-3d-enhanced::before {
        display: none;
    }
}
/* Advanced 3D Tech Icons and Enhanced Effects */

.tech-icons-3d {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 5;
}

.tech-icon-3d {
    position: absolute;
    width: 60px;
    height: 180px;
    transform-style: preserve-3d;
    animation: techIconFloat 20s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(249, 115, 22, 0.3));
}

.tech-icon-3d svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}

/* AI Brain Icon */
.tech-icon-ai {
    top: 15%;
    left: 8%;
    animation-delay: 0s;
    color: #F97316;
}

.tech-icon-ai::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 3s ease-in-out infinite;
}

/* Blockchain Icon */
.tech-icon-blockchain {
    top: 25%;
    right: 12%;
    animation-delay: 2s;
    color: #FBBF24;
}

.tech-icon-blockchain::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background: linear-gradient(45deg, rgba(251, 191, 36, 0.1), rgba(249, 115, 22, 0.1));
    border-radius: 8px;
    animation: blockPulse 4s ease-in-out infinite;
}

/* Cloud Computing Icon */
.tech-icon-cloud {
    top: 45%;
    left: 5%;
    animation-delay: 4s;
    color: #F97316;
}

.tech-icon-cloud::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(ellipse, rgba(249, 115, 22, 0.08) 0%, transparent 60%);
    animation: cloudFloat 5s ease-in-out infinite;
}

/* IoT Icon */
.tech-icon-iot {
    top: 65%;
    right: 8%;
    animation-delay: 6s;
    color: #FBBF24;
}

.tech-icon-iot::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    right: -12px;
    bottom: -12px;
    background: conic-gradient(from 0deg, rgba(251, 191, 36, 0.1), rgba(249, 115, 22, 0.1), rgba(251, 191, 36, 0.1));
    border-radius: 50%;
    animation: iotRotate 6s linear infinite;
}

/* Quantum Computing Icon */
.tech-icon-quantum {
    top: 35%;
    left: 15%;
    animation-delay: 8s;
    color: #F97316;
}

.tech-icon-quantum::before {
    content: '';
    position: absolute;
    top: -18px;
    left: -18px;
    right: -18px;
    bottom: -18px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, rgba(251, 191, 36, 0.05) 50%, transparent 100%);
    border-radius: 50%;
    animation: quantumPulse 2s ease-in-out infinite;
}

/* Machine Learning Icon */
.tech-icon-ml {
    top: 55%;
    right: 20%;
    animation-delay: 10s;
    color: #FBBF24;
}

.tech-icon-ml::before {
    content: '';
    position: absolute;
    top: -14px;
    left: -14px;
    right: -14px;
    bottom: -14px;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(249, 115, 22, 0.1));
    border-radius: 4px;
    animation: mlPulse 3.5s ease-in-out infinite;
}

/* Cybersecurity Icon */
.tech-icon-security {
    top: 75%;
    left: 12%;
    animation-delay: 12s;
    color: #F97316;
}

.tech-icon-security::before {
    content: '';
    position: absolute;
    top: -16px;
    left: -16px;
    right: -16px;
    bottom: -16px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: securityShield 4.5s ease-in-out infinite;
}

/* AR/VR Icon */
.tech-icon-ar {
    top: 20%;
    left: 25%;
    animation-delay: 14s;
    color: #FBBF24;
}

.tech-icon-ar::before {
    content: '';
    position: absolute;
    top: -22px;
    left: -22px;
    right: -22px;
    bottom: -22px;
    background: conic-gradient(from 45deg, rgba(251, 191, 36, 0.1), rgba(249, 115, 22, 0.1), rgba(251, 191, 36, 0.1));
    border-radius: 50%;
    animation: arRotate 7s linear infinite;
}

@keyframes techIconFloat {
    0%, 100% { 
        transform: translateZ(0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1);
        opacity: 0.7;
    }
    25% { 
        transform: translateZ(80px) rotateX(45deg) rotateY(90deg) rotateZ(30deg) scale(1.1);
        opacity: 0.9;
    }
    50% { 
        transform: translateZ(120px) rotateX(90deg) rotateY(180deg) rotateZ(60deg) scale(0.9);
        opacity: 0.8;
    }
    75% { 
        transform: translateZ(100px) rotateX(135deg) rotateY(270deg) rotateZ(90deg) scale(1.05);
        opacity: 0.85;
    }
}

@keyframes pulseGlow {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.3;
    }
    50% { 
        transform: scale(1.2);
        opacity: 0.6;
    }
}

@keyframes blockPulse {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        opacity: 0.2;
    }
    50% { 
        transform: scale(1.1) rotate(180deg);
        opacity: 0.4;
    }
}

@keyframes cloudFloat {
    0%, 100% { 
        transform: translateY(0px) scale(1);
        opacity: 0.3;
    }
    50% { 
        transform: translateY(-10px) scale(1.05);
        opacity: 0.5;
    }
}

@keyframes iotRotate {
    0% { 
        transform: rotate(0deg) scale(1);
        opacity: 0.2;
    }
    100% { 
        transform: rotate(360deg) scale(1.1);
        opacity: 0.4;
    }
}

@keyframes quantumPulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.3;
        filter: blur(0px);
    }
    50% { 
        transform: scale(1.3);
        opacity: 0.6;
        filter: blur(2px);
    }
}

@keyframes mlPulse {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        opacity: 0.25;
    }
    50% { 
        transform: scale(1.15) rotate(45deg);
        opacity: 0.5;
    }
}

@keyframes securityShield {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        opacity: 0.3;
    }
    50% { 
        transform: scale(1.2) rotate(5deg);
        opacity: 0.6;
    }
}

@keyframes arRotate {
    0% { 
        transform: rotate(0deg) scale(1);
        opacity: 0.2;
    }
    100% { 
        transform: rotate(360deg) scale(1.1);
        opacity: 0.4;
    }
}

/* Enhanced 3D Grid Background */
.hero-3d-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(249, 115, 22, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(251, 191, 36, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    transform: translateZ(-100px) rotateX(60deg);
    opacity: 0.3;
}

@keyframes gridMove {
    0% { 
        transform: translateZ(-100px) rotateX(60deg) translateY(0px);
    }
    100% { 
        transform: translateZ(-100px) rotateX(60deg) translateY(-50px);
    }
}

/* 3D Holographic Effect */
.holographic-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    background-size: 200% 200%;
    animation: holographicSweep 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 15;
}

@keyframes holographicSweep {
    0% { 
        background-position: -200% -200%;
        opacity: 0;
    }
    50% { 
        background-position: 0% 0%;
        opacity: 1;
    }
    100% { 
        background-position: 200% 200%;
        opacity: 0;
    }
}

/* Enhanced Particle System */
.enhanced-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, rgba(249, 115, 22, 0.7) 30%, transparent 100%);
    border-radius: 50%;
    animation: enhancedParticleFloat 15s ease-in-out infinite;
    transform-style: preserve-3d;
}

.enhanced-particle:nth-child(odd) {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.7) 0%, rgba(251, 191, 36, 0.5) 30%, transparent 100%);
    animation-duration: 18s;
}

.enhanced-particle:nth-child(3n) {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(249, 115, 22, 0.6) 20%, rgba(251, 191, 36, 0.4) 50%, transparent 100%);
    animation-duration: 12s;
}

@keyframes enhancedParticleFloat {
    0% { 
        transform: translate3d(0, 100vh, 0) rotateX(0deg) rotateY(0deg) scale(0);
        opacity: 0;
    }
    10% { 
        transform: translate3d(15vw, 85vh, 50px) rotateX(30deg) rotateY(45deg) scale(1);
        opacity: 0.8;
    }
    30% { 
        transform: translate3d(35vw, 70vh, 100px) rotateX(60deg) rotateY(90deg) scale(1.2);
        opacity: 1;
    }
    50% { 
        transform: translate3d(55vw, 50vh, 150px) rotateX(90deg) rotateY(135deg) scale(1.1);
        opacity: 0.9;
    }
    70% { 
        transform: translate3d(75vw, 30vh, 100px) rotateX(120deg) rotateY(180deg) scale(0.9);
        opacity: 0.7;
    }
    90% { 
        transform: translate3d(90vw, 15vh, 50px) rotateX(150deg) rotateY(225deg) scale(0.8);
        opacity: 0.5;
    }
    100% { 
        transform: translate3d(100vw, 0, 0) rotateX(180deg) rotateY(270deg) scale(0);
        opacity: 0;
    }
}

/* 3D Data Streams */
.data-stream-3d {
    position: absolute;
    width: 2px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, rgba(249, 115, 22, 0.8), transparent);
    animation: dataStream 10s linear infinite;
    transform-style: preserve-3d;
}

.data-stream-3d:nth-child(odd) {
    background: linear-gradient(to bottom, transparent, rgba(251, 191, 36, 0.8), transparent);
    animation-duration: 12s;
}

@keyframes dataStream {
    0% { 
        transform: translateY(100vh) translateZ(0px) rotateX(0deg);
        opacity: 0;
    }
    10% { 
        transform: translateY(90vh) translateZ(20px) rotateX(10deg);
        opacity: 0.8;
    }
    90% { 
        transform: translateY(10vh) translateZ(40px) rotateX(20deg);
        opacity: 0.6;
    }
    100% { 
        transform: translateY(0) translateZ(0px) rotateX(0deg);
        opacity: 0;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .tech-icon-3d,
    .hero-3d-grid,
    .holographic-overlay,
    .enhanced-particle,
    .data-stream-3d,
    .tech-icon-3d::before {
        animation: none;
        transform: none;
    }
}
/* Advanced Tech Icons with Unique 3D Effects */

.advanced-tech-icons-3d {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 6;
}

.tech-icon-advanced {
    position: absolute;
    width: 50px;
    height: 50px;
    transform-style: preserve-3d;
    animation: advancedTechFloat 25s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(249, 115, 22, 0.4));
}

.tech-icon-advanced svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}

/* Neural Network Icon */
.neural-network {
    top: 12%;
    left: 3%;
    animation-delay: 0s;
    color: #F97316;
}

.neural-network::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: neuralPulse 4s ease-in-out infinite;
}

/* Quantum Circuit Icon */
.quantum-circuit {
    top: 22%;
    right: 5%;
    animation-delay: 3s;
    color: #FBBF24;
}

.quantum-circuit::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, rgba(251, 191, 36, 0.15), rgba(249, 115, 22, 0.15));
    border-radius: 4px;
    animation: quantumGlow 5s ease-in-out infinite;
}

/* Holographic Display Icon */
.holographic {
    top: 35%;
    left: 2%;
    animation-delay: 6s;
    color: #F97316;
}

.holographic::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    right: -12px;
    bottom: -12px;
    background: conic-gradient(from 0deg, rgba(249, 115, 22, 0.1), rgba(251, 191, 36, 0.1), rgba(249, 115, 22, 0.1));
    border-radius: 8px;
    animation: holographicRotate 6s linear infinite;
}

/* DNA Helix Icon */
.dna-helix {
    top: 50%;
    right: 3%;
    animation-delay: 9s;
    color: #FBBF24;
}

.dna-helix::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background: radial-gradient(ellipse, rgba(251, 191, 36, 0.12) 0%, transparent 60%);
    border-radius: 50%;
    animation: dnaSpiral 7s ease-in-out infinite;
}

/* Satellite Network Icon */
.satellite {
    top: 65%;
    left: 4%;
    animation-delay: 12s;
    color: #F97316;
}

.satellite::before {
    content: '';
    position: absolute;
    top: -18px;
    left: -18px;
    right: -18px;
    bottom: -18px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, rgba(251, 191, 36, 0.05) 50%, transparent 100%);
    border-radius: 50%;
    animation: satelliteOrbit 8s linear infinite;
}

/* Blockchain Nodes Icon */
.blockchain-nodes {
    top: 75%;
    right: 6%;
    animation-delay: 15s;
    color: #FBBF24;
}

.blockchain-nodes::before {
    content: '';
    position: absolute;
    top: -14px;
    left: -14px;
    right: -14px;
    bottom: -14px;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(249, 115, 22, 0.1));
    border-radius: 6px;
    animation: blockchainPulse 4.5s ease-in-out infinite;
}

@keyframes advancedTechFloat {
    0%, 100% { 
        transform: translateZ(0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1);
        opacity: 0.6;
    }
    20% { 
        transform: translateZ(60px) rotateX(30deg) rotateY(60deg) rotateZ(20deg) scale(1.1);
        opacity: 0.8;
    }
    40% { 
        transform: translateZ(100px) rotateX(60deg) rotateY(120deg) rotateZ(40deg) scale(0.9);
        opacity: 0.7;
    }
    60% { 
        transform: translateZ(80px) rotateX(90deg) rotateY(180deg) rotateZ(60deg) scale(1.05);
        opacity: 0.9;
    }
    80% { 
        transform: translateZ(120px) rotateX(120deg) rotateY(240deg) rotateZ(80deg) scale(0.95);
        opacity: 0.75;
    }
}

@keyframes neuralPulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.3;
    }
    50% { 
        transform: scale(1.3);
        opacity: 0.6;
    }
}

@keyframes quantumGlow {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        opacity: 0.2;
    }
    50% { 
        transform: scale(1.2) rotate(180deg);
        opacity: 0.5;
    }
}

@keyframes holographicRotate {
    0% { 
        transform: rotate(0deg) scale(1);
        opacity: 0.3;
    }
    100% { 
        transform: rotate(360deg) scale(1.1);
        opacity: 0.6;
    }
}

@keyframes dnaSpiral {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        opacity: 0.25;
    }
    50% { 
        transform: scale(1.25) rotate(180deg);
        opacity: 0.5;
    }
}

@keyframes satelliteOrbit {
    0% { 
        transform: rotate(0deg) scale(1);
        opacity: 0.3;
    }
    100% { 
        transform: rotate(360deg) scale(1.15);
        opacity: 0.6;
    }
}

@keyframes blockchainPulse {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        opacity: 0.2;
    }
    50% { 
        transform: scale(1.2) rotate(45deg);
        opacity: 0.4;
    }
}

/* Holographic Grid */
.holographic-grid-3d {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 4;
}

.grid-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.3), transparent);
    animation: gridPulse 6s ease-in-out infinite;
}

.grid-line.horizontal {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.3), transparent);
}

.grid-line.vertical {
    height: 100%;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(251, 191, 36, 0.3), transparent);
}

@keyframes gridPulse {
    0%, 100% { 
        opacity: 0.2;
        transform: scaleX(1);
    }
    50% { 
        opacity: 0.6;
        transform: scaleX(1.1);
    }
}

/* Energy Waves */
.energy-waves-3d {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 3;
}

.energy-wave {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.8), rgba(251, 191, 36, 0.8), transparent);
    animation: energyWaveMove var(--duration) ease-in-out infinite;
    animation-delay: var(--delay);
    transform: translateY(-50%);
}

@keyframes energyWaveMove {
    0% { 
        transform: translateY(-50%) translateX(-100%) scaleX(0);
        opacity: 0;
    }
    10% { 
        transform: translateY(-50%) translateX(-50%) scaleX(1);
        opacity: 0.8;
    }
    90% { 
        transform: translateY(-50%) translateX(50%) scaleX(1);
        opacity: 0.6;
    }
    100% { 
        transform: translateY(-50%) translateX(100%) scaleX(0);
        opacity: 0;
    }
}

/* Enhanced 3D Depth Layers */
.hero-3d::before {
    background: 
        radial-gradient(circle at 15% 25%, rgba(249, 115, 22, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(251, 191, 36, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(249, 115, 22, 0.2) 0%, transparent 70%),
        linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(251, 191, 36, 0.1) 100%);
    animation: heroGradient 12s ease-in-out infinite;
}

/* 3D Text Enhancement */
.hero-title-3d {
    text-shadow: 
        0 0 20px rgba(249, 115, 22, 0.6),
        0 0 40px rgba(251, 191, 36, 0.4),
        0 0 60px rgba(249, 115, 22, 0.3),
        0 0 80px rgba(251, 191, 36, 0.2);
}

/* 3D Button Glow Enhancement */
.btn-3d-enhanced {
    box-shadow: 
        0 10px 30px rgba(249, 115, 22, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-3d-enhanced:hover {
    box-shadow: 
        0 20px 40px rgba(249, 115, 22, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 0 60px rgba(249, 115, 22, 0.3);
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .tech-icon-advanced,
    .grid-line,
    .energy-wave,
    .tech-icon-advanced::before {
        animation: none;
        transform: none;
    }
}
/* Final 3D Enhancements for Hero Section */

/* 3D Matrix Rain Effect */
.matrix-rain-3d {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}

.matrix-column {
    position: absolute;
    top: -100%;
    width: 2px;
    height: 200%;
    background: linear-gradient(to bottom, transparent, rgba(0, 255, 0, 0.1), transparent);
    animation: matrixFall 15s linear infinite;
    transform: translateZ(-50px);
}

.matrix-column:nth-child(odd) {
    background: linear-gradient(to bottom, transparent, rgba(249, 115, 22, 0.1), transparent);
    animation-duration: 20s;
}

.matrix-column:nth-child(3n) {
    background: linear-gradient(to bottom, transparent, rgba(251, 191, 36, 0.1), transparent);
    animation-duration: 18s;
}

@keyframes matrixFall {
    0% { 
        transform: translateY(-100%) translateZ(-50px);
        opacity: 0;
    }
    10% { 
        transform: translateY(-50%) translateZ(-25px);
        opacity: 0.8;
    }
    90% { 
        transform: translateY(50%) translateZ(25px);
        opacity: 0.6;
    }
    100% { 
        transform: translateY(100%) translateZ(50px);
        opacity: 0;
    }
}

/* 3D Holographic Scan Lines */
.holographic-scanlines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 8;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 255, 255, 0.03) 2px,
        rgba(0, 255, 255, 0.03) 4px
    );
    animation: scanlineMove 2s linear infinite;
}

@keyframes scanlineMove {
    0% { 
        transform: translateY(0);
    }
    100% { 
        transform: translateY(20px);
    }
}

/* 3D Glitch Effect */
.glitch-effect-3d {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 9;
    background: 
        linear-gradient(90deg, transparent 98%, rgba(255, 0, 0, 0.1) 100%),
        linear-gradient(0deg, transparent 98%, rgba(0, 255, 0, 0.1) 100%);
    background-size: 50px 50px;
    animation: glitchFlicker 0.3s infinite;
    opacity: 0;
}

@keyframes glitchFlicker {
    0%, 90% { 
        opacity: 0;
        transform: translateZ(0px);
    }
    5% { 
        opacity: 0.1;
        transform: translateZ(10px) skewX(1deg);
    }
    10% { 
        opacity: 0;
        transform: translateZ(0px) skewX(0deg);
    }
}

/* 3D Energy Orbs */
.energy-orb-3d {
    position: absolute;
    width: 100px;
    height: 50px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.3) 0%, rgba(251, 191, 36, 0.2) 50%, transparent 100%);
    filter: blur(20px);
    animation: energyOrbFloat 15s ease-in-out infinite;
    transform-style: preserve-3d;
}

.energy-orb-3d:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    transform: translateZ(50px) rotateX(45deg) rotateY(45deg);
}

.energy-orb-3d:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 5s;
    transform: translateZ(75px) rotateX(-30deg) rotateY(60deg);
}

.energy-orb-3d:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 10s;
    transform: translateZ(100px) rotateX(60deg) rotateY(-45deg);
}

@keyframes energyOrbFloat {
    0%, 100% { 
        transform: translateZ(50px) rotateX(45deg) rotateY(45deg) scale(1);
        opacity: 0.3;
    }
    25% { 
        transform: translateZ(80px) rotateX(60deg) rotateY(30deg) scale(1.2);
        opacity: 0.5;
    }
    50% { 
        transform: translateZ(60px) rotateX(30deg) rotateY(60deg) scale(0.8);
        opacity: 0.4;
    }
    75% { 
        transform: translateZ(90px) rotateX(50deg) rotateY(40deg) scale(1.1);
        opacity: 0.6;
    }
}

/* 3D Hexagonal Grid */
.hexagonal-grid-3d {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(249, 115, 22, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(251, 191, 36, 0.1) 0%, transparent 50%);
    background-size: 100px 100px;
    animation: hexGridMove 30s linear infinite;
    transform: translateZ(-30px) rotateX(45deg);
}

@keyframes hexGridMove {
    0% { 
        transform: translateZ(-30px) rotateX(45deg) translateY(0px);
    }
    100% { 
        transform: translateZ(-30px) rotateX(45deg) translateY(-100px);
    }
}

/* 3D Neon Glow Effects */
.neon-glow-3d {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 7;
    background: 
        radial-gradient(circle at 30% 20%, rgba(249, 115, 22, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(251, 191, 36, 0.1) 0%, transparent 50%);
    animation: neonPulse 8s ease-in-out infinite;
}

@keyframes neonPulse {
    0%, 100% { 
        opacity: 0.3;
        transform: scale(1);
    }
    50% { 
        opacity: 0.6;
        transform: scale(1.1);
    }
}

/* Enhanced 3D Button Effects */
.btn-3d-enhanced::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-3d-enhanced:hover::after {
    opacity: 1;
}

/* 3D Form Field Enhancement */
.hero-form-3d input:focus,
.hero-form-3d select:focus,
.hero-form-3d textarea:focus {
    transform: translateZ(10px) rotateY(-2deg);
    box-shadow: 
        0 0 0 2px rgba(249, 115, 22, 0.6),
        0 15px 30px rgba(0, 0, 0, 0.15),
        0 0 40px rgba(249, 115, 22, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* 3D Text Shimmer Enhancement */
.hero-title-3d::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer3D 4s ease-in-out infinite;
    transform: translateZ(15px);
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .matrix-column,
    .holographic-scanlines,
    .glitch-effect-3d,
    .energy-orb-3d,
    .hexagonal-grid-3d,
    .neon-glow-3d,
    .hero-title-3d::after {
        animation: none;
        transform: none;
    }
}
/* Black Hero Section Enhancements */

.hero-3d {
    background: linear-gradient(135deg, #0B0B0C 0%, #1a1a1a 50%, #0B0B0C 100%);
    position: relative;
    overflow: hidden;
}

.hero-3d::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(249, 115, 22, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(251, 191, 36, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(249, 115, 22, 0.08) 0%, transparent 70%);
    animation: heroGradient 12s ease-in-out infinite;
    z-index: 1;
}

.hero-title-3d {
    color: #ffffff;
    text-shadow: 
        0 0 20px rgba(249, 115, 22, 0.8),
        0 0 40px rgba(251, 191, 36, 0.6),
        0 0 60px rgba(249, 115, 22, 0.4),
        0 0 80px rgba(251, 191, 36, 0.2);
}

.hero-subtitle-3d {
    color: #d1d5db;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-form-3d {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(249, 115, 22, 0.3);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hero-form-3d input,
.hero-form-3d select,
.hero-form-3d textarea {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(249, 115, 22, 0.3);
    color: #ffffff;
    backdrop-filter: blur(10px);
}

.hero-form-3d input::placeholder,
.hero-form-3d textarea::placeholder {
    color: #9ca3af;
}

.hero-form-3d input:focus,
.hero-form-3d select:focus,
.hero-form-3d textarea:focus {
    background: rgba(0, 0, 0, 0.5);
    border-color: #F97316;
    box-shadow: 
        0 0 0 2px rgba(249, 115, 22, 0.5),
        0 0 20px rgba(249, 115, 22, 0.3);
}

.floating-orb-3d {
    background: radial-gradient(circle, rgba(249, 115, 22, 0.2) 0%, rgba(251, 191, 36, 0.1) 50%, transparent 100%);
    filter: blur(40px);
}

.starfield-3d {
    background: 
        radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(249, 115, 22, 0.2), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(251, 191, 36, 0.2), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(255, 255, 255, 0.3), transparent);
}

.gradient-text-3d {
    background: linear-gradient(135deg, #F97316 0%, #FBBF24 50%, #F97316 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift3D 4s ease-in-out infinite;
    text-shadow: 
        0 0 30px rgba(249, 115, 22, 0.8),
        0 0 60px rgba(251, 191, 36, 0.6);
}

.btn-3d-enhanced {
    box-shadow: 
        0 10px 30px rgba(249, 115, 22, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-3d-enhanced:hover {
    box-shadow: 
        0 20px 40px rgba(249, 115, 22, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 0 60px rgba(249, 115, 22, 0.4);
}

/* Enhanced 3D effects for black background */
.tech-icon-3d {
    filter: drop-shadow(0 0 15px rgba(249, 115, 22, 0.6));
}

.tech-icon-3d svg {
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.4));
}

.matrix-column {
    background: linear-gradient(to bottom, transparent, rgba(249, 115, 22, 0.1), transparent);
}

.energy-wave {
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.6), rgba(251, 191, 36, 0.6), transparent);
}

.holographic-scanlines {
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 255, 255, 0.05) 2px,
        rgba(0, 255, 255, 0.05) 4px
    );
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .hero-3d::before,
    .gradient-text-3d,
    .floating-orb-3d,
    .starfield-3d {
        animation: none;
    }
}
/* Modern Hero Section Redesign */

.hero-modern {
    background: linear-gradient(135deg, #0B0B0C 0%, #1a1a1a 100%);
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(249, 115, 22, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(251, 191, 36, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(249, 115, 22, 0.1) 0%, transparent 70%);
    animation: modernGradient 8s ease-in-out infinite;
    z-index: 1;
}

.hero-modern::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 2;
}

@keyframes modernGradient {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        opacity: 0.8;
    }
    50% { 
        transform: scale(1.1) rotate(180deg);
        opacity: 1;
    }
}

.hero-content-modern {
    position: relative;
    z-index: 10;
    max-width: 7xl;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.hero-title-modern {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: titleSlideIn 1s ease-out;
}

.hero-title-modern .gradient-text-modern {
    background: linear-gradient(135deg, #F97316 0%, #FBBF24 50%, #F97316 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes titleSlideIn {
    0% { 
        transform: translateY(50px);
        opacity: 0;
    }
    100% { 
        transform: translateY(0);
        opacity: 1;
    }
}

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

.hero-subtitle-modern {
    font-size: 1.25rem;
    color: #e5e7eb;
    margin-bottom: 2rem;
    max-width: 600px;
    line-height: 1.6;
    animation: subtitleSlideIn 1s ease-out 0.3s both;
}

@keyframes subtitleSlideIn {
    0% { 
        transform: translateY(30px);
        opacity: 0;
    }
    100% { 
        transform: translateY(0);
        opacity: 1;
    }
}

.hero-buttons-modern {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    animation: buttonsSlideIn 1s ease-out 0.6s both;
}

@keyframes buttonsSlideIn {
    0% { 
        transform: translateY(30px);
        opacity: 0;
    }
    100% { 
        transform: translateY(0);
        opacity: 1;
    }
}

.btn-modern-primary {
    background: linear-gradient(135deg, #F97316 0%, #FBBF24 100%);
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-modern-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-modern-primary:hover::before {
    left: 100%;
}

.btn-modern-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.4);
}

.btn-modern-secondary {
    background: transparent;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-modern-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.hero-form-modern {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    animation: formSlideIn 1s ease-out 0.9s both;
}

@keyframes formSlideIn {
    0% { 
        transform: translateY(50px);
        opacity: 0;
    }
    100% { 
        transform: translateY(0);
        opacity: 1;
    }
}

.form-title-modern {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-group-modern {
    margin-bottom: 1rem;
}

.form-input-modern {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-input-modern::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-input-modern:focus {
    outline: none;
    border-color: #F97316;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.form-select-modern {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-select-modern:focus {
    outline: none;
    border-color: #F97316;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.form-textarea-modern {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    resize: vertical;
    min-height: 50px;
}

.form-textarea-modern::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-textarea-modern:focus {
    outline: none;
    border-color: #F97316;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.form-checkbox-modern {
    display: flex;
    align-items: center;
    margin-top: 1rem;
}

.form-checkbox-modern input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 0.5rem;
    accent-color: #F97316;
}

.form-checkbox-modern label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.form-checkbox-modern a {
    color: #F97316;
    text-decoration: none;
}

.form-checkbox-modern a:hover {
    text-decoration: underline;
}

.btn-submit-modern {
    width: 100%;
    background: linear-gradient(135deg, #F97316 0%, #FBBF24 100%);
    color: #ffffff;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(249, 115, 22, 0.3);
}

.btn-submit-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
}

/* Floating Elements */
.floating-elements-modern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 3;
}

.floating-shape-modern {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(251, 191, 36, 0.1));
    animation: floatModern 6s ease-in-out infinite;
}

.floating-shape-modern:nth-child(1) {
    width: 80px;
    height: 50px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-shape-modern:nth-child(2) {
    width: 120px;
    height: 180px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-shape-modern:nth-child(3) {
    width: 60px;
    height: 180px;
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes floatModern {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    50% { 
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title-modern {
        font-size: 2.5rem;
    }
    
    .hero-buttons-modern {
        flex-direction: column;
    }
    
    .btn-modern-primary,
    .btn-modern-secondary {
        width: 100%;
        text-align: center;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .hero-modern::before,
    .gradient-text-modern,
    .floating-shape-modern,
    .titleSlideIn,
    .subtitleSlideIn,
    .buttonsSlideIn,
    .formSlideIn {
        animation: none;
    }
}
/* Color Scheme Update */

:root {
    --tc-orange: #F97316;
    --tc-orange-hover: #EA580C;
    --tc-yellow: #FBBF24;
    --tc-yellow-hover: #F59E0B;
    --tc-black: #0B0B0C;
    --tc-off-white: #FFF7ED;
}

/* Update Tailwind Config */
.tcOrange {
    color: #F97316;
}

.bg-tcOrange {
    background-color: #F97316;
}

.border-tcOrange {
    border-color: #F97316;
}

.text-tcOrange {
    color: #F97316;
}

.tcYellow {
    color: #FBBF24;
}

.bg-tcYellow {
    background-color: #FBBF24;
}

.border-tcYellow {
    border-color: #FBBF24;
}

.text-tcYellow {
    color: #FBBF24;
}

.tcBlack {
    color: #0B0B0C;
}

.bg-tcBlack {
    background-color: #0B0B0C;
}

.border-tcBlack {
    border-color: #0B0B0C;
}

.text-tcBlack {
    color: #0B0B0C;
}

.tcOffWhite {
    color: #FFF7ED;
}

.bg-tcOffWhite {
    background-color: #FFF7ED;
}

.border-tcOffWhite {
    border-color: #FFF7ED;
}

.text-tcOffWhite {
    color: #FFF7ED;
}

/* Hover States */
.hover\:bg-tcOrange:hover {
    background-color: #EA580C;
}

.hover\:bg-tcYellow:hover {
    background-color: #F59E0B;
}

.hover\:text-tcOrange:hover {
    color: #EA580C;
}

.hover\:text-tcYellow:hover {
    color: #F59E0B;
}

/* Focus States */
.focus\:border-tcOrange:focus {
    border-color: #F97316;
}

.focus\:ring-tcOrange:focus {
    --tw-ring-color: #F97316;
}

/* Gradient Updates */
.gradient-orange-yellow {
    background: linear-gradient(135deg, #F97316 0%, #FBBF24 100%);
}

.gradient-orange-yellow-hover {
    background: linear-gradient(135deg, #EA580C 0%, #F59E0B 100%);
}

/* Hero Section Color Updates */
.hero-modern {
    background: linear-gradient(135deg, #0B0B0C 0%, #1a1a1a 100%);
}

.hero-modern::before {
    background: 
        radial-gradient(circle at 20% 80%, rgba(249, 115, 22, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(251, 191, 36, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(249, 115, 22, 0.1) 0%, transparent 70%);
}

.hero-title-modern .gradient-text-modern {
    background: linear-gradient(135deg, #F97316 0%, #FBBF24 50%, #F97316 100%);
}

.btn-modern-primary {
    background: linear-gradient(135deg, #F97316 0%, #FBBF24 100%);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
}

.btn-modern-primary:hover {
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.4);
}

.btn-submit-modern {
    background: linear-gradient(135deg, #F97316 0%, #FBBF24 100%);
    box-shadow: 0 5px 15px rgba(249, 115, 22, 0.3);
}

.btn-submit-modern:hover {
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
}

.form-input-modern:focus {
    border-color: #F97316;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.2);
}

.form-select-modern:focus {
    border-color: #F97316;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.2);
}

.form-textarea-modern:focus {
    border-color: #F97316;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.2);
}

.form-checkbox-modern input[type="checkbox"] {
    accent-color: #F97316;
}

.form-checkbox-modern a {
    color: #F97316;
}

/* Floating Elements */
.floating-shape-modern {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(251, 191, 36, 0.1));
}

/* Header Updates */
.header-bg {
    background-color: rgba(11, 11, 12, 0.9);
}

.mobile-menu-bg {
    background-color: rgba(11, 11, 12, 0.95);
}

.mobile-overlay {
    background-color: rgba(11, 11, 12, 0.5);
}

/* Footer Updates */
.footer-bg {
    background: linear-gradient(135deg, #0B0B0C 0%, #1a1a1a 100%);
}

.footer-accent {
    background: linear-gradient(135deg, #F97316 0%, #FBBF24 100%);
}

/* Button Hover Effects */
.btn-primary:hover {
    background-color: #EA580C;
}

.btn-secondary:hover {
    background-color: #F59E0B;
}

/* Card Hover Effects */
.card-hover:hover {
    border-color: #F97316;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.2);
}

/* Link Hover Effects */
.link-hover:hover {
    color: #F97316;
}

/* Form Validation */
.form-error {
    border-color: #EA580C;
}

.form-success {
    border-color: #F97316;
}

/* Loading States */
.loading-orange {
    background: linear-gradient(90deg, #F97316 25%, #FBBF24 50%, #F97316 75%);
}

/* Animation Updates */
@keyframes gradientShift {
    0% { 
        background-position: 0% 50%;
    }
    50% { 
        background-position: 100% 50%;
    }
    100% { 
        background-position: 0% 50%;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-modern {
        background: linear-gradient(135deg, #0B0B0C 0%, #1a1a1a 100%);
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    :root {
        --tc-orange: #F97316;
        --tc-orange-hover: #EA580C;
        --tc-yellow: #FBBF24;
        --tc-yellow-hover: #F59E0B;
        --tc-black: #0B0B0C;
        --tc-off-white: #FFF7ED;
    }
}
/* 3D Footer Design */

.footer-3d {
    background: linear-gradient(135deg, #0B0B0C 0%, #1a1a1a 50%, #0B0B0C 100%);
    position: relative;
    overflow: hidden;
    padding: 4rem 0 2rem;
    margin-top: 6rem;
}

.footer-3d::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #F97316, #FBBF24, #F97316, transparent);
    animation: footerGlow 3s ease-in-out infinite;
}

.footer-3d::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(249, 115, 22, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(251, 191, 36, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(249, 115, 22, 0.05) 0%, transparent 70%);
    z-index: 1;
}

@keyframes footerGlow {
    0%, 100% { 
        opacity: 0.5;
        transform: scaleX(1);
    }
    50% { 
        opacity: 1;
        transform: scaleX(1.1);
    }
}

.footer-content-3d {
    position: relative;
    z-index: 10;
    max-width: 7xl;
    margin: 0 auto;
    padding: 0 1rem;
}

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

.footer-brand-3d {
    position: relative;
}

.footer-logo-3d {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(249, 115, 22, 0.3);
    position: relative;
}

.footer-logo-3d::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #F97316, #FBBF24);
    border-radius: 2px;
    animation: logoUnderline 2s ease-in-out infinite;
}

@keyframes logoUnderline {
    0%, 100% { 
        width: 50px;
        opacity: 0.8;
    }
    50% { 
        width: 80px;
        opacity: 1;
    }
}

.footer-tagline-3d {
    color: #e5e7eb;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

    display: flex;
    gap: 1rem;
}

    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.3), transparent);
    transition: left 0.5s ease;
}

    left: 100%;
}

    background: rgba(249, 115, 22, 0.2);
    border-color: #F97316;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(249, 115, 22, 0.3);
}

.footer-column-3d {
    position: relative;
}

.footer-title-3d {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-title-3d::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #F97316, #FBBF24);
    border-radius: 1px;
}

.footer-links-3d {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-3d li {
    margin-bottom: 0.75rem;
}

.footer-links-3d a {
    color: #e5e7eb;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-links-3d a::before {
    content: '▶';
    position: absolute;
    left: -20px;
    color: #F97316;
    opacity: 0;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.footer-links-3d a:hover {
    color: #F97316;
    padding-left: 20px;
}

.footer-links-3d a:hover::before {
    opacity: 1;
    left: 0;
}

.footer-contact-3d {
    position: relative;
}

.contact-item-3d {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #e5e7eb;
}

.contact-icon-3d {
    width: 20px;
    height: 20px;
    margin-right: 0.75rem;
    color: #F97316;
    flex-shrink: 0;
}

.contact-text-3d {
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-bottom-3d {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 2rem;
    position: relative;
    z-index: 10;
}

.footer-policies-3d {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.policy-link-3d {
    color: #e5e7eb;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.policy-link-3d::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #F97316;
    transition: width 0.3s ease;
}

.policy-link-3d:hover {
    color: #F97316;
}

.policy-link-3d:hover::after {
    width: 100%;
}

.footer-copyright-3d {
    text-align: center;
    color: #9ca3af;
    font-size: 0.9rem;
    position: relative;
}

.footer-copyright-3d::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #F97316, transparent);
}

/* Floating Elements */
.footer-floating-3d {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 2;
}

.footer-orb-3d {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(251, 191, 36, 0.1));
    animation: footerFloat 8s ease-in-out infinite;
}

.footer-orb-3d:nth-child(1) {
    width: 60px;
    height: 180px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.footer-orb-3d:nth-child(2) {
    width: 80px;
    height: 50px;
    top: 60%;
    right: 15%;
    animation-delay: 3s;
}

.footer-orb-3d:nth-child(3) {
    width: 40px;
    height: 50px;
    bottom: 30%;
    left: 20%;
    animation-delay: 6s;
}

@keyframes footerFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        opacity: 0.6;
    }
    50% { 
        transform: translateY(-15px) rotate(180deg);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-3d {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-main-3d {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-policies-3d {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
        justify-content: center;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .footer-3d::before,
    .footer-logo-3d::after,
    .footer-title-3d::after,
    .footer-orb-3d,
    .logoUnderline,
    .footerGlow,
    .footerFloat {
        animation: none;
    }
}
/* FAQ Section Styles */

.faq-section {
    background: linear-gradient(135deg, #FFF7ED 0%, #f8fafc 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(249, 115, 22, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(251, 191, 36, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.faq-content {
    position: relative;
    z-index: 10;
    max-width: 4xl;
    margin: 0 auto;
    padding: 0 1rem;
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-title {
    font-size: 3rem;
    font-weight: 800;
    color: #0B0B0C;
    margin-bottom: 1rem;
    position: relative;
}

.faq-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #F97316, #FBBF24);
    border-radius: 2px;
}

.faq-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.faq-container {
    display: grid;
    gap: 1rem;
}

.faq-item {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: none;
}

.faq-item:hover {
    box-shadow: 0 8px 30px rgba(249, 115, 22, 0.15);
    transform: translateY(-2px);
}

.faq-question {
    padding: 1.5rem;
    background: #ffffff;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #0B0B0C;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: #F97316;
    transition: all 0.3s ease;
    font-weight: 300;
}

.faq-question.active::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-question:hover {
    background: rgba(249, 115, 22, 0.05);
    color: #F97316;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f8fafc;
}

.faq-answer-content {
    padding: 0 1.5rem 1.5rem;
    color: #6b7280;
    line-height: 1.6;
    font-size: 1rem;
}

.faq-answer-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.faq-answer-content li {
    margin-bottom: 0.5rem;
}

.faq-answer-content strong {
    color: #0B0B0C;
    font-weight: 600;
}

/* Mobile Menu Styles */
.mobile-menu {
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-menu:not(.hidden) {
    transform: translateX(0);
}

.mobile-menu-overlay {
    backdrop-filter: blur(4px);
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay:not(.hidden) {
    opacity: 1;
}

/* Services Dropdown */
.services-dropdown {
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.services-dropdown:not(.hidden) {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-section {
        padding: 4rem 0;
    }
    
    .faq-title {
        font-size: 2.5rem;
    }
    
    .faq-question {
        padding: 1.25rem;
        font-size: 1rem;
    }
    
    .faq-answer-content {
        padding: 0 1.25rem 1.25rem;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .faq-item,
    .faq-question,
    .faq-answer,
    .mobile-menu,
    .mobile-menu-overlay,
    .services-dropdown {
        transition: none;
    }
}
/* Mobile Menu Fix */

/* Mobile Menu Button */
.mobile-menu-button {
    display: none;
}

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

/* Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: rgba(11, 11, 12, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mobile-menu:not(.hidden) {
    right: 0;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay:not(.hidden) {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-header {
    padding: 0;
    border-bottom: 1px solid rgba(249, 115, 22, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(249, 115, 22, 0.2);
}

.mobile-menu-content {
    padding: 2rem 1rem;
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-links li {
    margin-bottom: 0.5rem;
}

.mobile-nav-links a {
    display: block;
    padding: 0;
    color: #e5e7eb;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-nav-links a:hover {
    background: rgba(249, 115, 22, 0.1);
    color: #F97316;
    padding-left: 1.5rem;
}

.mobile-nav-links a::before {
    content: '▶';
    position: absolute;
    left: 0.5rem;
    color: #F97316;
    opacity: 0;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.mobile-nav-links a:hover::before {
    opacity: 1;
    left: 1rem;
}

/* Services Submenu */
.mobile-services-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(249, 115, 22, 0.05);
    border-radius: 8px;
    margin-top: 0.5rem;
}

.mobile-services-submenu.active {
    max-height: 300px;
}

.mobile-services-submenu a {
    padding: 0.75rem 1rem 0.75rem 2rem;
    font-size: 1rem;
    color: #9ca3af;
}

.mobile-services-submenu a:hover {
    color: #F97316;
    background: rgba(249, 115, 22, 0.1);
}

/* Mobile CTA Buttons */
.mobile-cta-buttons {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(249, 115, 22, 0.2);
}

.mobile-cta-button {
    display: block;
    width: 100%;
    padding: 0;
    margin-bottom: 1rem;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.mobile-cta-primary {
    background: linear-gradient(135deg, #F97316 0%, #FBBF24 100%);
    color: #ffffff;
}

.mobile-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
}

.mobile-cta-secondary {
    background: transparent;
    color: #F97316;
    border: 2px solid #F97316;
}

.mobile-cta-secondary:hover {
    background: rgba(249, 115, 22, 0.1);
}

/* Services Toggle Button */
.services-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0;
    background: none;
    border: none;
    color: #e5e7eb;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.services-toggle:hover {
    background: rgba(249, 115, 22, 0.1);
    color: #F97316;
}

.services-toggle-arrow {
    transition: transform 0.3s ease;
    color: #F97316;
}

.services-toggle.active .services-toggle-arrow {
    transform: rotate(180deg);
}

/* Hide desktop elements on mobile */
@media (max-width: 768px) {
    .desktop-nav {
        display: none !important;
    }
    
    .desktop-cta {
        display: none !important;
    }
    
    .services-dropdown {
        display: none !important;
    }
}

/* Show mobile elements on mobile */
@media (min-width: 769px) {
    .mobile-menu-button {
        display: none !important;
    }
    
    .mobile-menu {
        display: none !important;
    }
    
    .mobile-menu-overlay {
        display: none !important;
    }
}
/* Toggle Menu CSS Fix */

/* Mobile Menu Button */
.mobile-menu-button {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.mobile-menu-button:hover {
    background: rgba(249, 115, 22, 0.1);
}

@media (max-width: 768px) {
    .mobile-menu-button {
        display: block;
    }
    
    .desktop-nav {
        display: none !important;
    }
    
    .desktop-cta {
        display: none !important;
    }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: rgba(11, 11, 12, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mobile-menu:not(.hidden) {
    right: 0;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay:not(.hidden) {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu Header */
.mobile-menu-header {
    padding: 0;
    border-bottom: 1px solid rgba(249, 115, 22, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    border-radius: 50%;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-close:hover {
    background: rgba(249, 115, 22, 0.2);
    color: #F97316;
}

/* Mobile Menu Content */
.mobile-menu-content {
    padding: 2rem 1rem;
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-links li {
    margin-bottom: 0.5rem;
}

.mobile-nav-links a {
    display: block;
    padding: 0;
    color: #e5e7eb;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-nav-links a:hover {
    background: rgba(249, 115, 22, 0.1);
    color: #F97316;
    padding-left: 1.5rem;
}

.mobile-nav-links a::before {
    content: '▶';
    position: absolute;
    left: 0.5rem;
    color: #F97316;
    opacity: 0;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.mobile-nav-links a:hover::before {
    opacity: 1;
    left: 1rem;
}

/* Services Submenu */
.mobile-services-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(249, 115, 22, 0.05);
    border-radius: 8px;
    margin-top: 0.5rem;
}

.mobile-services-submenu.active {
    max-height: 300px;
}

.mobile-services-submenu a {
    padding: 0.75rem 1rem 0.75rem 2rem;
    font-size: 1rem;
    color: #9ca3af;
}

.mobile-services-submenu a:hover {
    color: #F97316;
    background: rgba(249, 115, 22, 0.1);
}

/* Services Toggle Button */
.services-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0;
    background: none;
    border: none;
    color: #e5e7eb;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: left;
}

.services-toggle:hover {
    background: rgba(249, 115, 22, 0.1);
    color: #F97316;
}

.services-toggle-arrow {
    transition: transform 0.3s ease;
    color: #F97316;
    font-size: 0.8rem;
}

.services-toggle.active .services-toggle-arrow {
    transform: rotate(180deg);
}

/* Mobile CTA Buttons */
.mobile-cta-buttons {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(249, 115, 22, 0.2);
}

.mobile-cta-button {
    display: block;
    width: 100%;
    padding: 0;
    margin-bottom: 1rem;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.mobile-cta-primary {
    background: linear-gradient(135deg, #F97316 0%, #FBBF24 100%);
    color: #ffffff;
}

.mobile-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
}

.mobile-cta-secondary {
    background: transparent;
    color: #F97316;
    border: 2px solid #F97316;
}

.mobile-cta-secondary:hover {
    background: rgba(249, 115, 22, 0.1);
}

/* Desktop Services Dropdown */
.services-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0.5rem;
    width: 200px;
    background: rgba(11, 11, 12, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(249, 115, 22, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.services-dropdown:not(.hidden) {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.services-dropdown .py-2 a {
    display: block;
    padding: 0.75rem 1rem;
    color: #e5e7eb;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 4px;
    margin: 0.25rem;
}

.services-dropdown .py-2 a:hover {
    background: rgba(249, 115, 22, 0.2);
    color: #F97316;
}

/* Hide desktop elements on mobile */
@media (max-width: 768px) {
    .desktop-nav {
        display: none !important;
    }
    
    .desktop-cta {
        display: none !important;
    }
}

/* Show mobile elements on mobile */
@media (min-width: 769px) {
    .mobile-menu-button {
        display: none !important;
    }
    
    .mobile-menu {
        display: none !important;
    }
    
    .mobile-menu-overlay {
        display: none !important;
    }
}
/* Header Improvement CSS */

/* Desktop CTA Button */
.header-cta-button {
    background: linear-gradient(135deg, #F97316 0%, #FBBF24 100%);
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
    position: relative;
    overflow: hidden;
}

.header-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.header-cta-button:hover::before {
    left: 100%;
}

.header-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
    color: #ffffff;
}

/* Mobile CTA Button */
.mobile-header-cta-button {
    background: linear-gradient(135deg, #F97316 0%, #FBBF24 100%);
    color: #ffffff;
    padding: 0;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.mobile-header-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.mobile-header-cta-button:hover::before {
    left: 100%;
}

.mobile-header-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
    color: #ffffff;
}

/* Header Improvements */
.header-improved {
    background: rgba(11, 11, 12, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-logo {
    font-size: 1.75rem;
    font-weight: 800;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.header-logo:hover {
    color: #F97316;
    transform: scale(1.05);
}

.header-logo .logo-accent {
    color: #F97316;
    position: relative;
}

.header-logo .logo-accent::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #F97316, #FBBF24);
    border-radius: 1px;
    animation: logoGlow 2s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% { 
        opacity: 0.8;
        transform: scaleX(1);
    }
    50% { 
        opacity: 1;
        transform: scaleX(1.1);
    }
}

/* Navigation Links */
.nav-link {
    color: #e5e7eb;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 0;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #F97316, #FBBF24);
    border-radius: 1px;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #F97316;
}

.nav-link:hover::after {
    width: 100%;
}

/* Services Dropdown */
.services-dropdown-improved {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0.5rem;
    width: 220px;
    background: rgba(11, 11, 12, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(249, 115, 22, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.services-dropdown-improved:not(.hidden) {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.services-dropdown-improved .py-2 a {
    display: block;
    padding: 0.875rem 1.25rem;
    color: #e5e7eb;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 0.25rem;
    position: relative;
    font-weight: 500;
}

.services-dropdown-improved .py-2 a::before {
    content: '▶';
    position: absolute;
    left: 0.75rem;
    color: #F97316;
    opacity: 0;
    transition: all 0.3s ease;
    font-size: 0.7rem;
}

.services-dropdown-improved .py-2 a:hover {
    background: rgba(249, 115, 22, 0.15);
    color: #F97316;
    padding-left: 2rem;
}

.services-dropdown-improved .py-2 a:hover::before {
    opacity: 1;
    left: 1rem;
}

/* Mobile Menu Improvements */
.mobile-menu-improved {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 420px;
    height: 100vh;
    background: rgba(11, 11, 12, 0.98);
    backdrop-filter: blur(25px);
    z-index: 1000;
    transition: right 0.3s ease;
    overflow-y: auto;
    border-left: 1px solid rgba(249, 115, 22, 0.3);
}

.mobile-menu-improved:not(.hidden) {
    right: 0;
}

.mobile-menu-header-improved {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(249, 115, 22, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(249, 115, 22, 0.05);
}

.mobile-menu-logo-improved {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
}

.mobile-menu-close-improved {
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.3);
    color: #F97316;
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 50px;
}

.mobile-menu-close-improved:hover {
    background: rgba(249, 115, 22, 0.2);
    color: #ffffff;
    transform: scale(1.1);
}

/* Mobile Navigation Links */
.mobile-nav-links-improved {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-links-improved li {
    margin-bottom: 0.25rem;
}

.mobile-nav-links-improved a {
    display: block;
    padding: 1.25rem 1.5rem;
    color: #e5e7eb;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    margin: 0.25rem 1rem;
}

.mobile-nav-links-improved a::before {
    content: '▶';
    position: absolute;
    left: 1rem;
    color: #F97316;
    opacity: 0;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.mobile-nav-links-improved a:hover {
    background: rgba(249, 115, 22, 0.1);
    color: #F97316;
    padding-left: 2.5rem;
}

.mobile-nav-links-improved a:hover::before {
    opacity: 1;
    left: 1.5rem;
}

/* Services Toggle Improved */
.services-toggle-improved {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    color: #e5e7eb;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: left;
    margin: 0.25rem 1rem;
}

.services-toggle-improved:hover {
    background: rgba(249, 115, 22, 0.1);
    color: #F97316;
}

.services-toggle-arrow-improved {
    transition: transform 0.3s ease;
    color: #F97316;
    font-size: 0.8rem;
}

.services-toggle-improved.active .services-toggle-arrow-improved {
    transform: rotate(180deg);
}

/* Mobile Services Submenu Improved */
.mobile-services-submenu-improved {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(249, 115, 22, 0.05);
    border-radius: 8px;
    margin: 0.25rem 1rem;
}

.mobile-services-submenu-improved.active {
    max-height: 350px;
}

.mobile-services-submenu-improved a {
    padding: 1rem 1.5rem 1rem 3rem;
    font-size: 1rem;
    color: #9ca3af;
    margin: 0;
}

.mobile-services-submenu-improved a:hover {
    color: #F97316;
    background: rgba(249, 115, 22, 0.1);
}

/* Mobile CTA Section */
.mobile-cta-section {
    margin-top: 2rem;
    padding: 2rem 1.5rem;
    border-top: 1px solid rgba(249, 115, 22, 0.3);
    background: rgba(249, 115, 22, 0.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .desktop-nav {
        display: none !important;
    }
    
    .desktop-cta {
        display: none !important;
    }
}

@media (min-width: 769px) {
    .mobile-menu-button {
        display: none !important;
    }
    
    .mobile-menu {
        display: none !important;
    }
    
    .mobile-menu-overlay {
        display: none !important;
    }
}
/* Partners Section Improvement */

.partners-section-improved {
    background: linear-gradient(135deg, #FFF7ED 0%, #f8fafc 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.partners-section-improved::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(249, 115, 22, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(251, 191, 36, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.partners-content-improved {
    position: relative;
    z-index: 10;
    max-width: 7xl;
    margin: 0 auto;
    padding: 0 1rem;
}

.partners-header-improved {
    text-align: center;
    margin-bottom: 4rem;
}

.partners-title-improved {
    font-size: 3rem;
    font-weight: 800;
    color: #0B0B0C;
    margin-bottom: 1rem;
    position: relative;
}

.partners-title-improved::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #F97316, #FBBF24);
    border-radius: 2px;
    animation: titleGlow 2s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { 
        opacity: 0.8;
        transform: translateX(-50%) scaleX(1);
    }
    50% { 
        opacity: 1;
        transform: translateX(-50%) scaleX(1.1);
    }
}

.partners-subtitle-improved {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.partners-marquee-improved {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem 0;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.partners-track-improved {
    display: flex;
    animation: marqueeScroll 30s linear infinite;
    gap: 4rem;
    align-items: center;
}

.partners-track-improved:hover {
    animation-play-state: paused;
}

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

.partner-logo-improved {
    flex-shrink: 0;
    height: 180px;
    width: auto;
    opacity: 0.7;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
}

.partner-logo-improved:hover {
    opacity: 1;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
    transform: scale(1.1);
}

/* Duplicate track for seamless loop */
.partners-track-duplicate {
    display: flex;
    animation: marqueeScroll 30s linear infinite;
    gap: 4rem;
    align-items: center;
    position: absolute;
    top: 0;
    left: 100%;
}

.partners-track-duplicate:hover {
    animation-play-state: paused;
}

/* Stats Section */
.partners-stats-improved {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item-improved {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: none;
    transition: all 0.3s ease;
}

.stat-item-improved:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.15);
    border-color: rgba(249, 115, 22, 0.3);
}

.stat-number-improved {
    font-size: 2.5rem;
    font-weight: 800;
    color: #F97316;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #F97316, #FBBF24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label-improved {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .partners-section-improved {
        padding: 4rem 0;
    }
    
    .partners-title-improved {
        font-size: 2.5rem;
    }
    
    .partners-subtitle-improved {
        font-size: 1.1rem;
    }
    
    .partner-logo-improved {
        height: 50px;
    }
    
    .partners-track-improved,
    .partners-track-duplicate {
        gap: 2rem;
    }
    
    .partners-stats-improved {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-item-improved {
        padding: 1.5rem;
    }
    
    .stat-number-improved {
        font-size: 2rem;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .partners-track-improved,
    .partners-track-duplicate,
    .titleGlow {
        animation: none;
    }
}
/* Header Dropdown Fix and Color Update */

/* Header Color Update - Similar to Hero */
.header-improved {
    background: linear-gradient(135deg, #0B0B0C 0%, #1a1a1a 100%);
    backdrop-filter: blur(20px);
    border-bottom: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Services Dropdown Active State */
.services-dropdown-improved {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0.5rem;
    width: 220px;
    background: rgba(11, 11, 12, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(249, 115, 22, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.services-dropdown-improved:not(.hidden) {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Services Button Hover State */
.services-button-hover {
    position: relative;
}

.services-button-hover::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #F97316, #FBBF24);
    border-radius: 1px;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.services-button-hover:hover::after {
    transform: scaleX(1);
}

/* Services Dropdown Links */
.services-dropdown-improved .py-2 a {
    display: block;
    padding: 0.875rem 1.25rem;
    color: #e5e7eb;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 0.25rem;
    position: relative;
    font-weight: 500;
    font-size: 0.95rem;
}

.services-dropdown-improved .py-2 a::before {
    content: '▶';
    position: absolute;
    left: 0.75rem;
    color: #F97316;
    opacity: 0;
    transition: all 0.3s ease;
    font-size: 0.7rem;
}

.services-dropdown-improved .py-2 a:hover {
    background: rgba(249, 115, 22, 0.15);
    color: #F97316;
    padding-left: 2rem;
    transform: translateX(5px);
}

.services-dropdown-improved .py-2 a:hover::before {
    opacity: 1;
    left: 1rem;
}

/* Services Button Active State */
.services-button-active {
    color: #F97316 !important;
}

.services-button-active::after {
    transform: scaleX(1) !important;
}

/* Mobile Services Dropdown */
.mobile-services-submenu-improved {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(249, 115, 22, 0.05);
    border-radius: 8px;
    margin: 0.25rem 1rem;
}

.mobile-services-submenu-improved.active {
    max-height: 350px;
}

.mobile-services-submenu-improved a {
    padding: 1rem 1.5rem 1rem 3rem;
    font-size: 1rem;
    color: #9ca3af;
    margin: 0;
    transition: all 0.3s ease;
}

.mobile-services-submenu-improved a:hover {
    color: #F97316;
    background: rgba(249, 115, 22, 0.1);
    padding-left: 3.5rem;
}

/* Services Toggle Button Active State */
.services-toggle-improved.active {
    color: #F97316;
    background: rgba(249, 115, 22, 0.1);
}

/* Header Logo Enhancement */
.header-logo {
    font-size: 1.75rem;
    font-weight: 800;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.header-logo:hover {
    color: #F97316;
    transform: scale(1.05);
}

.header-logo .logo-accent {
    color: #F97316;
    position: relative;
}

.header-logo .logo-accent::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #F97316, #FBBF24);
    border-radius: 1px;
    animation: logoGlow 2s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% { 
        opacity: 0.8;
        transform: scaleX(1);
    }
    50% { 
        opacity: 1;
        transform: scaleX(1.1);
    }
}

/* Navigation Links Enhancement */
.nav-link {
    color: #e5e7eb;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 0;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #F97316, #FBBF24);
    border-radius: 1px;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #F97316;
}

.nav-link:hover::after {
    width: 100%;
}

/* CTA Button Enhancement */
.header-cta-button {
    background: linear-gradient(135deg, #F97316 0%, #FBBF24 100%);
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
    position: relative;
    overflow: hidden;
}

.header-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.header-cta-button:hover::before {
    left: 100%;
}

.header-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
    color: #ffffff;
}

/* Mobile Menu Enhancement */
.mobile-menu-improved {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 420px;
    height: 100vh;
    background: rgba(11, 11, 12, 0.98);
    backdrop-filter: blur(25px);
    z-index: 1000;
    transition: right 0.3s ease;
    overflow-y: auto;
    border-left: 1px solid rgba(249, 115, 22, 0.3);
}

.mobile-menu-improved:not(.hidden) {
    right: 0;
}

/* Mobile Menu Header */
.mobile-menu-header-improved {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(249, 115, 22, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(249, 115, 22, 0.05);
}

/* Mobile CTA Button */
.mobile-header-cta-button {
    background: linear-gradient(135deg, #F97316 0%, #FBBF24 100%);
    color: #ffffff;
    padding: 0;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.mobile-header-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.mobile-header-cta-button:hover::before {
    left: 100%;
}

.mobile-header-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
    color: #ffffff;
}
/* Enhanced Partners Section */

.partners-section-enhanced {
    background: linear-gradient(135deg, #FFF7ED 0%, #f8fafc 50%, #FFF7ED 100%);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.partners-section-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(249, 115, 22, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(251, 191, 36, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(249, 115, 22, 0.05) 0%, transparent 70%);
    z-index: 1;
}

.partners-section-enhanced::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(249,115,22,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
    z-index: 2;
}

.partners-content-enhanced {
    position: relative;
    z-index: 10;
    max-width: 7xl;
    margin: 0 auto;
    padding: 0 1rem;
}

.partners-header-enhanced {
    text-align: center;
    margin-bottom: 5rem;
}

.partners-title-enhanced {
    font-size: 3.5rem;
    font-weight: 800;
    color: #0B0B0C;
    margin-bottom: 1.5rem;
    position: relative;
    line-height: 1.1;
}

.partners-title-enhanced::before {
    content: '🌟';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    animation: starFloat 3s ease-in-out infinite;
}

.partners-title-enhanced::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #F97316, #FBBF24, #F97316);
    background-size: 200% 100%;
    border-radius: 2px;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes starFloat {
    0%, 100% { 
        transform: translateX(-50%) translateY(0px);
        opacity: 0.8;
    }
    50% { 
        transform: translateX(-50%) translateY(-10px);
        opacity: 1;
    }
}

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

.partners-subtitle-enhanced {
    font-size: 1.3rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 500;
}

.partners-marquee-enhanced {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 3rem 0;
    border: 2px solid rgba(249, 115, 22, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 4rem;
}

.partners-track-enhanced {
    display: flex;
    animation: marqueeScrollEnhanced 40s linear infinite;
    gap: 5rem;
    align-items: center;
}

.partners-track-enhanced:hover {
    animation-play-state: paused;
}

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

.partner-logo-enhanced {
    flex-shrink: 0;
    height: 70px;
    width: auto;
    opacity: 0.8;
    transition: all 0.4s ease;
    filter: grayscale(100%) brightness(0.9);
    border-radius: 12px;
    padding: 0;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: none;
}

.partner-logo-enhanced:hover {
    opacity: 1;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.4);
}

/* Duplicate track for seamless loop */
.partners-track-duplicate-enhanced {
    display: flex;
    animation: marqueeScrollEnhanced 40s linear infinite;
    gap: 5rem;
    align-items: center;
    position: absolute;
    top: 0;
    left: 100%;
}

.partners-track-duplicate-enhanced:hover {
    animation-play-state: paused;
}

/* Enhanced Stats Section */
.partners-stats-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.stat-item-enhanced {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 2px solid rgba(249, 115, 22, 0.1);
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stat-item-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.05), transparent);
    transition: left 0.6s ease;
}

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

.stat-item-enhanced:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.15);
    border-color: rgba(249, 115, 22, 0.3);
}

.stat-number-enhanced {
    font-size: 3rem;
    font-weight: 800;
    color: #F97316;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #F97316, #FBBF24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.stat-label-enhanced {
    font-size: 1.1rem;
    color: #6b7280;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.stat-icon-enhanced {
    font-size: 2rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

/* Testimonial Quote */
.partners-quote-enhanced {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 2px solid rgba(249, 115, 22, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    position: relative;
}

.partners-quote-enhanced::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 4rem;
    color: #F97316;
    font-family: serif;
    line-height: 1;
}

.quote-text-enhanced {
    font-size: 1.3rem;
    color: #4b5563;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.quote-author-enhanced {
    font-size: 1.1rem;
    color: #F97316;
    font-weight: 700;
}

.quote-company-enhanced {
    font-size: 1rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .partners-section-enhanced {
        padding: 6rem 0;
    }
    
    .partners-title-enhanced {
        font-size: 2.8rem;
    }
    
    .partners-subtitle-enhanced {
        font-size: 1.1rem;
    }
    
    .partner-logo-enhanced {
        height: 180px;
        padding: 0.75rem;
    }
    
    .partners-track-enhanced,
    .partners-track-duplicate-enhanced {
        gap: 3rem;
    }
    
    .partners-stats-enhanced {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-item-enhanced {
        padding: 2rem;
    }
    
    .stat-number-enhanced {
        font-size: 2.5rem;
    }
    
    .partners-quote-enhanced {
        padding: 2rem;
    }
    
    .quote-text-enhanced {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .partners-stats-enhanced {
        grid-template-columns: 1fr;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .partners-track-enhanced,
    .partners-track-duplicate-enhanced,
    .starFloat,
    .gradientShift {
        animation: none;
    }
}
/* Hero Animation Improvements */

/* Enhanced Hero Background */
.hero-modern {
    background: linear-gradient(135deg, #0B0B0C 0%, #1a1a1a 50%, #0B0B0C 100%);
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(249, 115, 22, 0.4) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(251, 191, 36, 0.3) 0%, transparent 60%),
        radial-gradient(circle at 40% 40%, rgba(249, 115, 22, 0.2) 0%, transparent 70%),
        radial-gradient(circle at 60% 70%, rgba(251, 191, 36, 0.15) 0%, transparent 80%);
    animation: heroGradientPulse 8s ease-in-out infinite;
    z-index: 1;
}

.hero-modern::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="techGrid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(249,115,22,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23techGrid)"/></svg>');
    opacity: 0.4;
    z-index: 2;
    animation: gridMove 20s linear infinite;
}

@keyframes heroGradientPulse {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        opacity: 0.8;
    }
    25% { 
        transform: scale(1.1) rotate(90deg);
        opacity: 1;
    }
    50% { 
        transform: scale(1.05) rotate(180deg);
        opacity: 0.9;
    }
    75% { 
        transform: scale(1.15) rotate(270deg);
        opacity: 1;
    }
}

@keyframes gridMove {
    0% { 
        transform: translateX(0) translateY(0);
    }
    100% { 
        transform: translateX(20px) translateY(20px);
    }
}

/* Enhanced Title Animation */
.hero-title-modern {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: titleSlideInEnhanced 1.2s ease-out;
    position: relative;
}

.hero-title-modern .gradient-text-modern {
    background: linear-gradient(135deg, #F97316 0%, #FBBF24 50%, #F97316 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShiftEnhanced 4s ease-in-out infinite;
    position: relative;
}

.hero-title-modern .gradient-text-modern::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #F97316 0%, #FBBF24 50%, #F97316 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShiftEnhanced 4s ease-in-out infinite;
    filter: blur(2px);
    opacity: 0.3;
    z-index: -1;
}

@keyframes titleSlideInEnhanced {
    0% { 
        transform: translateY(80px) scale(0.8);
        opacity: 0;
    }
    50% { 
        transform: translateY(-10px) scale(1.05);
        opacity: 0.8;
    }
    100% { 
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

@keyframes gradientShiftEnhanced {
    0% { 
        background-position: 0% 50%;
        filter: hue-rotate(0deg);
    }
    25% { 
        background-position: 50% 0%;
        filter: hue-rotate(15deg);
    }
    50% { 
        background-position: 100% 50%;
        filter: hue-rotate(30deg);
    }
    75% { 
        background-position: 50% 100%;
        filter: hue-rotate(15deg);
    }
    100% { 
        background-position: 0% 50%;
        filter: hue-rotate(0deg);
    }
}

/* Enhanced Subtitle Animation */
.hero-subtitle-modern {
    font-size: 1.4rem;
    color: #e5e7eb;
    margin-bottom: 2rem;
    max-width: 650px;
    line-height: 1.7;
    animation: subtitleSlideInEnhanced 1.2s ease-out 0.4s both;
    position: relative;
}

.hero-subtitle-modern::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, #F97316, #FBBF24);
    border-radius: 2px;
    animation: lineGrow 1s ease-out 1.5s both;
}

@keyframes subtitleSlideInEnhanced {
    0% { 
        transform: translateY(50px) translateX(-30px);
        opacity: 0;
    }
    100% { 
        transform: translateY(0) translateX(0);
        opacity: 1;
    }
}

@keyframes lineGrow {
    0% { 
        height: 0;
    }
    100% { 
        height: 100%;
    }
}

/* Enhanced Button Animations */
.hero-buttons-modern {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    animation: buttonsSlideInEnhanced 1.2s ease-out 0.8s both;
}

@keyframes buttonsSlideInEnhanced {
    0% { 
        transform: translateY(50px) scale(0.9);
        opacity: 0;
    }
    100% { 
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.btn-modern-primary {
    background: linear-gradient(135deg, #F97316 0%, #FBBF24 100%);
    color: #ffffff;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.4);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.btn-modern-primary:hover::before {
    left: 100%;
}

.btn-modern-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 45px rgba(249, 115, 22, 0.5);
    background: linear-gradient(135deg, #EA580C 0%, #F59E0B 100%);
}

.btn-modern-secondary {
    background: transparent;
    color: #ffffff;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    border: 2px solid rgba(249, 115, 22, 0.6);
    cursor: pointer;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-modern-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, #F97316, #FBBF24);
    transition: width 0.4s ease;
    z-index: -1;
}

.btn-modern-secondary:hover::before {
    width: 100%;
}

.btn-modern-secondary:hover {
    color: #ffffff;
    border-color: #F97316;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.3);
}

/* Enhanced Form Animation */
.hero-form-modern {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px);
    border-radius: 25px;
    padding: 2.5rem;
    border: 1px solid rgba(249, 115, 22, 0.2);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    animation: formSlideInEnhanced 1.2s ease-out 1.2s both;
    position: relative;
    overflow: hidden;
}

.hero-form-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(249, 115, 22, 0.05), rgba(251, 191, 36, 0.05));
    z-index: -1;
}

@keyframes formSlideInEnhanced {
    0% { 
        transform: translateY(80px) scale(0.9);
        opacity: 0;
    }
    100% { 
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

/* Enhanced Floating Elements */
.floating-elements-modern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 3;
}

.floating-shape-modern {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.15), rgba(251, 191, 36, 0.15));
    animation: floatModernEnhanced 8s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.2);
}

.floating-shape-modern:nth-child(1) {
    width: 100px;
    height: 50px;
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}

.floating-shape-modern:nth-child(2) {
    width: 140px;
    height: 140px;
    top: 55%;
    right: 12%;
    animation-delay: 2s;
}

.floating-shape-modern:nth-child(3) {
    width: 80px;
    height: 50px;
    bottom: 25%;
    left: 15%;
    animation-delay: 4s;
}

.floating-shape-modern:nth-child(4) {
    width: 60px;
    height: 180px;
    top: 30%;
    right: 30%;
    animation-delay: 1s;
}

.floating-shape-modern:nth-child(5) {
    width: 120px;
    height: 180px;
    bottom: 40%;
    right: 20%;
    animation-delay: 3s;
}

@keyframes floatModernEnhanced {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.7;
    }
    25% { 
        transform: translateY(-30px) rotate(90deg) scale(1.1);
        opacity: 1;
    }
    50% { 
        transform: translateY(-20px) rotate(180deg) scale(0.9);
        opacity: 0.8;
    }
    75% { 
        transform: translateY(-40px) rotate(270deg) scale(1.05);
        opacity: 0.9;
    }
}

/* Enhanced Form Elements */
.form-title-modern {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 2rem;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
}

.form-title-modern::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #F97316, #FBBF24);
    border-radius: 2px;
    animation: titleUnderline 2s ease-in-out infinite;
}

@keyframes titleUnderline {
    0%, 100% { 
        width: 60px;
        opacity: 0.8;
    }
    50% { 
        width: 100px;
        opacity: 1;
    }
}

/* Enhanced Input Animations */
.form-input-modern,
.form-select-modern,
.form-textarea-modern {
    width: 100%;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
}

.form-input-modern::placeholder,
.form-textarea-modern::placeholder {
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.form-input-modern:focus,
.form-select-modern:focus,
.form-textarea-modern:focus {
    outline: none;
    border-color: #F97316;
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.2);
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.form-input-modern:focus::placeholder,
.form-textarea-modern:focus::placeholder {
    color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

/* Enhanced Submit Button */
.btn-submit-modern {
    width: 100%;
    background: linear-gradient(135deg, #F97316 0%, #FBBF24 100%);
    color: #ffffff;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-submit-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-submit-modern:hover::before {
    left: 100%;
}

.btn-submit-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(249, 115, 22, 0.4);
    background: linear-gradient(135deg, #EA580C 0%, #F59E0B 100%);
}

/* Responsive Improvements */
@media (max-width: 768px) {
    .hero-title-modern {
        font-size: 3rem;
    }
    
    .hero-subtitle-modern {
        font-size: 1.2rem;
    }
    
    .hero-buttons-modern {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-modern-primary,
    .btn-modern-secondary {
        width: 100%;
        text-align: center;
    }
    
    .floating-shape-modern {
        display: none;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .hero-modern::before,
    .hero-modern::after,
    .gradient-text-modern,
    .floating-shape-modern,
    .titleSlideInEnhanced,
    .subtitleSlideInEnhanced,
    .buttonsSlideInEnhanced,
    .formSlideInEnhanced,
    .heroGradientPulse,
    .gridMove,
    .gradientShiftEnhanced,
    .floatModernEnhanced,
    .titleUnderline {
        animation: none;
    }
}
/* Logo Header Update */

.header-logo-with-image {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.header-logo-image {
    height: 45px;
    width: auto;
    transition: all 0.3s ease;
    filter: brightness(1.1);
}

.header-logo-text {
    font-size: 1.75rem;
    font-weight: 800;
    color: #ffffff;
    transition: all 0.3s ease;
    position: relative;
}

.header-logo-text .logo-accent {
    color: #F97316;
    position: relative;
}

.header-logo-text .logo-accent::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #F97316, #FBBF24);
    border-radius: 1px;
    animation: logoGlow 2s ease-in-out infinite;
}

.header-logo-with-image:hover .header-logo-image {
    transform: scale(1.1) rotate(5deg);
    filter: brightness(1.2);
}

.header-logo-with-image:hover .header-logo-text {
    color: #F97316;
    transform: scale(1.05);
}

/* Mobile Logo */
.mobile-logo-with-image {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-logo-image {
    height: 35px;
    width: auto;
    transition: all 0.3s ease;
    filter: brightness(1.1);
}

.mobile-logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    transition: all 0.3s ease;
}

.mobile-logo-text .logo-accent {
    color: #F97316;
}

.mobile-logo-with-image:hover .mobile-logo-image {
    transform: scale(1.1) rotate(5deg);
    filter: brightness(1.2);
}

.mobile-logo-with-image:hover .mobile-logo-text {
    color: #F97316;
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-logo-image {
        height: 50px;
    }
    
    .header-logo-text {
        font-size: 1.5rem;
    }
    
    .mobile-logo-image {
        height: 30px;
    }
    
    .mobile-logo-text {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .header-logo-image {
        height: 35px;
    }
    
    .header-logo-text {
        font-size: 1.3rem;
    }
    
    .mobile-logo-image {
        height: 28px;
    }
    
    .mobile-logo-text {
        font-size: 1.2rem;
    }
}
/* Logo Only Header Update */

.header-logo-image-only {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
    filter: brightness(1.1);
}

.header-logo-image-only:hover {
    transform: scale(1.1) rotate(5deg);
    filter: brightness(1.2);
}

.mobile-logo-image-only {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
    filter: brightness(1.1);
}

.mobile-logo-image-only:hover {
    transform: scale(1.1) rotate(5deg);
    filter: brightness(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-logo-image-only {
        height: 45px;
    }
    
    .mobile-logo-image-only {
        height: 35px;
    }
}

@media (max-width: 480px) {
    .header-logo-image-only {
        height: 50px;
    }
    
    .mobile-logo-image-only {
        height: 30px;
    }
}
/* Services Dropdown Activation */

/* Ensure dropdown is properly positioned and visible */
.services-dropdown-improved {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 50;
    min-width: 200px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(249, 115, 22, 0.2);
    transform: translateY(8px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.services-dropdown-improved:not(.hidden) {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.services-dropdown-improved .py-2 a {
    display: block;
    padding: 12px 20px;
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 8px;
    margin: 4px 8px;
}

.services-dropdown-improved .py-2 a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #F97316, #FBBF24);
    transition: width 0.3s ease;
    border-radius: 1px;
}

.services-dropdown-improved .py-2 a:hover {
    color: #F97316;
    background: rgba(249, 115, 22, 0.1);
    transform: translateX(4px);
}

.services-dropdown-improved .py-2 a:hover::before {
    width: 4px;
}

/* Services button hover effect */
#services-button:hover {
    color: #F97316 !important;
}

#services-button:hover svg {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

/* Mobile services submenu */
.mobile-services-submenu-improved {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-services-submenu-improved:not(.hidden) {
    max-height: 300px;
}

.mobile-services-submenu-improved a {
    display: block;
    padding: 12px 20px;
    color: #6B7280;
    text-decoration: none;
    font-size: 14px;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.mobile-services-submenu-improved a:hover {
    color: #F97316;
    background: rgba(249, 115, 22, 0.1);
    border-left-color: #F97316;
    padding-left: 30px;
}
/* Enhanced Services Dropdown */

/* Services Button */
#services-button {
    position: relative;
    transition: all 0.3s ease;
}

#services-button:hover {
    color: #F97316 !important;
}

#services-button:hover svg {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

/* Dropdown Container */
.services-dropdown-improved {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    min-width: 220px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(249, 115, 22, 0.2);
    transform: translateY(10px) scale(0.95);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.services-dropdown-improved:not(.hidden) {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Dropdown Items */
.services-dropdown-improved .py-2 {
    padding: 8px;
}

.services-dropdown-improved .py-2 a {
    display: block;
    padding: 14px 20px;
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 12px;
    margin: 2px 0;
    border-left: 4px solid transparent;
}

.services-dropdown-improved .py-2 a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #F97316, #FBBF24);
    transition: width 0.3s ease;
    border-radius: 1px;
}

.services-dropdown-improved .py-2 a:hover {
    color: #F97316;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(251, 191, 36, 0.1));
    transform: translateX(8px);
    border-left-color: #F97316;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.15);
}

.services-dropdown-improved .py-2 a:hover::before {
    width: 6px;
}

/* Mobile Services Submenu */
.mobile-services-submenu-improved {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(249, 115, 22, 0.05);
    border-radius: 8px;
    margin: 8px 0;
}

.mobile-services-submenu-improved:not(.hidden) {
    max-height: 400px;
}

.mobile-services-submenu-improved a {
    display: block;
    padding: 12px 24px;
    color: #6B7280;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-services-submenu-improved a::before {
    content: '→';
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
    color: #F97316;
}

.mobile-services-submenu-improved a:hover {
    color: #F97316;
    background: rgba(249, 115, 22, 0.1);
    border-left-color: #F97316;
    padding-left: 32px;
    transform: translateX(4px);
}

.mobile-services-submenu-improved a:hover::before {
    opacity: 1;
    transform: translateY(-50%) translateX(4px);
}

/* Services Toggle Button */
.services-toggle-improved {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 16px;
    background: none;
    border: none;
    color: #374151;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.services-toggle-improved:hover {
    color: #F97316;
    background: rgba(249, 115, 22, 0.1);
}

.services-toggle-arrow-improved {
    transition: transform 0.3s ease;
    color: #F97316;
    font-size: 12px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-dropdown-improved {
        position: static;
        transform: none;
        box-shadow: none;
        background: rgba(249, 115, 22, 0.05);
        border: none;
        border-radius: 8px;
        margin: 8px 0;
    }
    
    .services-dropdown-improved:not(.hidden) {
        transform: none;
    }
}
/* Hover Dropdown Fix */

/* Services Container Hover */
#services-container:hover #services-dropdown {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) scale(1) !important;
}

#services-container:hover #services-button {
    color: #F97316 !important;
    transform: translateY(-2px);
}

#services-container:hover #services-button svg {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

/* Ensure dropdown is always visible on hover */
#services-container:hover .services-dropdown-improved {
    display: block !important;
}

/* Smooth transitions */
#services-container {
    transition: all 0.3s ease;
}

#services-container #services-button {
    transition: all 0.3s ease;
}

#services-container #services-button svg {
    transition: transform 0.3s ease;
}

/* Dropdown positioning */
.services-dropdown-improved {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    min-width: 220px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(249, 115, 22, 0.2);
    transform: translateY(10px) scale(0.95);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

/* Show dropdown on container hover */
#services-container:hover .services-dropdown-improved {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Dropdown items styling */
.services-dropdown-improved .py-2 a {
    display: block;
    padding: 14px 20px;
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 12px;
    margin: 2px 0;
    border-left: 4px solid transparent;
}

.services-dropdown-improved .py-2 a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #F97316, #FBBF24);
    transition: width 0.3s ease;
    border-radius: 1px;
}

.services-dropdown-improved .py-2 a:hover {
    color: #F97316;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(251, 191, 36, 0.1));
    transform: translateX(8px);
    border-left-color: #F97316;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.15);
}

.services-dropdown-improved .py-2 a:hover::before {
    width: 6px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    #services-container:hover #services-dropdown {
        display: none !important;
    }
    
    .services-dropdown-improved {
        position: static;
        transform: none;
        box-shadow: none;
        background: rgba(249, 115, 22, 0.05);
        border: none;
        border-radius: 8px;
        margin: 8px 0;
    }
}
/* Mobile Menu Close Button */
.mobile-menu-close-button {
    background: none;
    border: none;
    color: #F97316;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-close-button:hover {
    background: rgba(249, 115, 22, 0.1);
    color: #EA580C;
    transform: scale(1.1);
}

.mobile-menu-close-button:active {
    transform: scale(0.95);
}

/* Mobile Menu Button */
.mobile-menu-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-button:hover {
    background: rgba(249, 115, 22, 0.1);
    transform: scale(1.05);
}

.mobile-menu-button:active {
    transform: scale(0.95);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    backdrop-filter: blur(4px);
}

/* Mobile Menu */
.mobile-menu-improved {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    height: 100%;
    background: linear-gradient(135deg, #0B0B0C 0%, #1a1a1a 100%);
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
}

.mobile-menu-improved:not(.hidden) {
    transform: translateX(0);
}

/* Mobile Menu Header */
.mobile-menu-header-improved {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid rgba(249, 115, 22, 0.2);
}

.mobile-menu-logo-improved {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-logo-image-only {
    height: 40px;
    width: auto;
}

/* Mobile Menu Content */
.mobile-menu-content {
    padding: 20px;
    height: calc(100% - 80px);
    overflow-y: auto;
}

/* Mobile Nav Links */
.mobile-nav-links-improved {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-links-improved li {
    margin-bottom: 8px;
}

.mobile-nav-links-improved a {
    display: block;
    padding: 16px 20px;
    color: #E5E7EB;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.mobile-nav-links-improved a:hover {
    color: #F97316;
    background: rgba(249, 115, 22, 0.1);
    border-left-color: #F97316;
    transform: translateX(8px);
}

/* Services Toggle Button */
.services-toggle-improved {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 20px;
    background: none;
    border: none;
    color: #E5E7EB;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 12px;
    border-left: 4px solid transparent;
}

.services-toggle-improved:hover {
    color: #F97316;
    background: rgba(249, 115, 22, 0.1);
    border-left-color: #F97316;
    transform: translateX(8px);
}

.services-toggle-arrow-improved {
    transition: transform 0.3s ease;
    color: #F97316;
    font-size: 12px;
}

/* Mobile Services Submenu */
.mobile-services-submenu-improved {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(249, 115, 22, 0.05);
    border-radius: 8px;
    margin: 8px 0;
}

.mobile-services-submenu-improved:not(.hidden) {
    max-height: 400px;
}

.mobile-services-submenu-improved a {
    display: block;
    padding: 12px 24px;
    color: #9CA3AF;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-services-submenu-improved a::before {
    content: '→';
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
    color: #F97316;
}

.mobile-services-submenu-improved a:hover {
    color: #F97316;
    background: rgba(249, 115, 22, 0.1);
    border-left-color: #F97316;
    padding-left: 32px;
    transform: translateX(4px);
}

.mobile-services-submenu-improved a:hover::before {
    opacity: 1;
    transform: translateY(-50%) translateX(4px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-improved {
        width: 100%;
    }
}
/* Enhanced Partners Section Styles */

.partners-section-improved {
    position: relative;
    background: linear-gradient(135deg, #0B0B0C 0%, #1a1a1a 50%, #0B0B0C 100%);
    overflow: hidden;
}

/* Stats Cards */
.stats-card-improved {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stats-card-improved::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.1), transparent);
    transition: left 0.6s ease;
}

.stats-card-improved:hover::before {
    left: 100%;
}

.stats-card-improved:hover {
    transform: translateY(-8px);
    border-color: rgba(249, 115, 22, 0.4);
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.15);
}

/* Marquee Container */
.marquee-container-improved {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 40px 0;
    border: none;
}

.marquee-container-improved::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #F97316, transparent);
}

.marquee-container-improved::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #FBBF24, transparent);
}

/* Marquee Track */
.marquee-track-improved {
    display: flex;
    align-items: center;
    animation: marquee-scroll 30s linear infinite;
    gap: 60px;
    padding: 0 30px;
}

.marquee-track-improved:hover {
    animation-play-state: paused;
}

/* Partner Logo Wrapper */
.partner-logo-wrapper {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

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

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

.partner-logo-wrapper:hover {
    transform: translateY(-4px) scale(1.05);
    border-color: rgba(249, 115, 22, 0.3);
    box-shadow: 0 15px 30px rgba(249, 115, 22, 0.2);
}

/* Partner Logo */
.partner-logo {
    max-width: 320px;
    max-height: 50px;
    width: auto;
    height: auto;
    /* filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6)); */
    transition: all 0.3s ease;
    opacity: 0.8;
}

.partner-logo-wrapper:hover .partner-logo {
    opacity: 1;
    filter: drop-shadow(0 0 10px rgba(249, 115, 22, 0.5));
}
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .partner-logo-wrapper {
        width: 120px;
        height: 50px;
    }
    
    .partner-logo {
        max-width: 80px;
        max-height: 30px;
    }
    
    .marquee-track-improved {
        gap: 30px;
        padding: 0 15px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .marquee-track-improved {
        animation: none;
    }
    
    .stats-card-improved:hover {
        transform: none;
    }
    
    .partner-logo-wrapper:hover {
        transform: none;
    }
}
/* Premium Services Section with Hero Theme */

.premium-services-section {
    position: relative;
    background: linear-gradient(135deg, #0B0B0C 0%, #1a1a1a 50%, #0B0B0C 100%);
    overflow: hidden;
}

/* Add Hero-style Background Effects */
.premium-services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(249, 115, 22, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(251, 191, 36, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(249, 115, 22, 0.1) 0%, transparent 70%);
    animation: modernGradient 8s ease-in-out infinite;
    z-index: 1;
}

.premium-services-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 2;
}

@keyframes modernGradient {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        opacity: 0.8;
    }
    50% { 
        transform: scale(1.1) rotate(180deg);
        opacity: 1;
    }
}

/* Service Card Premium - Updated for Dark Theme */
.service-card-premium {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 24px;
    padding: 32px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.1), transparent);
    transition: left 0.8s ease;
}

.service-card-premium:hover::before {
    left: 100%;
}

.service-card-premium:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(249, 115, 22, 0.4);
    box-shadow: 0 25px 50px rgba(249, 115, 22, 0.2);
    background: rgba(255, 255, 255, 0.12);
}

/* Service Icon Premium - Updated for Dark Theme */
.service-icon-premium {
    width: 80px;
    height: 50px;
    background: linear-gradient(135deg, #F97316, #FBBF24);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-icon-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 20px;
}

.service-card-premium:hover .service-icon-premium {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 30px rgba(249, 115, 22, 0.4);
}

.service-icon-premium svg {
    color: white;
    z-index: 1;
    position: relative;
}

/* Service Content Premium - Updated for Dark Theme */
.service-content-premium {
    flex: 1;
    margin-bottom: 24px;
}

.service-title-premium {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    transition: color 0.3s ease;
}

.service-card-premium:hover .service-title-premium {
    color: #F97316;
}

.service-description-premium {
    color: #D1D5DB;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Service Features Premium - Updated for Dark Theme */
.service-features-premium {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.service-features-premium li {
    color: #9CA3AF;
    font-size: 14px;
    margin-bottom: 8px;
    position: relative;
    padding-left: 24px;
    transition: color 0.3s ease;
}

.service-features-premium li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #F97316;
    font-weight: bold;
    font-size: 16px;
}

.service-card-premium:hover .service-features-premium li {
    color: #D1D5DB;
}

/* Service Price Premium - Updated for Dark Theme */
.service-price-premium {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
}

.price-from {
    font-size: 12px;
    color: #9CA3AF;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.price-amount {
    font-size: 32px;
    font-weight: 700;
    color: #F97316;
    line-height: 1;
}

/* Service Link Premium - Updated for Dark Theme */
.service-link-premium {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #F97316, #FBBF24);
    color: white;
    padding: 16px 24px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    justify-content: center;
    margin-top: auto;
}

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

.service-link-premium:hover::before {
    left: 100%;
}

.service-link-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(249, 115, 22, 0.4);
}

.service-link-premium svg {
    transition: transform 0.3s ease;
}

.service-link-premium:hover svg {
    transform: translateX(4px);
}

/* CTA Section - Updated for Dark Theme */
.premium-services-section .bg-gradient-to-r {
    position: relative;
    overflow: hidden;
}

.premium-services-section .bg-gradient-to-r::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent, rgba(255, 255, 255, 0.1));
    animation: cta-shimmer 3s ease-in-out infinite;
}

@keyframes cta-shimmer {
    0%, 100% {
        transform: translateX(-100%);
    }
    50% {
        transform: translateX(100%);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .premium-services-section {
        padding: 80px 0;
    }
    
    .service-card-premium {
        padding: 24px;
    }
    
    .service-icon-premium {
        width: 60px;
        height: 180px;
        margin-bottom: 20px;
    }
    
    .service-title-premium {
        font-size: 20px;
    }
    
    .service-description-premium {
        font-size: 14px;
    }
    
    .price-amount {
        font-size: 28px;
    }
    
    .service-link-premium {
        padding: 14px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .service-card-premium {
        padding: 20px;
    }
    
    .service-icon-premium {
        width: 50px;
        height: 50px;
    }
    
    .service-title-premium {
        font-size: 18px;
    }
    
    .price-amount {
        font-size: 24px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .service-card-premium:hover {
        transform: none;
    }
    
    .service-icon-premium:hover {
        transform: none;
    }
    
    .service-link-premium:hover {
        transform: none;
    }
    
    .premium-services-section .bg-gradient-to-r::before {
        animation: none;
    }
    
    .premium-services-section::before {
        animation: none;
    }
}

/* Partner Logo Hero Theme */
.partner-logo-hero-theme {
    max-width: 260px;
    max-height: 180px;
    width: auto;
    height: auto;
    transition: all 0.4s ease;
    opacity: 0.9;
    filter: brightness(1.2) contrast(1.1);
}

.partner-logo-wrapper-hero-theme:hover .partner-logo-hero-theme {
    opacity: 1;
    filter: brightness(1.3) contrast(1.2) drop-shadow(0 0 15px rgba(249, 115, 22, 0.6));
    transform: scale(1.05);
}
/* Enhanced Design Process Section */

.design-process-section {
    position: relative;
    background: linear-gradient(135deg, #0B0B0C 0%, #1a1a1a 50%, #0B0B0C 100%);
    overflow: hidden;
}

/* Process Step */
.process-step {
    position: relative;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step:hover {
    transform: translateY(-8px);
}

/* Process Step Icon */
.process-step-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    width: 120px;
    height: 180px;
}

.process-step-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 32px;
    font-weight: 700;
    color: #F97316;
    z-index: 3;
    transition: all 0.4s ease;
}

.process-step-icon-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #F97316, #FBBF24);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
}

.process-step-icon-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 50%;
}

.process-step-icon-bg svg {
    color: white;
    z-index: 2;
    position: relative;
    transition: all 0.4s ease;
}

.process-step:hover .process-step-icon-bg {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.4);
}

.process-step:hover .process-step-number {
    transform: translate(-50%, -50%) scale(1.2);
    color: white;
}

.process-step:hover .process-step-icon-bg svg {
    transform: scale(1.1);
}

/* Process Step Content */
.process-step-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 20px;
    padding: 32px 24px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.process-step-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.1), transparent);
    transition: left 0.8s ease;
}

.process-step:hover .process-step-content::before {
    left: 100%;
}

.process-step:hover .process-step-content {
    border-color: rgba(249, 115, 22, 0.4);
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.15);
    background: rgba(255, 255, 255, 0.08);
}

/* Process Step Title */
.process-step-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    transition: color 0.3s ease;
}

.process-step:hover .process-step-title {
    color: #F97316;
}

/* Process Step Description */
.process-step-description {
    color: #D1D5DB;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Process Step Features */
.process-step-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.process-step-features li {
    color: #9CA3AF;
    font-size: 14px;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
    transition: color 0.3s ease;
}

.process-step-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 0;
    color: #F97316;
    font-weight: bold;
    font-size: 16px;
}

.process-step:hover .process-step-features li {
    color: #D1D5DB;
}

/* Process Stats */
.process-stat {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 16px;
    padding: 32px 24px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.process-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.1), transparent);
    transition: left 0.8s ease;
}

.process-stat:hover::before {
    left: 100%;
}

.process-stat:hover {
    transform: translateY(-4px);
    border-color: rgba(249, 115, 22, 0.4);
    box-shadow: 0 15px 30px rgba(249, 115, 22, 0.2);
}

.process-stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #F97316;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.process-stat:hover .process-stat-number {
    transform: scale(1.1);
    color: #FBBF24;
}

.process-stat-label {
    color: #D1D5DB;
    font-size: 16px;
    font-weight: 500;
}

/* Timeline Line */
.design-process-section .absolute {
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .process-step-icon {
        width: 100px;
        height: 50px;
    }
    
    .process-step-number {
        font-size: 28px;
    }
    
    .process-step-content {
        padding: 24px 20px;
    }
    
    .process-step-title {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .design-process-section {
        padding: 80px 0;
    }
    
    .process-step-icon {
        width: 80px;
        height: 50px;
    }
    
    .process-step-number {
        font-size: 24px;
    }
    
    .process-step-content {
        padding: 20px 16px;
    }
    
    .process-step-title {
        font-size: 18px;
    }
    
    .process-step-description {
        font-size: 14px;
    }
    
    .process-stat {
        padding: 24px 20px;
    }
    
    .process-stat-number {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .process-step-icon {
        width: 70px;
        height: 70px;
    }
    
    .process-step-number {
        font-size: 20px;
    }
    
    .process-step-content {
        padding: 16px 12px;
    }
    
    .process-step-title {
        font-size: 16px;
    }
    
    .process-step-description {
        font-size: 13px;
    }
    
    .process-stat-number {
        font-size: 32px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .process-step:hover {
        transform: none;
    }
    
    .process-step-icon-bg:hover {
        transform: none;
    }
    
    .process-step:hover .process-step-number {
        transform: translate(-50%, -50%);
    }
    
    .process-step:hover .process-step-icon-bg svg {
        transform: none;
    }
    
    .process-stat:hover {
        transform: none;
    }
    
    .process-stat:hover .process-stat-number {
        transform: none;
    }
}
/* Partners Slider Section */

.partners-slider-section {
    position: relative;
    background: linear-gradient(135deg, #0B0B0C 0%, #1a1a1a 50%, #0B0B0C 100%);
    overflow: hidden;
}

/* Stats Cards Slider */
.stats-card-slider {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 20px;
    padding: 32px 24px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stats-card-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.1), transparent);
    transition: left 0.8s ease;
}

.stats-card-slider:hover::before {
    left: 100%;
}

.stats-card-slider:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: rgba(249, 115, 22, 0.4);
    box-shadow: 0 25px 50px rgba(249, 115, 22, 0.2);
}

/* Stats Icon Slider */
.stats-icon-slider {
    width: 60px;
    height: 180px;
    background: linear-gradient(135deg, #F97316, #FBBF24);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stats-icon-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 16px;
}

.stats-card-slider:hover .stats-icon-slider {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 30px rgba(249, 115, 22, 0.4);
}

.stats-icon-slider svg {
    color: white;
    z-index: 1;
    position: relative;
}

/* Partners Slider Container */
.partners-slider-container {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    padding: 50px 0;
    border: 1px solid rgba(249, 115, 22, 0.2);
    backdrop-filter: blur(20px);
}

.partners-slider-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #F97316, transparent);
}

.partners-slider-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FBBF24, transparent);
}

/* Partners Slider Wrapper */
.partners-slider-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

/* Partners Slider Track */
.partners-slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 40px;
    padding: 0 40px;
}

/* Partners Slide */
.partners-slide {
    flex: 0 0 auto;
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Partner Logo Slider */
.partner-logo-slider {
    width: 100%;
    height: 180px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.partner-logo-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.2), transparent);
    transition: left 0.8s ease;
}

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

.partner-logo-slider:hover {
    transform: translateY(-6px) scale(1.08);
    border-color: rgba(249, 115, 22, 0.4);
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.25);
    background: rgba(255, 255, 255, 0.12);
}

/* Partner Logo Image */
.partner-logo-image {
    max-width: 300px;
    max-height: 50px;
    width: auto;
    height: auto;
    transition: all 0.4s ease;
    opacity: 0.9;
    filter: brightness(1.1) contrast(1.1);
}

.partner-logo-slider:hover .partner-logo-image {
    opacity: 1;
    filter: brightness(1.2) contrast(1.2) drop-shadow(0 0 15px rgba(249, 115, 22, 0.6));
    transform: scale(1.05);
}

/* Slider Navigation */
.slider-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.slider-btn {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #F97316, #FBBF24);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.4s ease;
    pointer-events: all;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
    position: relative;
    overflow: hidden;
}

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

.slider-btn:hover::before {
    left: 100%;
}

.slider-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.4);
}

.slider-btn:active {
    transform: scale(0.95);
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot:hover {
    background: rgba(249, 115, 22, 0.5);
    transform: scale(1.2);
}

.dot.active {
    background: #F97316;
    border-color: #FBBF24;
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.5);
}

    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .partners-slider-section {
        padding: 80px 0;
    }
    
    .stats-card-slider {
        padding: 24px 20px;
    }
    
    .stats-icon-slider {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }
    
    .partners-slide {
        width: 160px;
    }
    
    .partner-logo-slider {
        height: 50px;
    }
    
    .partner-logo-image {
        max-width: 320px;
        max-height: 180px;
    }
    
    .partners-slider-track {
        gap: 30px;
        padding: 0 30px;
    }
    
    .slider-navigation {
        padding: 0 10px;
    }
    
    .slider-btn {
        width: 40px;
        height: 50px;
    }
    
    .partners-slide {
        width: 140px;
    }
    
    .partner-logo-slider {
        height: 50px;
    }
    
    .partner-logo-image {
        max-width: 260px;
        max-height: 50px;
    }
    
    .partners-slider-track {
        gap: 20px;
        padding: 0 20px;
    }
    
    .slider-btn {
        width: 35px;
        height: 35px;
    }
    
    .slider-btn svg {
        width: 20px;
        height: 20px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .partners-slider-track {
        transition: none;
    }
    
    .stats-card-slider:hover {
        transform: none;
    }
    
    .partner-logo-slider:hover {
        transform: none;
    }
    
    .slider-btn:hover {
        transform: none;
    }
    
        animation: none;
    }
    overflow: hidden;
}

/* Timeline Line Enhanced */
    position: relative;
    overflow: hidden;
}

    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #F97316, #FBBF24, #F97316);
    border-radius: 50px;
}

    0% { width: 0%; }
    50% { width: 100%; }
    100% { width: 0%; }
}

/* Process Step Enhanced */
.process-step-enhanced {
    position: relative;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.process-step-enhanced:hover {
    transform: translateY(-12px);
}

/* Process Step Icon Enhanced */
.process-step-icon-enhanced {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    width: 140px;
    height: 140px;
}

.process-step-number-enhanced {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 36px;
    font-weight: 700;
    color: #F97316;
    z-index: 3;
    transition: all 0.4s ease;
}

.process-step-icon-bg-enhanced {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #F97316, #FBBF24);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.4);
}

.process-step-icon-bg-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 50%;
}

.process-step-icon-bg-enhanced svg {
    color: white;
    z-index: 2;
    position: relative;
    transition: all 0.4s ease;
}

/* Process Step Pulse */
.process-step-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 2px solid rgba(249, 115, 22, 0.3);
    border-radius: 50%;
    animation: pulse-ring 2s ease-in-out infinite;
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.4);
        opacity: 0;
    }
}

.process-step-enhanced:hover .process-step-icon-bg-enhanced {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 25px 50px rgba(249, 115, 22, 0.5);
}

.process-step-enhanced:hover .process-step-number-enhanced {
    transform: translate(-50%, -50%) scale(1.3);
    color: white;
}

.process-step-enhanced:hover .process-step-icon-bg-enhanced svg {
    transform: scale(1.2);
}

.process-step-enhanced:hover .process-step-pulse {
    animation-duration: 1s;
}

/* Process Step Content Enhanced */
.process-step-content-enhanced {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 24px;
    padding: 36px 28px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    min-height: 320px;
}

.process-step-content-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.1), transparent);
    transition: left 0.8s ease;
}

.process-step-enhanced:hover .process-step-content-enhanced::before {
    left: 100%;
}

.process-step-enhanced:hover .process-step-content-enhanced {
    border-color: rgba(249, 115, 22, 0.5);
    box-shadow: 0 25px 50px rgba(249, 115, 22, 0.2);
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

/* Process Step Title Enhanced */
.process-step-title-enhanced {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 18px;
    transition: color 0.3s ease;
}

.process-step-enhanced:hover .process-step-title-enhanced {
    color: #F97316;
}

/* Process Step Description Enhanced */
.process-step-description-enhanced {
    color: #D1D5DB;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 24px;
}

/* Process Step Features Enhanced */
.process-step-features-enhanced {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    text-align: left;
}

.process-step-features-enhanced li {
    color: #9CA3AF;
    font-size: 14px;
    margin-bottom: 10px;
    position: relative;
    padding-left: 24px;
    transition: color 0.3s ease;
}

.process-step-features-enhanced li::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 0;
    color: #F97316;
    font-weight: bold;
    font-size: 16px;
}

.process-step-enhanced:hover .process-step-features-enhanced li {
    color: #D1D5DB;
}

/* Process Step Duration */
.process-step-duration {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 12px;
    padding: 8px 16px;
    margin-top: auto;
}

.duration-icon {
    font-size: 16px;
    margin-right: 8px;
}

.duration-text {
    color: #F97316;
    font-weight: 600;
    font-size: 14px;
}

/* Process Stats Enhanced */
.process-stat-enhanced {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 20px;
    padding: 36px 28px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-height: 200px;
}

.process-stat-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.1), transparent);
    transition: left 0.8s ease;
}

.process-stat-enhanced:hover::before {
    left: 100%;
}

.process-stat-enhanced:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(249, 115, 22, 0.5);
    box-shadow: 0 25px 50px rgba(249, 115, 22, 0.25);
}

/* Process Stat Icon Enhanced */
.process-stat-icon-enhanced {
    width: 60px;
    height: 180px;
    background: linear-gradient(135deg, #F97316, #FBBF24);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.process-stat-icon-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 16px;
}

.process-stat-enhanced:hover .process-stat-icon-enhanced {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.4);
}

.process-stat-icon-enhanced svg {
    color: white;
    z-index: 1;
    position: relative;
}

/* Process Stat Number Enhanced */
.process-stat-number-enhanced {
    font-size: 48px;
    font-weight: 700;
    color: #F97316;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.process-stat-enhanced:hover .process-stat-number-enhanced {
    transform: scale(1.1);
    color: #FBBF24;
}

/* Process Stat Label Enhanced */
.process-stat-label-enhanced {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

/* Process Stat Description Enhanced */
.process-stat-description-enhanced {
    color: #9CA3AF;
    font-size: 14px;
    font-weight: 500;
}

/* Process CTA Enhanced */
.process-cta-enhanced {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 28px;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
}

.process-cta-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #F97316, #FBBF24, #F97316);
}

.process-cta-enhanced::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.08) 0%, transparent 70%);
    animation: cta-glow-enhanced 4s ease-in-out infinite;
}

@keyframes cta-glow-enhanced {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

/* Process CTA Buttons */
.process-cta-btn-primary {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #F97316, #FBBF24);
    color: white;
    padding: 18px 32px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
}

.process-cta-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.process-cta-btn-primary:hover::before {
    left: 100%;
}

.process-cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.4);
}

.process-cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: #F97316;
    border: 2px solid #F97316;
    padding: 18px 32px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.process-cta-btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.1), transparent);
    transition: left 0.6s ease;
}

.process-cta-btn-secondary:hover::before {
    left: 100%;
}

.process-cta-btn-secondary:hover {
    background: #F97316;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(249, 115, 22, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .process-step-icon-enhanced {
        width: 120px;
        height: 180px;
    }
    
    .process-step-number-enhanced {
        font-size: 32px;
    }
    
    .process-step-content-enhanced {
        padding: 32px 24px;
        min-height: 300px;
    }
    
    .process-step-title-enhanced {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .design-process-enhanced {
        padding: 80px 0;
    }
    
    .process-step-icon-enhanced {
        width: 100px;
        height: 50px;
    }
    
    .process-step-number-enhanced {
        font-size: 28px;
    }
    
    .process-step-content-enhanced {
        padding: 28px 20px;
        min-height: 280px;
    }
    
    .process-step-title-enhanced {
        font-size: 22px;
    }
    
    .process-step-description-enhanced {
        font-size: 15px;
    }
    
    .process-stat-enhanced {
        padding: 28px 20px;
        min-height: 180px;
    }
    
    .process-stat-number-enhanced {
        font-size: 40px;
    }
    
    .process-cta-enhanced {
        padding: 40px 30px;
    }
}

@media (max-width: 480px) {
    .process-step-icon-enhanced {
        width: 80px;
        height: 50px;
    }
    
    .process-step-number-enhanced {
        font-size: 24px;
    }
    
    .process-step-content-enhanced {
        padding: 24px 16px;
        min-height: 260px;
    }
    
    .process-step-title-enhanced {
        font-size: 20px;
    }
    
    .process-step-description-enhanced {
        font-size: 14px;
    }
    
    .process-stat-number-enhanced {
        font-size: 36px;
    }
    
    .process-cta-btn-primary,
    .process-cta-btn-secondary {
        padding: 16px 24px;
        font-size: 16px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
        animation: none;
    }
    
    .process-step-pulse {
        animation: none;
    }
    
    .process-step-enhanced:hover {
        transform: none;
    }
    
    .process-step-icon-bg-enhanced:hover {
        transform: none;
    }
    
    .process-step-enhanced:hover .process-step-number-enhanced {
        transform: translate(-50%, -50%);
    }
    
    .process-step-enhanced:hover .process-step-icon-bg-enhanced svg {
        transform: none;
    }
    
    .process-stat-enhanced:hover {
        transform: none;
    }
    
    .process-stat-enhanced:hover .process-stat-number-enhanced {
        transform: none;
    }
    
    .process-cta-enhanced::after {
        animation: none;
    }
}
/* Enhanced Portfolio Section */

.portfolio-enhanced {
    position: relative;
    background: linear-gradient(135deg, #0B0B0C 0%, #1a1a1a 50%, #0B0B0C 100%);
    overflow: hidden;
}

/* Portfolio Filters Enhanced */
.portfolio-filters-enhanced {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.portfolio-filter-enhanced {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 50px;
    padding: 12px 24px;
    color: #D1D5DB;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.portfolio-filter-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.1), transparent);
    transition: left 0.6s ease;
}

.portfolio-filter-enhanced:hover::before {
    left: 100%;
}

.portfolio-filter-enhanced:hover {
    transform: translateY(-2px);
    border-color: rgba(249, 115, 22, 0.4);
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.4);
}

.portfolio-filter-enhanced.active {
    background: linear-gradient(135deg, #F97316, #FBBF24);
    color: white;
    border-color: transparent;
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
}

.filter-icon {
    font-size: 16px;
}

.filter-text {
    font-weight: 600;
}

.filter-count {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 2px 8px;
    font-size: 12px;
    font-weight: 600;
}

.portfolio-filter-enhanced.active .filter-count {
    background: rgba(255, 255, 255, 0.3);
}

/* Portfolio Grid Enhanced */
.portfolio-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

/* Portfolio Item Enhanced */
.portfolio-item-enhanced {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
}

.portfolio-item-enhanced.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-item-enhanced:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(249, 115, 22, 0.4);
    box-shadow: 0 25px 50px rgba(249, 115, 22, 0.2);
}

/* Portfolio Image Enhanced */
.portfolio-image-enhanced {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.portfolio-overlay-enhanced {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 2;
}

.portfolio-item-enhanced:hover .portfolio-overlay-enhanced {
    opacity: 1;
}

.portfolio-actions-enhanced {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.portfolio-action-btn {
    width: 44px;
    height: 44px;
    background: rgba(249, 115, 22, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.portfolio-action-btn:hover {
    background: #F97316;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.4);
}

.portfolio-category-enhanced {
    background: rgba(249, 115, 22, 0.9);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    align-self: flex-start;
    backdrop-filter: blur(10px);
}

/* Portfolio Image Background Enhanced */
.portfolio-image-bg-enhanced {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.portfolio-item-enhanced:hover .portfolio-image-bg-enhanced {
    transform: scale(1.05);
}

/* Portfolio Preview Enhanced */
.portfolio-preview-enhanced {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Browser Preview */
.preview-browser {
    width: 100%;
    max-width: 320px;
    background: transparent;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.browser-header {
    background: #f1f1f1;
    padding: 12px 16px;
    display: flex;
    align-items: center;
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
}

.browser-dots span:nth-child(1) { background: #ff5f57; }
.browser-dots span:nth-child(2) { background: #ffbd2e; }
.browser-dots span:nth-child(3) { background: #28ca42; }

.browser-content {
    padding: 20px;
    background: transparent;
}

.preview-lines {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.line {
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
}

.line.short {
    width: 60%;
}

/* Logo Preview */
.logo-preview {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.logo-shape {
    width: 60px;
    height: 180px;
    background: linear-gradient(135deg, #F97316, #FBBF24);
    border-radius: 12px;
    position: relative;
}

.logo-shape.restaurant {
    border-radius: 50%;
}

.logo-text {
    font-size: 18px;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Phone Preview */
.phone-preview {
    width: 120px;
    height: 200px;
    background: #1f2937;
    border-radius: 20px;
    padding: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: transparent;
    border-radius: 12px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.app-header {
    height: 20px;
    background: #F97316;
    border-radius: 4px;
}

.app-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.balance-card {
    height: 30px;
    background: #e5e7eb;
    border-radius: 4px;
}

.transaction-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.transaction-item {
    height: 12px;
    background: #f3f4f6;
    border-radius: 2px;
}

/* Social Preview */
    width: 100%;
    max-width: 350px;
}

    background: transparent;
/* Techi Champs - Custom Styles */

/* Import Inter font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* CSS Variables */
:root {
  --tc-orange: #F97316;
  --tc-yellow: #FBBF24;
  --tc-black: #0B0B0C;
  --tc-ivory: #FFF7ED;
  --gradient-primary: linear-gradient(135deg, var(--tc-orange) 0%, var(--tc-yellow) 100%);
  --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  --shadow-glow: 0 0 20px rgba(249, 115, 22, 0.3);
  --shadow-glow-yellow: 0 0 20px rgba(251, 191, 36, 0.3);
}

/* Base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--tc-black);
  background-color: var(--tc-ivory);
  overflow-x: hidden;
}

/* 3D Effects and Animations */
.parallax-bg {
  position: relative;
  overflow: hidden;
}

.parallax-layer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  will-change: transform;
}

.starfield {
  background: radial-gradient(2px 2px at 20px 30px, #eee, transparent),
              radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.8), transparent),
              radial-gradient(1px 1px at 90px 40px, #fff, transparent),
              radial-gradient(1px 1px at 130px 80px, rgba(255,255,255,0.6), transparent),
              radial-gradient(2px 2px at 160px 30px, #ddd, transparent);
  background-repeat: repeat;
  background-size: 200px 100px;
  animation: twinkle 20s linear infinite;
}

@keyframes twinkle {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-100px); }
}

.floating-orb {
  position: absolute;
  border-radius: 50%;
  background: var(--gradient-primary);
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
  filter: blur(40px);
}

.floating-orb:nth-child(1) {
  width: 200px;
  height: 200px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-orb:nth-child(2) {
  width: 150px;
  height: 180px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.floating-orb:nth-child(3) {
  width: 100px;
  height: 50px;
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

/* Card Tilt Effect */
.tilt-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transform-style: preserve-3d;
}

.tilt-card:hover {
  transform: perspective(1000px) rotateX(5deg) rotateY(5deg) scale(1.02);
  box-shadow: var(--shadow-glow);
}

/* Glassmorphism */
.glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.glass-dark {
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

/* Animated Background */
.animated-bg {
  background: linear-gradient(-45deg, var(--tc-orange), var(--tc-yellow), var(--tc-orange), var(--tc-yellow));
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
}

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

/* Marquee Animation */
.marquee {
  display: flex;
  animation: marquee 30s linear infinite;
}

.marquee:hover {
  animation-play-state: paused;
}

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

  opacity: 1;
  transform: translateY(0);
}

/* Timeline Progress */
  position: relative;
}

  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 50px;
  transition: width 0.5s ease;
  z-index: 1;
}

/* Button Hover Effects */
.btn-3d {
  position: relative;
  transition: all 0.3s ease;
  transform-style: preserve-3d;
}

.btn-3d:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-3d:active {
  transform: translateY(0) scale(0.98);
}

/* Mobile Menu Slide Animation */
.mobile-menu {
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
}

.mobile-menu.open {
  transform: translateX(0);
}

/* Accordion Animation */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.accordion-content.open {
  max-height: 500px;
  transition: max-height 0.3s ease-in;
}

  opacity: 1;
  transform: translateX(0);
  position: relative;
}

/* Focus Styles for Accessibility */
.focus-visible:focus {
  outline: 2px solid var(--tc-orange);
  outline-offset: 2px;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .tilt-card:hover {
    transform: none;
  }
  
  .floating-orb {
    animation: none;
  }
  
  .starfield {
    animation: none;
  }
  
  .marquee {
    animation: none;
  }
}

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

::-webkit-scrollbar-track {
  background: var(--tc-ivory);
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-primary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--tc-orange);
}

/* Utility Classes */
.text-shadow {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.backdrop-blur {
  backdrop-filter: blur(10px);
}

.rotate-3d {
  transform-style: preserve-3d;
}

.perspective {
  perspective: 1000px;
}

/* Loading Animation */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: var(--tc-orange);
  animation: spin 1s ease-in-out infinite;
}

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

/* Toast Notification */
.toast {
  position: fixed;
  top: 20px;
  right: 20px;
  background: var(--tc-black);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 1000;
}

.toast.show {
  transform: translateX(0);
}

/* Form Validation Styles */
.form-error {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

.form-success {
  border-color: #10b981 !important;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1) !important;
}

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

/* Responsive Design Helpers */
@media (max-width: 768px) {
  .tilt-card:hover {
    transform: none;
  }
  
  .floating-orb {
    display: none;
  }
}
/* Enhanced 3D Hero Section Styles */

.hero-3d {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.hero-3d::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(249, 115, 22, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(251, 191, 36, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(249, 115, 22, 0.2) 0%, transparent 50%);
    animation: heroGradient 8s ease-in-out infinite;
    z-index: 1;
}

@keyframes heroGradient {
    0%, 100% { 
        transform: translateZ(0px) rotateX(0deg) rotateY(0deg);
        opacity: 0.8;
    }
    50% { 
        transform: translateZ(20px) rotateX(5deg) rotateY(5deg);
        opacity: 1;
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    transform-style: preserve-3d;
}

.hero-title-3d {
    transform: translateZ(50px);
    text-shadow: 
        0 0 20px rgba(249, 115, 22, 0.5),
        0 0 40px rgba(251, 191, 36, 0.3),
        0 0 60px rgba(249, 115, 22, 0.2);
    animation: titleFloat 6s ease-in-out infinite;
}

@keyframes titleFloat {
    0%, 100% { 
        transform: translateZ(50px) rotateX(0deg) rotateY(0deg);
    }
    50% { 
        transform: translateZ(60px) rotateX(2deg) rotateY(2deg);
    }
}

.hero-subtitle-3d {
    transform: translateZ(30px);
    animation: subtitleFloat 6s ease-in-out infinite 1s;
}

@keyframes subtitleFloat {
    0%, 100% { 
        transform: translateZ(30px) rotateX(0deg);
    }
    50% { 
        transform: translateZ(40px) rotateX(1deg);
    }
}

.hero-buttons-3d {
    transform: translateZ(40px);
    animation: buttonsFloat 6s ease-in-out infinite 2s;
}

@keyframes buttonsFloat {
    0%, 100% { 
        transform: translateZ(40px) rotateX(0deg);
    }
    50% { 
        transform: translateZ(50px) rotateX(1deg);
    }
}

.hero-form-3d {
    transform: translateZ(20px) rotateY(-5deg);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: formFloat 8s ease-in-out infinite 3s;
}

@keyframes formFloat {
    0%, 100% { 
        transform: translateZ(20px) rotateY(-5deg) rotateX(0deg);
    }
    50% { 
        transform: translateZ(30px) rotateY(-3deg) rotateX(2deg);
    }
}

.floating-orb-3d {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.3), rgba(251, 191, 36, 0.3));
    filter: blur(40px);
    animation: orbFloat3D 12s ease-in-out infinite;
    transform-style: preserve-3d;
}

.floating-orb-3d:nth-child(1) {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
    transform: translateZ(100px) rotateX(45deg) rotateY(45deg);
}

.floating-orb-3d:nth-child(2) {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 10%;
    animation-delay: 4s;
    transform: translateZ(150px) rotateX(-30deg) rotateY(60deg);
}

.floating-orb-3d:nth-child(3) {
    width: 150px;
    height: 180px;
    bottom: 20%;
    left: 15%;
    animation-delay: 8s;
    transform: translateZ(80px) rotateX(60deg) rotateY(-45deg);
}

@keyframes orbFloat3D {
    0%, 100% { 
        transform: translateZ(100px) rotateX(45deg) rotateY(45deg) scale(1);
        opacity: 0.3;
    }
    25% { 
        transform: translateZ(120px) rotateX(60deg) rotateY(30deg) scale(1.1);
        opacity: 0.5;
    }
    50% { 
        transform: translateZ(80px) rotateX(30deg) rotateY(60deg) scale(0.9);
        opacity: 0.4;
    }
    75% { 
        transform: translateZ(110px) rotateX(50deg) rotateY(40deg) scale(1.05);
        opacity: 0.6;
    }
}

.starfield-3d {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(251, 191, 36, 0.6), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.9), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(249, 115, 22, 0.4), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(255, 255, 255, 0.7), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: starfield3D 20s linear infinite;
    transform: translateZ(-50px);
}

@keyframes starfield3D {
    0% { 
        transform: translateZ(-50px) translateY(0px) rotateX(0deg);
        opacity: 0.8;
    }
    100% { 
        transform: translateZ(-50px) translateY(-100px) rotateX(10deg);
        opacity: 1;
    }
}

.gradient-text-3d {
    background: linear-gradient(135deg, #F97316 0%, #FBBF24 50%, #F97316 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift3D 4s ease-in-out infinite;
    text-shadow: 
        0 0 30px rgba(249, 115, 22, 0.5),
        0 0 60px rgba(251, 191, 36, 0.3);
}

@keyframes gradientShift3D {
    0% { 
        background-position: 0% 50%;
        transform: translateZ(0px);
    }
    50% { 
        background-position: 100% 50%;
        transform: translateZ(10px);
    }
    100% { 
        background-position: 0% 50%;
        transform: translateZ(0px);
    }
}

.btn-3d-enhanced {
    position: relative;
    transform-style: preserve-3d;
    transition: all 0.3s ease;
    box-shadow: 
        0 10px 30px rgba(249, 115, 22, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

.btn-3d-enhanced:hover {
    transform: translateY(-5px) translateZ(20px) rotateX(5deg);
    box-shadow: 
        0 20px 40px rgba(249, 115, 22, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-3d-enhanced:active {
    transform: translateY(-2px) translateZ(10px) rotateX(2deg);
}

.hero-glass-effect {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .hero-3d::before,
    .hero-title-3d,
    .hero-subtitle-3d,
    .hero-buttons-3d,
    .hero-form-3d,
    .floating-orb-3d,
    .starfield-3d,
    .gradient-text-3d {
        animation: none;
        transform: none;
    }
    
    .btn-3d-enhanced:hover {
        transform: none;
    }
}
/* 3D Geometric Shapes and Particles */

.floating-cube-3d {
    position: absolute;
    width: 40px;
    height: 50px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.3), rgba(251, 191, 36, 0.3));
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform-style: preserve-3d;
    animation: cubeFloat3D 15s ease-in-out infinite;
    box-shadow: 
        0 0 20px rgba(249, 115, 22, 0.2),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.floating-cube-3d::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 40px;
    height: 50px;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(249, 115, 22, 0.2));
    transform: rotateX(60deg) rotateY(45deg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.floating-cube-3d::after {
    content: '';
    position: absolute;
    top: 0;
    left: -20px;
    width: 40px;
    height: 50px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(251, 191, 36, 0.2));
    transform: rotateY(60deg) rotateX(45deg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@keyframes cubeFloat3D {
    0%, 100% { 
        transform: translateZ(0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
        opacity: 0.6;
    }
    25% { 
        transform: translateZ(50px) rotateX(90deg) rotateY(45deg) rotateZ(30deg);
        opacity: 0.8;
    }
    50% { 
        transform: translateZ(100px) rotateX(180deg) rotateY(90deg) rotateZ(60deg);
        opacity: 0.7;
    }
    75% { 
        transform: translateZ(75px) rotateX(270deg) rotateY(135deg) rotateZ(90deg);
        opacity: 0.9;
    }
}

.floating-pyramid-3d {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 50px solid rgba(249, 115, 22, 0.3);
    transform-style: preserve-3d;
    animation: pyramidFloat3D 12s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(249, 115, 22, 0.3));
}

.floating-pyramid-3d::before {
    content: '';
    position: absolute;
    top: 0;
    left: -25px;
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 50px solid rgba(251, 191, 36, 0.2);
    transform: rotateY(60deg);
}

.floating-pyramid-3d::after {
    content: '';
    position: absolute;
    top: 0;
    left: -25px;
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 50px solid rgba(249, 115, 22, 0.2);
    transform: rotateY(-60deg);
}

@keyframes pyramidFloat3D {
    0%, 100% { 
        transform: translateZ(0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
        opacity: 0.5;
    }
    33% { 
        transform: translateZ(60px) rotateX(45deg) rotateY(120deg) rotateZ(30deg);
        opacity: 0.7;
    }
    66% { 
        transform: translateZ(80px) rotateX(90deg) rotateY(240deg) rotateZ(60deg);
        opacity: 0.6;
    }
}

.particle-system-3d {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(249, 115, 22, 0.6) 50%, transparent 100%);
    border-radius: 50%;
    animation: particleFloat3D var(--duration) ease-in-out infinite;
    animation-delay: var(--delay);
    transform-style: preserve-3d;
}

.particle:nth-child(odd) {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.6) 0%, rgba(251, 191, 36, 0.4) 50%, transparent 100%);
}

@keyframes particleFloat3D {
    0% { 
        transform: translate3d(0, 100vh, 0) rotateX(0deg) rotateY(0deg) scale(0);
        opacity: 0;
    }
    10% { 
        transform: translate3d(10vw, 90vh, 20px) rotateX(45deg) rotateY(30deg) scale(1);
        opacity: 0.8;
    }
    50% { 
        transform: translate3d(50vw, 50vh, 100px) rotateX(90deg) rotateY(180deg) scale(1.2);
        opacity: 1;
    }
    90% { 
        transform: translate3d(90vw, 10vh, 20px) rotateX(135deg) rotateY(270deg) scale(0.8);
        opacity: 0.6;
    }
    100% { 
        transform: translate3d(100vw, 0, 0) rotateX(180deg) rotateY(360deg) scale(0);
        opacity: 0;
    }
}

/* Enhanced 3D Text Effects */
.hero-title-3d {
    position: relative;
}

.hero-title-3d::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer3D 3s ease-in-out infinite;
    transform: translateZ(10px);
}

@keyframes shimmer3D {
    0% { 
        background-position: -200% 0;
        transform: translateZ(10px) rotateX(0deg);
    }
    50% { 
        background-position: 200% 0;
        transform: translateZ(15px) rotateX(5deg);
    }
    100% { 
        background-position: -200% 0;
        transform: translateZ(10px) rotateX(0deg);
    }
}

/* 3D Button Enhancements */
.btn-3d-enhanced {
    position: relative;
    overflow: hidden;
}

.btn-3d-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-3d-enhanced:hover::before {
    left: 100%;
}

/* 3D Form Enhancements */
.hero-form-3d input,
.hero-form-3d select,
.hero-form-3d textarea {
    transition: all 0.3s ease;
    transform-style: preserve-3d;
}

.hero-form-3d input:focus,
.hero-form-3d select:focus,
.hero-form-3d textarea:focus {
    transform: translateZ(5px);
    box-shadow: 
        0 0 0 2px rgba(249, 115, 22, 0.5),
        0 10px 20px rgba(0, 0, 0, 0.1),
        0 0 30px rgba(249, 115, 22, 0.2);
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .floating-cube-3d,
    .floating-pyramid-3d,
    .particle,
    .hero-title-3d::before {
        animation: none;
        transform: none;
    }
    
    .btn-3d-enhanced::before {
        display: none;
    }
}
/* Advanced 3D Tech Icons and Enhanced Effects */

.tech-icons-3d {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 5;
}

.tech-icon-3d {
    position: absolute;
    width: 60px;
    height: 180px;
    transform-style: preserve-3d;
    animation: techIconFloat 20s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(249, 115, 22, 0.3));
}

.tech-icon-3d svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}

/* AI Brain Icon */
.tech-icon-ai {
    top: 15%;
    left: 8%;
    animation-delay: 0s;
    color: #F97316;
}

.tech-icon-ai::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 3s ease-in-out infinite;
}

/* Blockchain Icon */
.tech-icon-blockchain {
    top: 25%;
    right: 12%;
    animation-delay: 2s;
    color: #FBBF24;
}

.tech-icon-blockchain::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background: linear-gradient(45deg, rgba(251, 191, 36, 0.1), rgba(249, 115, 22, 0.1));
    border-radius: 8px;
    animation: blockPulse 4s ease-in-out infinite;
}

/* Cloud Computing Icon */
.tech-icon-cloud {
    top: 45%;
    left: 5%;
    animation-delay: 4s;
    color: #F97316;
}

.tech-icon-cloud::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(ellipse, rgba(249, 115, 22, 0.08) 0%, transparent 60%);
    animation: cloudFloat 5s ease-in-out infinite;
}

/* IoT Icon */
.tech-icon-iot {
    top: 65%;
    right: 8%;
    animation-delay: 6s;
    color: #FBBF24;
}

.tech-icon-iot::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    right: -12px;
    bottom: -12px;
    background: conic-gradient(from 0deg, rgba(251, 191, 36, 0.1), rgba(249, 115, 22, 0.1), rgba(251, 191, 36, 0.1));
    border-radius: 50%;
    animation: iotRotate 6s linear infinite;
}

/* Quantum Computing Icon */
.tech-icon-quantum {
    top: 35%;
    left: 15%;
    animation-delay: 8s;
    color: #F97316;
}

.tech-icon-quantum::before {
    content: '';
    position: absolute;
    top: -18px;
    left: -18px;
    right: -18px;
    bottom: -18px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, rgba(251, 191, 36, 0.05) 50%, transparent 100%);
    border-radius: 50%;
    animation: quantumPulse 2s ease-in-out infinite;
}

/* Machine Learning Icon */
.tech-icon-ml {
    top: 55%;
    right: 20%;
    animation-delay: 10s;
    color: #FBBF24;
}

.tech-icon-ml::before {
    content: '';
    position: absolute;
    top: -14px;
    left: -14px;
    right: -14px;
    bottom: -14px;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(249, 115, 22, 0.1));
    border-radius: 4px;
    animation: mlPulse 3.5s ease-in-out infinite;
}

/* Cybersecurity Icon */
.tech-icon-security {
    top: 75%;
    left: 12%;
    animation-delay: 12s;
    color: #F97316;
}

.tech-icon-security::before {
    content: '';
    position: absolute;
    top: -16px;
    left: -16px;
    right: -16px;
    bottom: -16px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: securityShield 4.5s ease-in-out infinite;
}

/* AR/VR Icon */
.tech-icon-ar {
    top: 20%;
    left: 25%;
    animation-delay: 14s;
    color: #FBBF24;
}

.tech-icon-ar::before {
    content: '';
    position: absolute;
    top: -22px;
    left: -22px;
    right: -22px;
    bottom: -22px;
    background: conic-gradient(from 45deg, rgba(251, 191, 36, 0.1), rgba(249, 115, 22, 0.1), rgba(251, 191, 36, 0.1));
    border-radius: 50%;
    animation: arRotate 7s linear infinite;
}

@keyframes techIconFloat {
    0%, 100% { 
        transform: translateZ(0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1);
        opacity: 0.7;
    }
    25% { 
        transform: translateZ(80px) rotateX(45deg) rotateY(90deg) rotateZ(30deg) scale(1.1);
        opacity: 0.9;
    }
    50% { 
        transform: translateZ(120px) rotateX(90deg) rotateY(180deg) rotateZ(60deg) scale(0.9);
        opacity: 0.8;
    }
    75% { 
        transform: translateZ(100px) rotateX(135deg) rotateY(270deg) rotateZ(90deg) scale(1.05);
        opacity: 0.85;
    }
}

@keyframes pulseGlow {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.3;
    }
    50% { 
        transform: scale(1.2);
        opacity: 0.6;
    }
}

@keyframes blockPulse {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        opacity: 0.2;
    }
    50% { 
        transform: scale(1.1) rotate(180deg);
        opacity: 0.4;
    }
}

@keyframes cloudFloat {
    0%, 100% { 
        transform: translateY(0px) scale(1);
        opacity: 0.3;
    }
    50% { 
        transform: translateY(-10px) scale(1.05);
        opacity: 0.5;
    }
}

@keyframes iotRotate {
    0% { 
        transform: rotate(0deg) scale(1);
        opacity: 0.2;
    }
    100% { 
        transform: rotate(360deg) scale(1.1);
        opacity: 0.4;
    }
}

@keyframes quantumPulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.3;
        filter: blur(0px);
    }
    50% { 
        transform: scale(1.3);
        opacity: 0.6;
        filter: blur(2px);
    }
}

@keyframes mlPulse {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        opacity: 0.25;
    }
    50% { 
        transform: scale(1.15) rotate(45deg);
        opacity: 0.5;
    }
}

@keyframes securityShield {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        opacity: 0.3;
    }
    50% { 
        transform: scale(1.2) rotate(5deg);
        opacity: 0.6;
    }
}

@keyframes arRotate {
    0% { 
        transform: rotate(0deg) scale(1);
        opacity: 0.2;
    }
    100% { 
        transform: rotate(360deg) scale(1.1);
        opacity: 0.4;
    }
}

/* Enhanced 3D Grid Background */
.hero-3d-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(249, 115, 22, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(251, 191, 36, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    transform: translateZ(-100px) rotateX(60deg);
    opacity: 0.3;
}

@keyframes gridMove {
    0% { 
        transform: translateZ(-100px) rotateX(60deg) translateY(0px);
    }
    100% { 
        transform: translateZ(-100px) rotateX(60deg) translateY(-50px);
    }
}

/* 3D Holographic Effect */
.holographic-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    background-size: 200% 200%;
    animation: holographicSweep 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 15;
}

@keyframes holographicSweep {
    0% { 
        background-position: -200% -200%;
        opacity: 0;
    }
    50% { 
        background-position: 0% 0%;
        opacity: 1;
    }
    100% { 
        background-position: 200% 200%;
        opacity: 0;
    }
}

/* Enhanced Particle System */
.enhanced-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, rgba(249, 115, 22, 0.7) 30%, transparent 100%);
    border-radius: 50%;
    animation: enhancedParticleFloat 15s ease-in-out infinite;
    transform-style: preserve-3d;
}

.enhanced-particle:nth-child(odd) {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.7) 0%, rgba(251, 191, 36, 0.5) 30%, transparent 100%);
    animation-duration: 18s;
}

.enhanced-particle:nth-child(3n) {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(249, 115, 22, 0.6) 20%, rgba(251, 191, 36, 0.4) 50%, transparent 100%);
    animation-duration: 12s;
}

@keyframes enhancedParticleFloat {
    0% { 
        transform: translate3d(0, 100vh, 0) rotateX(0deg) rotateY(0deg) scale(0);
        opacity: 0;
    }
    10% { 
        transform: translate3d(15vw, 85vh, 50px) rotateX(30deg) rotateY(45deg) scale(1);
        opacity: 0.8;
    }
    30% { 
        transform: translate3d(35vw, 70vh, 100px) rotateX(60deg) rotateY(90deg) scale(1.2);
        opacity: 1;
    }
    50% { 
        transform: translate3d(55vw, 50vh, 150px) rotateX(90deg) rotateY(135deg) scale(1.1);
        opacity: 0.9;
    }
    70% { 
        transform: translate3d(75vw, 30vh, 100px) rotateX(120deg) rotateY(180deg) scale(0.9);
        opacity: 0.7;
    }
    90% { 
        transform: translate3d(90vw, 15vh, 50px) rotateX(150deg) rotateY(225deg) scale(0.8);
        opacity: 0.5;
    }
    100% { 
        transform: translate3d(100vw, 0, 0) rotateX(180deg) rotateY(270deg) scale(0);
        opacity: 0;
    }
}

/* 3D Data Streams */
.data-stream-3d {
    position: absolute;
    width: 2px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, rgba(249, 115, 22, 0.8), transparent);
    animation: dataStream 10s linear infinite;
    transform-style: preserve-3d;
}

.data-stream-3d:nth-child(odd) {
    background: linear-gradient(to bottom, transparent, rgba(251, 191, 36, 0.8), transparent);
    animation-duration: 12s;
}

@keyframes dataStream {
    0% { 
        transform: translateY(100vh) translateZ(0px) rotateX(0deg);
        opacity: 0;
    }
    10% { 
        transform: translateY(90vh) translateZ(20px) rotateX(10deg);
        opacity: 0.8;
    }
    90% { 
        transform: translateY(10vh) translateZ(40px) rotateX(20deg);
        opacity: 0.6;
    }
    100% { 
        transform: translateY(0) translateZ(0px) rotateX(0deg);
        opacity: 0;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .tech-icon-3d,
    .hero-3d-grid,
    .holographic-overlay,
    .enhanced-particle,
    .data-stream-3d,
    .tech-icon-3d::before {
        animation: none;
        transform: none;
    }
}
/* Advanced Tech Icons with Unique 3D Effects */

.advanced-tech-icons-3d {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 6;
}

.tech-icon-advanced {
    position: absolute;
    width: 50px;
    height: 50px;
    transform-style: preserve-3d;
    animation: advancedTechFloat 25s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(249, 115, 22, 0.4));
}

.tech-icon-advanced svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}

/* Neural Network Icon */
.neural-network {
    top: 12%;
    left: 3%;
    animation-delay: 0s;
    color: #F97316;
}

.neural-network::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: neuralPulse 4s ease-in-out infinite;
}

/* Quantum Circuit Icon */
.quantum-circuit {
    top: 22%;
    right: 5%;
    animation-delay: 3s;
    color: #FBBF24;
}

.quantum-circuit::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, rgba(251, 191, 36, 0.15), rgba(249, 115, 22, 0.15));
    border-radius: 4px;
    animation: quantumGlow 5s ease-in-out infinite;
}

/* Holographic Display Icon */
.holographic {
    top: 35%;
    left: 2%;
    animation-delay: 6s;
    color: #F97316;
}

.holographic::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    right: -12px;
    bottom: -12px;
    background: conic-gradient(from 0deg, rgba(249, 115, 22, 0.1), rgba(251, 191, 36, 0.1), rgba(249, 115, 22, 0.1));
    border-radius: 8px;
    animation: holographicRotate 6s linear infinite;
}

/* DNA Helix Icon */
.dna-helix {
    top: 50%;
    right: 3%;
    animation-delay: 9s;
    color: #FBBF24;
}

.dna-helix::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background: radial-gradient(ellipse, rgba(251, 191, 36, 0.12) 0%, transparent 60%);
    border-radius: 50%;
    animation: dnaSpiral 7s ease-in-out infinite;
}

/* Satellite Network Icon */
.satellite {
    top: 65%;
    left: 4%;
    animation-delay: 12s;
    color: #F97316;
}

.satellite::before {
    content: '';
    position: absolute;
    top: -18px;
    left: -18px;
    right: -18px;
    bottom: -18px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, rgba(251, 191, 36, 0.05) 50%, transparent 100%);
    border-radius: 50%;
    animation: satelliteOrbit 8s linear infinite;
}

/* Blockchain Nodes Icon */
.blockchain-nodes {
    top: 75%;
    right: 6%;
    animation-delay: 15s;
    color: #FBBF24;
}

.blockchain-nodes::before {
    content: '';
    position: absolute;
    top: -14px;
    left: -14px;
    right: -14px;
    bottom: -14px;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(249, 115, 22, 0.1));
    border-radius: 6px;
    animation: blockchainPulse 4.5s ease-in-out infinite;
}

@keyframes advancedTechFloat {
    0%, 100% { 
        transform: translateZ(0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1);
        opacity: 0.6;
    }
    20% { 
        transform: translateZ(60px) rotateX(30deg) rotateY(60deg) rotateZ(20deg) scale(1.1);
        opacity: 0.8;
    }
    40% { 
        transform: translateZ(100px) rotateX(60deg) rotateY(120deg) rotateZ(40deg) scale(0.9);
        opacity: 0.7;
    }
    60% { 
        transform: translateZ(80px) rotateX(90deg) rotateY(180deg) rotateZ(60deg) scale(1.05);
        opacity: 0.9;
    }
    80% { 
        transform: translateZ(120px) rotateX(120deg) rotateY(240deg) rotateZ(80deg) scale(0.95);
        opacity: 0.75;
    }
}

@keyframes neuralPulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.3;
    }
    50% { 
        transform: scale(1.3);
        opacity: 0.6;
    }
}

@keyframes quantumGlow {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        opacity: 0.2;
    }
    50% { 
        transform: scale(1.2) rotate(180deg);
        opacity: 0.5;
    }
}

@keyframes holographicRotate {
    0% { 
        transform: rotate(0deg) scale(1);
        opacity: 0.3;
    }
    100% { 
        transform: rotate(360deg) scale(1.1);
        opacity: 0.6;
    }
}

@keyframes dnaSpiral {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        opacity: 0.25;
    }
    50% { 
        transform: scale(1.25) rotate(180deg);
        opacity: 0.5;
    }
}

@keyframes satelliteOrbit {
    0% { 
        transform: rotate(0deg) scale(1);
        opacity: 0.3;
    }
    100% { 
        transform: rotate(360deg) scale(1.15);
        opacity: 0.6;
    }
}

@keyframes blockchainPulse {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        opacity: 0.2;
    }
    50% { 
        transform: scale(1.2) rotate(45deg);
        opacity: 0.4;
    }
}

/* Holographic Grid */
.holographic-grid-3d {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 4;
}

.grid-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.3), transparent);
    animation: gridPulse 6s ease-in-out infinite;
}

.grid-line.horizontal {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.3), transparent);
}

.grid-line.vertical {
    height: 100%;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(251, 191, 36, 0.3), transparent);
}

@keyframes gridPulse {
    0%, 100% { 
        opacity: 0.2;
        transform: scaleX(1);
    }
    50% { 
        opacity: 0.6;
        transform: scaleX(1.1);
    }
}

/* Energy Waves */
.energy-waves-3d {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 3;
}

.energy-wave {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.8), rgba(251, 191, 36, 0.8), transparent);
    animation: energyWaveMove var(--duration) ease-in-out infinite;
    animation-delay: var(--delay);
    transform: translateY(-50%);
}

@keyframes energyWaveMove {
    0% { 
        transform: translateY(-50%) translateX(-100%) scaleX(0);
        opacity: 0;
    }
    10% { 
        transform: translateY(-50%) translateX(-50%) scaleX(1);
        opacity: 0.8;
    }
    90% { 
        transform: translateY(-50%) translateX(50%) scaleX(1);
        opacity: 0.6;
    }
    100% { 
        transform: translateY(-50%) translateX(100%) scaleX(0);
        opacity: 0;
    }
}

/* Enhanced 3D Depth Layers */
.hero-3d::before {
    background: 
        radial-gradient(circle at 15% 25%, rgba(249, 115, 22, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(251, 191, 36, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(249, 115, 22, 0.2) 0%, transparent 70%),
        linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(251, 191, 36, 0.1) 100%);
    animation: heroGradient 12s ease-in-out infinite;
}

/* 3D Text Enhancement */
.hero-title-3d {
    text-shadow: 
        0 0 20px rgba(249, 115, 22, 0.6),
        0 0 40px rgba(251, 191, 36, 0.4),
        0 0 60px rgba(249, 115, 22, 0.3),
        0 0 80px rgba(251, 191, 36, 0.2);
}

/* 3D Button Glow Enhancement */
.btn-3d-enhanced {
    box-shadow: 
        0 10px 30px rgba(249, 115, 22, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-3d-enhanced:hover {
    box-shadow: 
        0 20px 40px rgba(249, 115, 22, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 0 60px rgba(249, 115, 22, 0.3);
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .tech-icon-advanced,
    .grid-line,
    .energy-wave,
    .tech-icon-advanced::before {
        animation: none;
        transform: none;
    }
}
/* Final 3D Enhancements for Hero Section */

/* 3D Matrix Rain Effect */
.matrix-rain-3d {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}

.matrix-column {
    position: absolute;
    top: -100%;
    width: 2px;
    height: 200%;
    background: linear-gradient(to bottom, transparent, rgba(0, 255, 0, 0.1), transparent);
    animation: matrixFall 15s linear infinite;
    transform: translateZ(-50px);
}

.matrix-column:nth-child(odd) {
    background: linear-gradient(to bottom, transparent, rgba(249, 115, 22, 0.1), transparent);
    animation-duration: 20s;
}

.matrix-column:nth-child(3n) {
    background: linear-gradient(to bottom, transparent, rgba(251, 191, 36, 0.1), transparent);
    animation-duration: 18s;
}

@keyframes matrixFall {
    0% { 
        transform: translateY(-100%) translateZ(-50px);
        opacity: 0;
    }
    10% { 
        transform: translateY(-50%) translateZ(-25px);
        opacity: 0.8;
    }
    90% { 
        transform: translateY(50%) translateZ(25px);
        opacity: 0.6;
    }
    100% { 
        transform: translateY(100%) translateZ(50px);
        opacity: 0;
    }
}

/* 3D Holographic Scan Lines */
.holographic-scanlines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 8;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 255, 255, 0.03) 2px,
        rgba(0, 255, 255, 0.03) 4px
    );
    animation: scanlineMove 2s linear infinite;
}

@keyframes scanlineMove {
    0% { 
        transform: translateY(0);
    }
    100% { 
        transform: translateY(20px);
    }
}

/* 3D Glitch Effect */
.glitch-effect-3d {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 9;
    background: 
        linear-gradient(90deg, transparent 98%, rgba(255, 0, 0, 0.1) 100%),
        linear-gradient(0deg, transparent 98%, rgba(0, 255, 0, 0.1) 100%);
    background-size: 50px 50px;
    animation: glitchFlicker 0.3s infinite;
    opacity: 0;
}

@keyframes glitchFlicker {
    0%, 90% { 
        opacity: 0;
        transform: translateZ(0px);
    }
    5% { 
        opacity: 0.1;
        transform: translateZ(10px) skewX(1deg);
    }
    10% { 
        opacity: 0;
        transform: translateZ(0px) skewX(0deg);
    }
}

/* 3D Energy Orbs */
.energy-orb-3d {
    position: absolute;
    width: 100px;
    height: 50px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.3) 0%, rgba(251, 191, 36, 0.2) 50%, transparent 100%);
    filter: blur(20px);
    animation: energyOrbFloat 15s ease-in-out infinite;
    transform-style: preserve-3d;
}

.energy-orb-3d:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    transform: translateZ(50px) rotateX(45deg) rotateY(45deg);
}

.energy-orb-3d:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 5s;
    transform: translateZ(75px) rotateX(-30deg) rotateY(60deg);
}

.energy-orb-3d:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 10s;
    transform: translateZ(100px) rotateX(60deg) rotateY(-45deg);
}

@keyframes energyOrbFloat {
    0%, 100% { 
        transform: translateZ(50px) rotateX(45deg) rotateY(45deg) scale(1);
        opacity: 0.3;
    }
    25% { 
        transform: translateZ(80px) rotateX(60deg) rotateY(30deg) scale(1.2);
        opacity: 0.5;
    }
    50% { 
        transform: translateZ(60px) rotateX(30deg) rotateY(60deg) scale(0.8);
        opacity: 0.4;
    }
    75% { 
        transform: translateZ(90px) rotateX(50deg) rotateY(40deg) scale(1.1);
        opacity: 0.6;
    }
}

/* 3D Hexagonal Grid */
.hexagonal-grid-3d {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(249, 115, 22, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(251, 191, 36, 0.1) 0%, transparent 50%);
    background-size: 100px 100px;
    animation: hexGridMove 30s linear infinite;
    transform: translateZ(-30px) rotateX(45deg);
}

@keyframes hexGridMove {
    0% { 
        transform: translateZ(-30px) rotateX(45deg) translateY(0px);
    }
    100% { 
        transform: translateZ(-30px) rotateX(45deg) translateY(-100px);
    }
}

/* 3D Neon Glow Effects */
.neon-glow-3d {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 7;
    background: 
        radial-gradient(circle at 30% 20%, rgba(249, 115, 22, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(251, 191, 36, 0.1) 0%, transparent 50%);
    animation: neonPulse 8s ease-in-out infinite;
}

@keyframes neonPulse {
    0%, 100% { 
        opacity: 0.3;
        transform: scale(1);
    }
    50% { 
        opacity: 0.6;
        transform: scale(1.1);
    }
}

/* Enhanced 3D Button Effects */
.btn-3d-enhanced::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-3d-enhanced:hover::after {
    opacity: 1;
}

/* 3D Form Field Enhancement */
.hero-form-3d input:focus,
.hero-form-3d select:focus,
.hero-form-3d textarea:focus {
    transform: translateZ(10px) rotateY(-2deg);
    box-shadow: 
        0 0 0 2px rgba(249, 115, 22, 0.6),
        0 15px 30px rgba(0, 0, 0, 0.15),
        0 0 40px rgba(249, 115, 22, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* 3D Text Shimmer Enhancement */
.hero-title-3d::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer3D 4s ease-in-out infinite;
    transform: translateZ(15px);
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .matrix-column,
    .holographic-scanlines,
    .glitch-effect-3d,
    .energy-orb-3d,
    .hexagonal-grid-3d,
    .neon-glow-3d,
    .hero-title-3d::after {
        animation: none;
        transform: none;
    }
}
/* Black Hero Section Enhancements */

.hero-3d {
    background: linear-gradient(135deg, #0B0B0C 0%, #1a1a1a 50%, #0B0B0C 100%);
    position: relative;
    overflow: hidden;
}

.hero-3d::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(249, 115, 22, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(251, 191, 36, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(249, 115, 22, 0.08) 0%, transparent 70%);
    animation: heroGradient 12s ease-in-out infinite;
    z-index: 1;
}

.hero-title-3d {
    color: #ffffff;
    text-shadow: 
        0 0 20px rgba(249, 115, 22, 0.8),
        0 0 40px rgba(251, 191, 36, 0.6),
        0 0 60px rgba(249, 115, 22, 0.4),
        0 0 80px rgba(251, 191, 36, 0.2);
}

.hero-subtitle-3d {
    color: #d1d5db;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-form-3d {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(249, 115, 22, 0.3);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hero-form-3d input,
.hero-form-3d select,
.hero-form-3d textarea {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(249, 115, 22, 0.3);
    color: #ffffff;
    backdrop-filter: blur(10px);
}

.hero-form-3d input::placeholder,
.hero-form-3d textarea::placeholder {
    color: #9ca3af;
}

.hero-form-3d input:focus,
.hero-form-3d select:focus,
.hero-form-3d textarea:focus {
    background: rgba(0, 0, 0, 0.5);
    border-color: #F97316;
    box-shadow: 
        0 0 0 2px rgba(249, 115, 22, 0.5),
        0 0 20px rgba(249, 115, 22, 0.3);
}

.floating-orb-3d {
    background: radial-gradient(circle, rgba(249, 115, 22, 0.2) 0%, rgba(251, 191, 36, 0.1) 50%, transparent 100%);
    filter: blur(40px);
}

.starfield-3d {
    background: 
        radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(249, 115, 22, 0.2), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(251, 191, 36, 0.2), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(255, 255, 255, 0.3), transparent);
}

.gradient-text-3d {
    background: linear-gradient(135deg, #F97316 0%, #FBBF24 50%, #F97316 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift3D 4s ease-in-out infinite;
    text-shadow: 
        0 0 30px rgba(249, 115, 22, 0.8),
        0 0 60px rgba(251, 191, 36, 0.6);
}

.btn-3d-enhanced {
    box-shadow: 
        0 10px 30px rgba(249, 115, 22, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-3d-enhanced:hover {
    box-shadow: 
        0 20px 40px rgba(249, 115, 22, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 0 60px rgba(249, 115, 22, 0.4);
}

/* Enhanced 3D effects for black background */
.tech-icon-3d {
    filter: drop-shadow(0 0 15px rgba(249, 115, 22, 0.6));
}

.tech-icon-3d svg {
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.4));
}

.matrix-column {
    background: linear-gradient(to bottom, transparent, rgba(249, 115, 22, 0.1), transparent);
}

.energy-wave {
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.6), rgba(251, 191, 36, 0.6), transparent);
}

.holographic-scanlines {
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 255, 255, 0.05) 2px,
        rgba(0, 255, 255, 0.05) 4px
    );
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .hero-3d::before,
    .gradient-text-3d,
    .floating-orb-3d,
    .starfield-3d {
        animation: none;
    }
}
/* Modern Hero Section Redesign */

.hero-modern {
    background: linear-gradient(135deg, #0B0B0C 0%, #1a1a1a 100%);
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(249, 115, 22, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(251, 191, 36, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(249, 115, 22, 0.1) 0%, transparent 70%);
    animation: modernGradient 8s ease-in-out infinite;
    z-index: 1;
}

.hero-modern::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 2;
}

@keyframes modernGradient {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        opacity: 0.8;
    }
    50% { 
        transform: scale(1.1) rotate(180deg);
        opacity: 1;
    }
}

.hero-content-modern {
    position: relative;
    z-index: 10;
    max-width: 7xl;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.hero-title-modern {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: titleSlideIn 1s ease-out;
}

.hero-title-modern .gradient-text-modern {
    background: linear-gradient(135deg, #F97316 0%, #FBBF24 50%, #F97316 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes titleSlideIn {
    0% { 
        transform: translateY(50px);
        opacity: 0;
    }
    100% { 
        transform: translateY(0);
        opacity: 1;
    }
}

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

.hero-subtitle-modern {
    font-size: 1.25rem;
    color: #e5e7eb;
    margin-bottom: 2rem;
    max-width: 600px;
    line-height: 1.6;
    animation: subtitleSlideIn 1s ease-out 0.3s both;
}

@keyframes subtitleSlideIn {
    0% { 
        transform: translateY(30px);
        opacity: 0;
    }
    100% { 
        transform: translateY(0);
        opacity: 1;
    }
}

.hero-buttons-modern {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    animation: buttonsSlideIn 1s ease-out 0.6s both;
}

@keyframes buttonsSlideIn {
    0% { 
        transform: translateY(30px);
        opacity: 0;
    }
    100% { 
        transform: translateY(0);
        opacity: 1;
    }
}

.btn-modern-primary {
    background: linear-gradient(135deg, #F97316 0%, #FBBF24 100%);
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-modern-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-modern-primary:hover::before {
    left: 100%;
}

.btn-modern-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.4);
}

.btn-modern-secondary {
    background: transparent;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-modern-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.hero-form-modern {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    animation: formSlideIn 1s ease-out 0.9s both;
}

@keyframes formSlideIn {
    0% { 
        transform: translateY(50px);
        opacity: 0;
    }
    100% { 
        transform: translateY(0);
        opacity: 1;
    }
}

.form-title-modern {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-group-modern {
    margin-bottom: 1rem;
}

.form-input-modern {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-input-modern::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-input-modern:focus {
    outline: none;
    border-color: #F97316;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.form-select-modern {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-select-modern:focus {
    outline: none;
    border-color: #F97316;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.form-textarea-modern {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    resize: vertical;
    min-height: 50px;
}

.form-textarea-modern::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-textarea-modern:focus {
    outline: none;
    border-color: #F97316;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.form-checkbox-modern {
    display: flex;
    align-items: center;
    margin-top: 1rem;
}

.form-checkbox-modern input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 0.5rem;
    accent-color: #F97316;
}

.form-checkbox-modern label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.form-checkbox-modern a {
    color: #F97316;
    text-decoration: none;
}

.form-checkbox-modern a:hover {
    text-decoration: underline;
}

.btn-submit-modern {
    width: 100%;
    background: linear-gradient(135deg, #F97316 0%, #FBBF24 100%);
    color: #ffffff;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(249, 115, 22, 0.3);
}

.btn-submit-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
}

/* Floating Elements */
.floating-elements-modern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 3;
}

.floating-shape-modern {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(251, 191, 36, 0.1));
    animation: floatModern 6s ease-in-out infinite;
}

.floating-shape-modern:nth-child(1) {
    width: 80px;
    height: 50px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-shape-modern:nth-child(2) {
    width: 120px;
    height: 180px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-shape-modern:nth-child(3) {
    width: 60px;
    height: 180px;
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes floatModern {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    50% { 
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title-modern {
        font-size: 2.5rem;
    }
    
    .hero-buttons-modern {
        flex-direction: column;
    }
    
    .btn-modern-primary,
    .btn-modern-secondary {
        width: 100%;
        text-align: center;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .hero-modern::before,
    .gradient-text-modern,
    .floating-shape-modern,
    .titleSlideIn,
    .subtitleSlideIn,
    .buttonsSlideIn,
    .formSlideIn {
        animation: none;
    }
}
/* Color Scheme Update */

:root {
    --tc-orange: #F97316;
    --tc-orange-hover: #EA580C;
    --tc-yellow: #FBBF24;
    --tc-yellow-hover: #F59E0B;
    --tc-black: #0B0B0C;
    --tc-off-white: #FFF7ED;
}

/* Update Tailwind Config */
.tcOrange {
    color: #F97316;
}

.bg-tcOrange {
    background-color: #F97316;
}

.border-tcOrange {
    border-color: #F97316;
}

.text-tcOrange {
    color: #F97316;
}

.tcYellow {
    color: #FBBF24;
}

.bg-tcYellow {
    background-color: #FBBF24;
}

.border-tcYellow {
    border-color: #FBBF24;
}

.text-tcYellow {
    color: #FBBF24;
}

.tcBlack {
    color: #0B0B0C;
}

.bg-tcBlack {
    background-color: #0B0B0C;
}

.border-tcBlack {
    border-color: #0B0B0C;
}

.text-tcBlack {
    color: #0B0B0C;
}

.tcOffWhite {
    color: #FFF7ED;
}

.bg-tcOffWhite {
    background-color: #FFF7ED;
}

.border-tcOffWhite {
    border-color: #FFF7ED;
}

.text-tcOffWhite {
    color: #FFF7ED;
}

/* Hover States */
.hover\:bg-tcOrange:hover {
    background-color: #EA580C;
}

.hover\:bg-tcYellow:hover {
    background-color: #F59E0B;
}

.hover\:text-tcOrange:hover {
    color: #EA580C;
}

.hover\:text-tcYellow:hover {
    color: #F59E0B;
}

/* Focus States */
.focus\:border-tcOrange:focus {
    border-color: #F97316;
}

.focus\:ring-tcOrange:focus {
    --tw-ring-color: #F97316;
}

/* Gradient Updates */
.gradient-orange-yellow {
    background: linear-gradient(135deg, #F97316 0%, #FBBF24 100%);
}

.gradient-orange-yellow-hover {
    background: linear-gradient(135deg, #EA580C 0%, #F59E0B 100%);
}

/* Hero Section Color Updates */
.hero-modern {
    background: linear-gradient(135deg, #0B0B0C 0%, #1a1a1a 100%);
}

.hero-modern::before {
    background: 
        radial-gradient(circle at 20% 80%, rgba(249, 115, 22, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(251, 191, 36, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(249, 115, 22, 0.1) 0%, transparent 70%);
}

.hero-title-modern .gradient-text-modern {
    background: linear-gradient(135deg, #F97316 0%, #FBBF24 50%, #F97316 100%);
}

.btn-modern-primary {
    background: linear-gradient(135deg, #F97316 0%, #FBBF24 100%);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
}

.btn-modern-primary:hover {
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.4);
}

.btn-submit-modern {
    background: linear-gradient(135deg, #F97316 0%, #FBBF24 100%);
    box-shadow: 0 5px 15px rgba(249, 115, 22, 0.3);
}

.btn-submit-modern:hover {
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
}

.form-input-modern:focus {
    border-color: #F97316;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.2);
}

.form-select-modern:focus {
    border-color: #F97316;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.2);
}

.form-textarea-modern:focus {
    border-color: #F97316;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.2);
}

.form-checkbox-modern input[type="checkbox"] {
    accent-color: #F97316;
}

.form-checkbox-modern a {
    color: #F97316;
}

/* Floating Elements */
.floating-shape-modern {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(251, 191, 36, 0.1));
}

/* Header Updates */
.header-bg {
    background-color: rgba(11, 11, 12, 0.9);
}

.mobile-menu-bg {
    background-color: rgba(11, 11, 12, 0.95);
}

.mobile-overlay {
    background-color: rgba(11, 11, 12, 0.5);
}

/* Footer Updates */
.footer-bg {
    background: linear-gradient(135deg, #0B0B0C 0%, #1a1a1a 100%);
}

.footer-accent {
    background: linear-gradient(135deg, #F97316 0%, #FBBF24 100%);
}

/* Button Hover Effects */
.btn-primary:hover {
    background-color: #EA580C;
}

.btn-secondary:hover {
    background-color: #F59E0B;
}

/* Card Hover Effects */
.card-hover:hover {
    border-color: #F97316;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.2);
}

/* Link Hover Effects */
.link-hover:hover {
    color: #F97316;
}

/* Form Validation */
.form-error {
    border-color: #EA580C;
}

.form-success {
    border-color: #F97316;
}

/* Loading States */
.loading-orange {
    background: linear-gradient(90deg, #F97316 25%, #FBBF24 50%, #F97316 75%);
}

/* Animation Updates */
@keyframes gradientShift {
    0% { 
        background-position: 0% 50%;
    }
    50% { 
        background-position: 100% 50%;
    }
    100% { 
        background-position: 0% 50%;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-modern {
        background: linear-gradient(135deg, #0B0B0C 0%, #1a1a1a 100%);
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    :root {
        --tc-orange: #F97316;
        --tc-orange-hover: #EA580C;
        --tc-yellow: #FBBF24;
        --tc-yellow-hover: #F59E0B;
        --tc-black: #0B0B0C;
        --tc-off-white: #FFF7ED;
    }
}
/* 3D Footer Design */

.footer-3d {
    background: linear-gradient(135deg, #0B0B0C 0%, #1a1a1a 50%, #0B0B0C 100%);
    position: relative;
    overflow: hidden;
    padding: 4rem 0 2rem;
    margin-top: 6rem;
}

.footer-3d::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #F97316, #FBBF24, #F97316, transparent);
    animation: footerGlow 3s ease-in-out infinite;
}

.footer-3d::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(249, 115, 22, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(251, 191, 36, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(249, 115, 22, 0.05) 0%, transparent 70%);
    z-index: 1;
}

@keyframes footerGlow {
    0%, 100% { 
        opacity: 0.5;
        transform: scaleX(1);
    }
    50% { 
        opacity: 1;
        transform: scaleX(1.1);
    }
}

.footer-content-3d {
    position: relative;
    z-index: 10;
    max-width: 7xl;
    margin: 0 auto;
    padding: 0 1rem;
}

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

.footer-brand-3d {
    position: relative;
}

.footer-logo-3d {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(249, 115, 22, 0.3);
    position: relative;
}

.footer-logo-3d::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #F97316, #FBBF24);
    border-radius: 2px;
    animation: logoUnderline 2s ease-in-out infinite;
}

@keyframes logoUnderline {
    0%, 100% { 
        width: 50px;
        opacity: 0.8;
    }
    50% { 
        width: 80px;
        opacity: 1;
    }
}

.footer-tagline-3d {
    color: #e5e7eb;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

    display: flex;
    gap: 1rem;
}

    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.3), transparent);
    transition: left 0.5s ease;
}

    left: 100%;
}

    background: rgba(249, 115, 22, 0.2);
    border-color: #F97316;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(249, 115, 22, 0.3);
}

.footer-column-3d {
    position: relative;
}

.footer-title-3d {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-title-3d::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #F97316, #FBBF24);
    border-radius: 1px;
}

.footer-links-3d {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-3d li {
    margin-bottom: 0.75rem;
}

.footer-links-3d a {
    color: #e5e7eb;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-links-3d a::before {
    content: '▶';
    position: absolute;
    left: -20px;
    color: #F97316;
    opacity: 0;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.footer-links-3d a:hover {
    color: #F97316;
    padding-left: 20px;
}

.footer-links-3d a:hover::before {
    opacity: 1;
    left: 0;
}

.footer-contact-3d {
    position: relative;
}

.contact-item-3d {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #e5e7eb;
}

.contact-icon-3d {
    width: 20px;
    height: 20px;
    margin-right: 0.75rem;
    color: #F97316;
    flex-shrink: 0;
}

.contact-text-3d {
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-bottom-3d {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 2rem;
    position: relative;
    z-index: 10;
}

.footer-policies-3d {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.policy-link-3d {
    color: #e5e7eb;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.policy-link-3d::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #F97316;
    transition: width 0.3s ease;
}

.policy-link-3d:hover {
    color: #F97316;
}

.policy-link-3d:hover::after {
    width: 100%;
}

.footer-copyright-3d {
    text-align: center;
    color: #9ca3af;
    font-size: 0.9rem;
    position: relative;
}

.footer-copyright-3d::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #F97316, transparent);
}

/* Floating Elements */
.footer-floating-3d {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 2;
}

.footer-orb-3d {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(251, 191, 36, 0.1));
    animation: footerFloat 8s ease-in-out infinite;
}

.footer-orb-3d:nth-child(1) {
    width: 60px;
    height: 180px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.footer-orb-3d:nth-child(2) {
    width: 80px;
    height: 50px;
    top: 60%;
    right: 15%;
    animation-delay: 3s;
}

.footer-orb-3d:nth-child(3) {
    width: 40px;
    height: 50px;
    bottom: 30%;
    left: 20%;
    animation-delay: 6s;
}

@keyframes footerFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        opacity: 0.6;
    }
    50% { 
        transform: translateY(-15px) rotate(180deg);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-3d {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-main-3d {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-policies-3d {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
        justify-content: center;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .footer-3d::before,
    .footer-logo-3d::after,
    .footer-title-3d::after,
    .footer-orb-3d,
    .logoUnderline,
    .footerGlow,
    .footerFloat {
        animation: none;
    }
}
/* FAQ Section Styles */

.faq-section {
    background: linear-gradient(135deg, #FFF7ED 0%, #f8fafc 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(249, 115, 22, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(251, 191, 36, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.faq-content {
    position: relative;
    z-index: 10;
    max-width: 4xl;
    margin: 0 auto;
    padding: 0 1rem;
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-title {
    font-size: 3rem;
    font-weight: 800;
    color: #0B0B0C;
    margin-bottom: 1rem;
    position: relative;
}

.faq-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #F97316, #FBBF24);
    border-radius: 2px;
}

.faq-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.faq-container {
    display: grid;
    gap: 1rem;
}

.faq-item {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: none;
}

.faq-item:hover {
    box-shadow: 0 8px 30px rgba(249, 115, 22, 0.15);
    transform: translateY(-2px);
}

.faq-question {
    padding: 1.5rem;
    background: #ffffff;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #0B0B0C;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: #F97316;
    transition: all 0.3s ease;
    font-weight: 300;
}

.faq-question.active::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-question:hover {
    background: rgba(249, 115, 22, 0.05);
    color: #F97316;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f8fafc;
}

.faq-answer-content {
    padding: 0 1.5rem 1.5rem;
    color: #6b7280;
    line-height: 1.6;
    font-size: 1rem;
}

.faq-answer-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.faq-answer-content li {
    margin-bottom: 0.5rem;
}

.faq-answer-content strong {
    color: #0B0B0C;
    font-weight: 600;
}

/* Mobile Menu Styles */
.mobile-menu {
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-menu:not(.hidden) {
    transform: translateX(0);
}

.mobile-menu-overlay {
    backdrop-filter: blur(4px);
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay:not(.hidden) {
    opacity: 1;
}

/* Services Dropdown */
.services-dropdown {
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.services-dropdown:not(.hidden) {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-section {
        padding: 4rem 0;
    }
    
    .faq-title {
        font-size: 2.5rem;
    }
    
    .faq-question {
        padding: 1.25rem;
        font-size: 1rem;
    }
    
    .faq-answer-content {
        padding: 0 1.25rem 1.25rem;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .faq-item,
    .faq-question,
    .faq-answer,
    .mobile-menu,
    .mobile-menu-overlay,
    .services-dropdown {
        transition: none;
    }
}
/* Mobile Menu Fix */

/* Mobile Menu Button */
.mobile-menu-button {
    display: none;
}

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

/* Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: rgba(11, 11, 12, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mobile-menu:not(.hidden) {
    right: 0;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay:not(.hidden) {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-header {
    padding: 0;
    border-bottom: 1px solid rgba(249, 115, 22, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(249, 115, 22, 0.2);
}

.mobile-menu-content {
    padding: 2rem 1rem;
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-links li {
    margin-bottom: 0.5rem;
}

.mobile-nav-links a {
    display: block;
    padding: 0;
    color: #e5e7eb;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-nav-links a:hover {
    background: rgba(249, 115, 22, 0.1);
    color: #F97316;
    padding-left: 1.5rem;
}

.mobile-nav-links a::before {
    content: '▶';
    position: absolute;
    left: 0.5rem;
    color: #F97316;
    opacity: 0;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.mobile-nav-links a:hover::before {
    opacity: 1;
    left: 1rem;
}

/* Services Submenu */
.mobile-services-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(249, 115, 22, 0.05);
    border-radius: 8px;
    margin-top: 0.5rem;
}

.mobile-services-submenu.active {
    max-height: 300px;
}

.mobile-services-submenu a {
    padding: 0.75rem 1rem 0.75rem 2rem;
    font-size: 1rem;
    color: #9ca3af;
}

.mobile-services-submenu a:hover {
    color: #F97316;
    background: rgba(249, 115, 22, 0.1);
}

/* Mobile CTA Buttons */
.mobile-cta-buttons {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(249, 115, 22, 0.2);
}

.mobile-cta-button {
    display: block;
    width: 100%;
    padding: 0;
    margin-bottom: 1rem;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.mobile-cta-primary {
    background: linear-gradient(135deg, #F97316 0%, #FBBF24 100%);
    color: #ffffff;
}

.mobile-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
}

.mobile-cta-secondary {
    background: transparent;
    color: #F97316;
    border: 2px solid #F97316;
}

.mobile-cta-secondary:hover {
    background: rgba(249, 115, 22, 0.1);
}

/* Services Toggle Button */
.services-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0;
    background: none;
    border: none;
    color: #e5e7eb;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.services-toggle:hover {
    background: rgba(249, 115, 22, 0.1);
    color: #F97316;
}

.services-toggle-arrow {
    transition: transform 0.3s ease;
    color: #F97316;
}

.services-toggle.active .services-toggle-arrow {
    transform: rotate(180deg);
}

/* Hide desktop elements on mobile */
@media (max-width: 768px) {
    .desktop-nav {
        display: none !important;
    }
    
    .desktop-cta {
        display: none !important;
    }
    
    .services-dropdown {
        display: none !important;
    }
}

/* Show mobile elements on mobile */
@media (min-width: 769px) {
    .mobile-menu-button {
        display: none !important;
    }
    
    .mobile-menu {
        display: none !important;
    }
    
    .mobile-menu-overlay {
        display: none !important;
    }
}
/* Toggle Menu CSS Fix */

/* Mobile Menu Button */
.mobile-menu-button {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.mobile-menu-button:hover {
    background: rgba(249, 115, 22, 0.1);
}

@media (max-width: 768px) {
    .mobile-menu-button {
        display: block;
    }
    
    .desktop-nav {
        display: none !important;
    }
    
    .desktop-cta {
        display: none !important;
    }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: rgba(11, 11, 12, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mobile-menu:not(.hidden) {
    right: 0;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay:not(.hidden) {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu Header */
.mobile-menu-header {
    padding: 0;
    border-bottom: 1px solid rgba(249, 115, 22, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    border-radius: 50%;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-close:hover {
    background: rgba(249, 115, 22, 0.2);
    color: #F97316;
}

/* Mobile Menu Content */
.mobile-menu-content {
    padding: 2rem 1rem;
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-links li {
    margin-bottom: 0.5rem;
}

.mobile-nav-links a {
    display: block;
    padding: 0;
    color: #e5e7eb;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-nav-links a:hover {
    background: rgba(249, 115, 22, 0.1);
    color: #F97316;
    padding-left: 1.5rem;
}

.mobile-nav-links a::before {
    content: '▶';
    position: absolute;
    left: 0.5rem;
    color: #F97316;
    opacity: 0;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.mobile-nav-links a:hover::before {
    opacity: 1;
    left: 1rem;
}

/* Services Submenu */
.mobile-services-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(249, 115, 22, 0.05);
    border-radius: 8px;
    margin-top: 0.5rem;
}

.mobile-services-submenu.active {
    max-height: 300px;
}

.mobile-services-submenu a {
    padding: 0.75rem 1rem 0.75rem 2rem;
    font-size: 1rem;
    color: #9ca3af;
}

.mobile-services-submenu a:hover {
    color: #F97316;
    background: rgba(249, 115, 22, 0.1);
}

/* Services Toggle Button */
.services-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0;
    background: none;
    border: none;
    color: #e5e7eb;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: left;
}

.services-toggle:hover {
    background: rgba(249, 115, 22, 0.1);
    color: #F97316;
}

.services-toggle-arrow {
    transition: transform 0.3s ease;
    color: #F97316;
    font-size: 0.8rem;
}

.services-toggle.active .services-toggle-arrow {
    transform: rotate(180deg);
}

/* Mobile CTA Buttons */
.mobile-cta-buttons {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(249, 115, 22, 0.2);
}

.mobile-cta-button {
    display: block;
    width: 100%;
    padding: 0;
    margin-bottom: 1rem;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.mobile-cta-primary {
    background: linear-gradient(135deg, #F97316 0%, #FBBF24 100%);
    color: #ffffff;
}

.mobile-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
}

.mobile-cta-secondary {
    background: transparent;
    color: #F97316;
    border: 2px solid #F97316;
}

.mobile-cta-secondary:hover {
    background: rgba(249, 115, 22, 0.1);
}

/* Desktop Services Dropdown */
.services-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0.5rem;
    width: 200px;
    background: rgba(11, 11, 12, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(249, 115, 22, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.services-dropdown:not(.hidden) {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.services-dropdown .py-2 a {
    display: block;
    padding: 0.75rem 1rem;
    color: #e5e7eb;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 4px;
    margin: 0.25rem;
}

.services-dropdown .py-2 a:hover {
    background: rgba(249, 115, 22, 0.2);
    color: #F97316;
}

/* Hide desktop elements on mobile */
@media (max-width: 768px) {
    .desktop-nav {
        display: none !important;
    }
    
    .desktop-cta {
        display: none !important;
    }
}

/* Show mobile elements on mobile */
@media (min-width: 769px) {
    .mobile-menu-button {
        display: none !important;
    }
    
    .mobile-menu {
        display: none !important;
    }
    
    .mobile-menu-overlay {
        display: none !important;
    }
}
/* Header Improvement CSS */

/* Desktop CTA Button */
.header-cta-button {
    background: linear-gradient(135deg, #F97316 0%, #FBBF24 100%);
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
    position: relative;
    overflow: hidden;
}

.header-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.header-cta-button:hover::before {
    left: 100%;
}

.header-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
    color: #ffffff;
}

/* Mobile CTA Button */
.mobile-header-cta-button {
    background: linear-gradient(135deg, #F97316 0%, #FBBF24 100%);
    color: #ffffff;
    padding: 0;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.mobile-header-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.mobile-header-cta-button:hover::before {
    left: 100%;
}

.mobile-header-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
    color: #ffffff;
}

/* Header Improvements */
.header-improved {
    background: rgba(11, 11, 12, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-logo {
    font-size: 1.75rem;
    font-weight: 800;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.header-logo:hover {
    color: #F97316;
    transform: scale(1.05);
}

.header-logo .logo-accent {
    color: #F97316;
    position: relative;
}

.header-logo .logo-accent::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #F97316, #FBBF24);
    border-radius: 1px;
    animation: logoGlow 2s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% { 
        opacity: 0.8;
        transform: scaleX(1);
    }
    50% { 
        opacity: 1;
        transform: scaleX(1.1);
    }
}

/* Navigation Links */
.nav-link {
    color: #e5e7eb;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 0;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #F97316, #FBBF24);
    border-radius: 1px;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #F97316;
}

.nav-link:hover::after {
    width: 100%;
}

/* Services Dropdown */
.services-dropdown-improved {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0.5rem;
    width: 220px;
    background: rgba(11, 11, 12, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(249, 115, 22, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.services-dropdown-improved:not(.hidden) {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.services-dropdown-improved .py-2 a {
    display: block;
    padding: 0.875rem 1.25rem;
    color: #e5e7eb;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 0.25rem;
    position: relative;
    font-weight: 500;
}

.services-dropdown-improved .py-2 a::before {
    content: '▶';
    position: absolute;
    left: 0.75rem;
    color: #F97316;
    opacity: 0;
    transition: all 0.3s ease;
    font-size: 0.7rem;
}

.services-dropdown-improved .py-2 a:hover {
    background: rgba(249, 115, 22, 0.15);
    color: #F97316;
    padding-left: 2rem;
}

.services-dropdown-improved .py-2 a:hover::before {
    opacity: 1;
    left: 1rem;
}

/* Mobile Menu Improvements */
.mobile-menu-improved {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 420px;
    height: 100vh;
    background: rgba(11, 11, 12, 0.98);
    backdrop-filter: blur(25px);
    z-index: 1000;
    transition: right 0.3s ease;
    overflow-y: auto;
    border-left: 1px solid rgba(249, 115, 22, 0.3);
}

.mobile-menu-improved:not(.hidden) {
    right: 0;
}

.mobile-menu-header-improved {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(249, 115, 22, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(249, 115, 22, 0.05);
}

.mobile-menu-logo-improved {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
}

.mobile-menu-close-improved {
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.3);
    color: #F97316;
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 50px;
}

.mobile-menu-close-improved:hover {
    background: rgba(249, 115, 22, 0.2);
    color: #ffffff;
    transform: scale(1.1);
}

/* Mobile Navigation Links */
.mobile-nav-links-improved {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-links-improved li {
    margin-bottom: 0.25rem;
}

.mobile-nav-links-improved a {
    display: block;
    padding: 1.25rem 1.5rem;
    color: #e5e7eb;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    margin: 0.25rem 1rem;
}

.mobile-nav-links-improved a::before {
    content: '▶';
    position: absolute;
    left: 1rem;
    color: #F97316;
    opacity: 0;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.mobile-nav-links-improved a:hover {
    background: rgba(249, 115, 22, 0.1);
    color: #F97316;
    padding-left: 2.5rem;
}

.mobile-nav-links-improved a:hover::before {
    opacity: 1;
    left: 1.5rem;
}

/* Services Toggle Improved */
.services-toggle-improved {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    color: #e5e7eb;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: left;
    margin: 0.25rem 1rem;
}

.services-toggle-improved:hover {
    background: rgba(249, 115, 22, 0.1);
    color: #F97316;
}

.services-toggle-arrow-improved {
    transition: transform 0.3s ease;
    color: #F97316;
    font-size: 0.8rem;
}

.services-toggle-improved.active .services-toggle-arrow-improved {
    transform: rotate(180deg);
}

/* Mobile Services Submenu Improved */
.mobile-services-submenu-improved {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(249, 115, 22, 0.05);
    border-radius: 8px;
    margin: 0.25rem 1rem;
}

.mobile-services-submenu-improved.active {
    max-height: 350px;
}

.mobile-services-submenu-improved a {
    padding: 1rem 1.5rem 1rem 3rem;
    font-size: 1rem;
    color: #9ca3af;
    margin: 0;
}

.mobile-services-submenu-improved a:hover {
    color: #F97316;
    background: rgba(249, 115, 22, 0.1);
}

/* Mobile CTA Section */
.mobile-cta-section {
    margin-top: 2rem;
    padding: 2rem 1.5rem;
    border-top: 1px solid rgba(249, 115, 22, 0.3);
    background: rgba(249, 115, 22, 0.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .desktop-nav {
        display: none !important;
    }
    
    .desktop-cta {
        display: none !important;
    }
}

@media (min-width: 769px) {
    .mobile-menu-button {
        display: none !important;
    }
    
    .mobile-menu {
        display: none !important;
    }
    
    .mobile-menu-overlay {
        display: none !important;
    }
}
/* Partners Section Improvement */

.partners-section-improved {
    background: linear-gradient(135deg, #FFF7ED 0%, #f8fafc 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.partners-section-improved::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(249, 115, 22, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(251, 191, 36, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.partners-content-improved {
    position: relative;
    z-index: 10;
    max-width: 7xl;
    margin: 0 auto;
    padding: 0 1rem;
}

.partners-header-improved {
    text-align: center;
    margin-bottom: 4rem;
}

.partners-title-improved {
    font-size: 3rem;
    font-weight: 800;
    color: #0B0B0C;
    margin-bottom: 1rem;
    position: relative;
}

.partners-title-improved::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #F97316, #FBBF24);
    border-radius: 2px;
    animation: titleGlow 2s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { 
        opacity: 0.8;
        transform: translateX(-50%) scaleX(1);
    }
    50% { 
        opacity: 1;
        transform: translateX(-50%) scaleX(1.1);
    }
}

.partners-subtitle-improved {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.partners-marquee-improved {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem 0;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.partners-track-improved {
    display: flex;
    animation: marqueeScroll 30s linear infinite;
    gap: 4rem;
    align-items: center;
}

.partners-track-improved:hover {
    animation-play-state: paused;
}

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

.partner-logo-improved {
    flex-shrink: 0;
    height: 180px;
    width: auto;
    opacity: 0.7;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
}

.partner-logo-improved:hover {
    opacity: 1;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
    transform: scale(1.1);
}

/* Duplicate track for seamless loop */
.partners-track-duplicate {
    display: flex;
    animation: marqueeScroll 30s linear infinite;
    gap: 4rem;
    align-items: center;
    position: absolute;
    top: 0;
    left: 100%;
}

.partners-track-duplicate:hover {
    animation-play-state: paused;
}

/* Stats Section */
.partners-stats-improved {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item-improved {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: none;
    transition: all 0.3s ease;
}

.stat-item-improved:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.15);
    border-color: rgba(249, 115, 22, 0.3);
}

.stat-number-improved {
    font-size: 2.5rem;
    font-weight: 800;
    color: #F97316;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #F97316, #FBBF24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label-improved {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .partners-section-improved {
        padding: 4rem 0;
    }
    
    .partners-title-improved {
        font-size: 2.5rem;
    }
    
    .partners-subtitle-improved {
        font-size: 1.1rem;
    }
    
    .partner-logo-improved {
        height: 50px;
    }
    
    .partners-track-improved,
    .partners-track-duplicate {
        gap: 2rem;
    }
    
    .partners-stats-improved {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-item-improved {
        padding: 1.5rem;
    }
    
    .stat-number-improved {
        font-size: 2rem;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .partners-track-improved,
    .partners-track-duplicate,
    .titleGlow {
        animation: none;
    }
}
/* Header Dropdown Fix and Color Update */

/* Header Color Update - Similar to Hero */
.header-improved {
    background: linear-gradient(135deg, #0B0B0C 0%, #1a1a1a 100%);
    backdrop-filter: blur(20px);
    border-bottom: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Services Dropdown Active State */
.services-dropdown-improved {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0.5rem;
    width: 220px;
    background: rgba(11, 11, 12, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(249, 115, 22, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.services-dropdown-improved:not(.hidden) {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Services Button Hover State */
.services-button-hover {
    position: relative;
}

.services-button-hover::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #F97316, #FBBF24);
    border-radius: 1px;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.services-button-hover:hover::after {
    transform: scaleX(1);
}

/* Services Dropdown Links */
.services-dropdown-improved .py-2 a {
    display: block;
    padding: 0.875rem 1.25rem;
    color: #e5e7eb;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 0.25rem;
    position: relative;
    font-weight: 500;
    font-size: 0.95rem;
}

.services-dropdown-improved .py-2 a::before {
    content: '▶';
    position: absolute;
    left: 0.75rem;
    color: #F97316;
    opacity: 0;
    transition: all 0.3s ease;
    font-size: 0.7rem;
}

.services-dropdown-improved .py-2 a:hover {
    background: rgba(249, 115, 22, 0.15);
    color: #F97316;
    padding-left: 2rem;
    transform: translateX(5px);
}

.services-dropdown-improved .py-2 a:hover::before {
    opacity: 1;
    left: 1rem;
}

/* Services Button Active State */
.services-button-active {
    color: #F97316 !important;
}

.services-button-active::after {
    transform: scaleX(1) !important;
}

/* Mobile Services Dropdown */
.mobile-services-submenu-improved {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(249, 115, 22, 0.05);
    border-radius: 8px;
    margin: 0.25rem 1rem;
}

.mobile-services-submenu-improved.active {
    max-height: 350px;
}

.mobile-services-submenu-improved a {
    padding: 1rem 1.5rem 1rem 3rem;
    font-size: 1rem;
    color: #9ca3af;
    margin: 0;
    transition: all 0.3s ease;
}

.mobile-services-submenu-improved a:hover {
    color: #F97316;
    background: rgba(249, 115, 22, 0.1);
    padding-left: 3.5rem;
}

/* Services Toggle Button Active State */
.services-toggle-improved.active {
    color: #F97316;
    background: rgba(249, 115, 22, 0.1);
}

/* Header Logo Enhancement */
.header-logo {
    font-size: 1.75rem;
    font-weight: 800;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.header-logo:hover {
    color: #F97316;
    transform: scale(1.05);
}

.header-logo .logo-accent {
    color: #F97316;
    position: relative;
}

.header-logo .logo-accent::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #F97316, #FBBF24);
    border-radius: 1px;
    animation: logoGlow 2s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% { 
        opacity: 0.8;
        transform: scaleX(1);
    }
    50% { 
        opacity: 1;
        transform: scaleX(1.1);
    }
}

/* Navigation Links Enhancement */
.nav-link {
    color: #e5e7eb;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 0;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #F97316, #FBBF24);
    border-radius: 1px;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #F97316;
}

.nav-link:hover::after {
    width: 100%;
}

/* CTA Button Enhancement */
.header-cta-button {
    background: linear-gradient(135deg, #F97316 0%, #FBBF24 100%);
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
    position: relative;
    overflow: hidden;
}

.header-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.header-cta-button:hover::before {
    left: 100%;
}

.header-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
    color: #ffffff;
}

/* Mobile Menu Enhancement */
.mobile-menu-improved {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 420px;
    height: 100vh;
    background: rgba(11, 11, 12, 0.98);
    backdrop-filter: blur(25px);
    z-index: 1000;
    transition: right 0.3s ease;
    overflow-y: auto;
    border-left: 1px solid rgba(249, 115, 22, 0.3);
}

.mobile-menu-improved:not(.hidden) {
    right: 0;
}

/* Mobile Menu Header */
.mobile-menu-header-improved {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(249, 115, 22, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(249, 115, 22, 0.05);
}

/* Mobile CTA Button */
.mobile-header-cta-button {
    background: linear-gradient(135deg, #F97316 0%, #FBBF24 100%);
    color: #ffffff;
    padding: 0;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.mobile-header-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.mobile-header-cta-button:hover::before {
    left: 100%;
}

.mobile-header-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
    color: #ffffff;
}
/* Enhanced Partners Section */

.partners-section-enhanced {
    background: linear-gradient(135deg, #FFF7ED 0%, #f8fafc 50%, #FFF7ED 100%);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.partners-section-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(249, 115, 22, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(251, 191, 36, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(249, 115, 22, 0.05) 0%, transparent 70%);
    z-index: 1;
}

.partners-section-enhanced::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(249,115,22,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
    z-index: 2;
}

.partners-content-enhanced {
    position: relative;
    z-index: 10;
    max-width: 7xl;
    margin: 0 auto;
    padding: 0 1rem;
}

.partners-header-enhanced {
    text-align: center;
    margin-bottom: 5rem;
}

.partners-title-enhanced {
    font-size: 3.5rem;
    font-weight: 800;
    color: #0B0B0C;
    margin-bottom: 1.5rem;
    position: relative;
    line-height: 1.1;
}

.partners-title-enhanced::before {
    content: '🌟';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    animation: starFloat 3s ease-in-out infinite;
}

.partners-title-enhanced::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #F97316, #FBBF24, #F97316);
    background-size: 200% 100%;
    border-radius: 2px;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes starFloat {
    0%, 100% { 
        transform: translateX(-50%) translateY(0px);
        opacity: 0.8;
    }
    50% { 
        transform: translateX(-50%) translateY(-10px);
        opacity: 1;
    }
}

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

.partners-subtitle-enhanced {
    font-size: 1.3rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 500;
}

.partners-marquee-enhanced {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 3rem 0;
    border: 2px solid rgba(249, 115, 22, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 4rem;
}

.partners-track-enhanced {
    display: flex;
    animation: marqueeScrollEnhanced 40s linear infinite;
    gap: 5rem;
    align-items: center;
}

.partners-track-enhanced:hover {
    animation-play-state: paused;
}

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

.partner-logo-enhanced {
    flex-shrink: 0;
    height: 70px;
    width: auto;
    opacity: 0.8;
    transition: all 0.4s ease;
    filter: grayscale(100%) brightness(0.9);
    border-radius: 12px;
    padding: 0;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: none;
}

.partner-logo-enhanced:hover {
    opacity: 1;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.4);
}

/* Duplicate track for seamless loop */
.partners-track-duplicate-enhanced {
    display: flex;
    animation: marqueeScrollEnhanced 40s linear infinite;
    gap: 5rem;
    align-items: center;
    position: absolute;
    top: 0;
    left: 100%;
}

.partners-track-duplicate-enhanced:hover {
    animation-play-state: paused;
}

/* Enhanced Stats Section */
.partners-stats-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.stat-item-enhanced {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 2px solid rgba(249, 115, 22, 0.1);
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stat-item-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.05), transparent);
    transition: left 0.6s ease;
}

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

.stat-item-enhanced:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.15);
    border-color: rgba(249, 115, 22, 0.3);
}

.stat-number-enhanced {
    font-size: 3rem;
    font-weight: 800;
    color: #F97316;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #F97316, #FBBF24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.stat-label-enhanced {
    font-size: 1.1rem;
    color: #6b7280;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.stat-icon-enhanced {
    font-size: 2rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

/* Testimonial Quote */
.partners-quote-enhanced {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 2px solid rgba(249, 115, 22, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    position: relative;
}

.partners-quote-enhanced::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 4rem;
    color: #F97316;
    font-family: serif;
    line-height: 1;
}

.quote-text-enhanced {
    font-size: 1.3rem;
    color: #4b5563;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.quote-author-enhanced {
    font-size: 1.1rem;
    color: #F97316;
    font-weight: 700;
}

.quote-company-enhanced {
    font-size: 1rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .partners-section-enhanced {
        padding: 6rem 0;
    }
    
    .partners-title-enhanced {
        font-size: 2.8rem;
    }
    
    .partners-subtitle-enhanced {
        font-size: 1.1rem;
    }
    
    .partner-logo-enhanced {
        height: 180px;
        padding: 0.75rem;
    }
    
    .partners-track-enhanced,
    .partners-track-duplicate-enhanced {
        gap: 3rem;
    }
    
    .partners-stats-enhanced {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-item-enhanced {
        padding: 2rem;
    }
    
    .stat-number-enhanced {
        font-size: 2.5rem;
    }
    
    .partners-quote-enhanced {
        padding: 2rem;
    }
    
    .quote-text-enhanced {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .partners-stats-enhanced {
        grid-template-columns: 1fr;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .partners-track-enhanced,
    .partners-track-duplicate-enhanced,
    .starFloat,
    .gradientShift {
        animation: none;
    }
}
/* Hero Animation Improvements */

/* Enhanced Hero Background */
.hero-modern {
    background: linear-gradient(135deg, #0B0B0C 0%, #1a1a1a 50%, #0B0B0C 100%);
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(249, 115, 22, 0.4) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(251, 191, 36, 0.3) 0%, transparent 60%),
        radial-gradient(circle at 40% 40%, rgba(249, 115, 22, 0.2) 0%, transparent 70%),
        radial-gradient(circle at 60% 70%, rgba(251, 191, 36, 0.15) 0%, transparent 80%);
    animation: heroGradientPulse 8s ease-in-out infinite;
    z-index: 1;
}

.hero-modern::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="techGrid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(249,115,22,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23techGrid)"/></svg>');
    opacity: 0.4;
    z-index: 2;
    animation: gridMove 20s linear infinite;
}

@keyframes heroGradientPulse {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        opacity: 0.8;
    }
    25% { 
        transform: scale(1.1) rotate(90deg);
        opacity: 1;
    }
    50% { 
        transform: scale(1.05) rotate(180deg);
        opacity: 0.9;
    }
    75% { 
        transform: scale(1.15) rotate(270deg);
        opacity: 1;
    }
}

@keyframes gridMove {
    0% { 
        transform: translateX(0) translateY(0);
    }
    100% { 
        transform: translateX(20px) translateY(20px);
    }
}

/* Enhanced Title Animation */
.hero-title-modern {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: titleSlideInEnhanced 1.2s ease-out;
    position: relative;
}

.hero-title-modern .gradient-text-modern {
    background: linear-gradient(135deg, #F97316 0%, #FBBF24 50%, #F97316 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShiftEnhanced 4s ease-in-out infinite;
    position: relative;
}

.hero-title-modern .gradient-text-modern::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #F97316 0%, #FBBF24 50%, #F97316 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShiftEnhanced 4s ease-in-out infinite;
    filter: blur(2px);
    opacity: 0.3;
    z-index: -1;
}

@keyframes titleSlideInEnhanced {
    0% { 
        transform: translateY(80px) scale(0.8);
        opacity: 0;
    }
    50% { 
        transform: translateY(-10px) scale(1.05);
        opacity: 0.8;
    }
    100% { 
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

@keyframes gradientShiftEnhanced {
    0% { 
        background-position: 0% 50%;
        filter: hue-rotate(0deg);
    }
    25% { 
        background-position: 50% 0%;
        filter: hue-rotate(15deg);
    }
    50% { 
        background-position: 100% 50%;
        filter: hue-rotate(30deg);
    }
    75% { 
        background-position: 50% 100%;
        filter: hue-rotate(15deg);
    }
    100% { 
        background-position: 0% 50%;
        filter: hue-rotate(0deg);
    }
}

/* Enhanced Subtitle Animation */
.hero-subtitle-modern {
    font-size: 1.4rem;
    color: #e5e7eb;
    margin-bottom: 2rem;
    max-width: 650px;
    line-height: 1.7;
    animation: subtitleSlideInEnhanced 1.2s ease-out 0.4s both;
    position: relative;
}

.hero-subtitle-modern::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, #F97316, #FBBF24);
    border-radius: 2px;
    animation: lineGrow 1s ease-out 1.5s both;
}

@keyframes subtitleSlideInEnhanced {
    0% { 
        transform: translateY(50px) translateX(-30px);
        opacity: 0;
    }
    100% { 
        transform: translateY(0) translateX(0);
        opacity: 1;
    }
}

@keyframes lineGrow {
    0% { 
        height: 0;
    }
    100% { 
        height: 100%;
    }
}

/* Enhanced Button Animations */
.hero-buttons-modern {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    animation: buttonsSlideInEnhanced 1.2s ease-out 0.8s both;
}

@keyframes buttonsSlideInEnhanced {
    0% { 
        transform: translateY(50px) scale(0.9);
        opacity: 0;
    }
    100% { 
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.btn-modern-primary {
    background: linear-gradient(135deg, #F97316 0%, #FBBF24 100%);
    color: #ffffff;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.4);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.btn-modern-primary:hover::before {
    left: 100%;
}

.btn-modern-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 45px rgba(249, 115, 22, 0.5);
    background: linear-gradient(135deg, #EA580C 0%, #F59E0B 100%);
}

.btn-modern-secondary {
    background: transparent;
    color: #ffffff;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    border: 2px solid rgba(249, 115, 22, 0.6);
    cursor: pointer;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-modern-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, #F97316, #FBBF24);
    transition: width 0.4s ease;
    z-index: -1;
}

.btn-modern-secondary:hover::before {
    width: 100%;
}

.btn-modern-secondary:hover {
    color: #ffffff;
    border-color: #F97316;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.3);
}

/* Enhanced Form Animation */
.hero-form-modern {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px);
    border-radius: 25px;
    padding: 2.5rem;
    border: 1px solid rgba(249, 115, 22, 0.2);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    animation: formSlideInEnhanced 1.2s ease-out 1.2s both;
    position: relative;
    overflow: hidden;
}

.hero-form-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(249, 115, 22, 0.05), rgba(251, 191, 36, 0.05));
    z-index: -1;
}

@keyframes formSlideInEnhanced {
    0% { 
        transform: translateY(80px) scale(0.9);
        opacity: 0;
    }
    100% { 
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

/* Enhanced Floating Elements */
.floating-elements-modern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 3;
}

.floating-shape-modern {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.15), rgba(251, 191, 36, 0.15));
    animation: floatModernEnhanced 8s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.2);
}

.floating-shape-modern:nth-child(1) {
    width: 100px;
    height: 50px;
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}

.floating-shape-modern:nth-child(2) {
    width: 140px;
    height: 140px;
    top: 55%;
    right: 12%;
    animation-delay: 2s;
}

.floating-shape-modern:nth-child(3) {
    width: 80px;
    height: 50px;
    bottom: 25%;
    left: 15%;
    animation-delay: 4s;
}

.floating-shape-modern:nth-child(4) {
    width: 60px;
    height: 180px;
    top: 30%;
    right: 30%;
    animation-delay: 1s;
}

.floating-shape-modern:nth-child(5) {
    width: 120px;
    height: 180px;
    bottom: 40%;
    right: 20%;
    animation-delay: 3s;
}

@keyframes floatModernEnhanced {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.7;
    }
    25% { 
        transform: translateY(-30px) rotate(90deg) scale(1.1);
        opacity: 1;
    }
    50% { 
        transform: translateY(-20px) rotate(180deg) scale(0.9);
        opacity: 0.8;
    }
    75% { 
        transform: translateY(-40px) rotate(270deg) scale(1.05);
        opacity: 0.9;
    }
}

/* Enhanced Form Elements */
.form-title-modern {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 2rem;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
}

.form-title-modern::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #F97316, #FBBF24);
    border-radius: 2px;
    animation: titleUnderline 2s ease-in-out infinite;
}

@keyframes titleUnderline {
    0%, 100% { 
        width: 60px;
        opacity: 0.8;
    }
    50% { 
        width: 100px;
        opacity: 1;
    }
}

/* Enhanced Input Animations */
.form-input-modern,
.form-select-modern,
.form-textarea-modern {
    width: 100%;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
}

.form-input-modern::placeholder,
.form-textarea-modern::placeholder {
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.form-input-modern:focus,
.form-select-modern:focus,
.form-textarea-modern:focus {
    outline: none;
    border-color: #F97316;
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.2);
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.form-input-modern:focus::placeholder,
.form-textarea-modern:focus::placeholder {
    color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

/* Enhanced Submit Button */
.btn-submit-modern {
    width: 100%;
    background: linear-gradient(135deg, #F97316 0%, #FBBF24 100%);
    color: #ffffff;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-submit-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-submit-modern:hover::before {
    left: 100%;
}

.btn-submit-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(249, 115, 22, 0.4);
    background: linear-gradient(135deg, #EA580C 0%, #F59E0B 100%);
}

/* Responsive Improvements */
@media (max-width: 768px) {
    .hero-title-modern {
        font-size: 3rem;
    }
    
    .hero-subtitle-modern {
        font-size: 1.2rem;
    }
    
    .hero-buttons-modern {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-modern-primary,
    .btn-modern-secondary {
        width: 100%;
        text-align: center;
    }
    
    .floating-shape-modern {
        display: none;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .hero-modern::before,
    .hero-modern::after,
    .gradient-text-modern,
    .floating-shape-modern,
    .titleSlideInEnhanced,
    .subtitleSlideInEnhanced,
    .buttonsSlideInEnhanced,
    .formSlideInEnhanced,
    .heroGradientPulse,
    .gridMove,
    .gradientShiftEnhanced,
    .floatModernEnhanced,
    .titleUnderline {
        animation: none;
    }
}
/* Logo Header Update */

.header-logo-with-image {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.header-logo-image {
    height: 45px;
    width: auto;
    transition: all 0.3s ease;
    filter: brightness(1.1);
}

.header-logo-text {
    font-size: 1.75rem;
    font-weight: 800;
    color: #ffffff;
    transition: all 0.3s ease;
    position: relative;
}

.header-logo-text .logo-accent {
    color: #F97316;
    position: relative;
}

.header-logo-text .logo-accent::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #F97316, #FBBF24);
    border-radius: 1px;
    animation: logoGlow 2s ease-in-out infinite;
}

.header-logo-with-image:hover .header-logo-image {
    transform: scale(1.1) rotate(5deg);
    filter: brightness(1.2);
}

.header-logo-with-image:hover .header-logo-text {
    color: #F97316;
    transform: scale(1.05);
}

/* Mobile Logo */
.mobile-logo-with-image {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-logo-image {
    height: 35px;
    width: auto;
    transition: all 0.3s ease;
    filter: brightness(1.1);
}

.mobile-logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    transition: all 0.3s ease;
}

.mobile-logo-text .logo-accent {
    color: #F97316;
}

.mobile-logo-with-image:hover .mobile-logo-image {
    transform: scale(1.1) rotate(5deg);
    filter: brightness(1.2);
}

.mobile-logo-with-image:hover .mobile-logo-text {
    color: #F97316;
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-logo-image {
        height: 50px;
    }
    
    .header-logo-text {
        font-size: 1.5rem;
    }
    
    .mobile-logo-image {
        height: 30px;
    }
    
    .mobile-logo-text {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .header-logo-image {
        height: 35px;
    }
    
    .header-logo-text {
        font-size: 1.3rem;
    }
    
    .mobile-logo-image {
        height: 28px;
    }
    
    .mobile-logo-text {
        font-size: 1.2rem;
    }
}
/* Logo Only Header Update */

.header-logo-image-only {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
    filter: brightness(1.1);
}

.header-logo-image-only:hover {
    transform: scale(1.1) rotate(5deg);
    filter: brightness(1.2);
}

.mobile-logo-image-only {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
    filter: brightness(1.1);
}

.mobile-logo-image-only:hover {
    transform: scale(1.1) rotate(5deg);
    filter: brightness(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-logo-image-only {
        height: 45px;
    }
    
    .mobile-logo-image-only {
        height: 35px;
    }
}

@media (max-width: 480px) {
    .header-logo-image-only {
        height: 50px;
    }
    
    .mobile-logo-image-only {
        height: 30px;
    }
}
/* Services Dropdown Activation */

/* Ensure dropdown is properly positioned and visible */
.services-dropdown-improved {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 50;
    min-width: 200px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(249, 115, 22, 0.2);
    transform: translateY(8px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.services-dropdown-improved:not(.hidden) {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.services-dropdown-improved .py-2 a {
    display: block;
    padding: 12px 20px;
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 8px;
    margin: 4px 8px;
}

.services-dropdown-improved .py-2 a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #F97316, #FBBF24);
    transition: width 0.3s ease;
    border-radius: 1px;
}

.services-dropdown-improved .py-2 a:hover {
    color: #F97316;
    background: rgba(249, 115, 22, 0.1);
    transform: translateX(4px);
}

.services-dropdown-improved .py-2 a:hover::before {
    width: 4px;
}

/* Services button hover effect */
#services-button:hover {
    color: #F97316 !important;
}

#services-button:hover svg {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

/* Mobile services submenu */
.mobile-services-submenu-improved {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-services-submenu-improved:not(.hidden) {
    max-height: 300px;
}

.mobile-services-submenu-improved a {
    display: block;
    padding: 12px 20px;
    color: #6B7280;
    text-decoration: none;
    font-size: 14px;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.mobile-services-submenu-improved a:hover {
    color: #F97316;
    background: rgba(249, 115, 22, 0.1);
    border-left-color: #F97316;
    padding-left: 30px;
}
/* Enhanced Services Dropdown */

/* Services Button */
#services-button {
    position: relative;
    transition: all 0.3s ease;
}

#services-button:hover {
    color: #F97316 !important;
}

#services-button:hover svg {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

/* Dropdown Container */
.services-dropdown-improved {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    min-width: 220px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(249, 115, 22, 0.2);
    transform: translateY(10px) scale(0.95);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.services-dropdown-improved:not(.hidden) {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Dropdown Items */
.services-dropdown-improved .py-2 {
    padding: 8px;
}

.services-dropdown-improved .py-2 a {
    display: block;
    padding: 14px 20px;
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 12px;
    margin: 2px 0;
    border-left: 4px solid transparent;
}

.services-dropdown-improved .py-2 a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #F97316, #FBBF24);
    transition: width 0.3s ease;
    border-radius: 1px;
}

.services-dropdown-improved .py-2 a:hover {
    color: #F97316;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(251, 191, 36, 0.1));
    transform: translateX(8px);
    border-left-color: #F97316;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.15);
}

.services-dropdown-improved .py-2 a:hover::before {
    width: 6px;
}

/* Mobile Services Submenu */
.mobile-services-submenu-improved {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(249, 115, 22, 0.05);
    border-radius: 8px;
    margin: 8px 0;
}

.mobile-services-submenu-improved:not(.hidden) {
    max-height: 400px;
}

.mobile-services-submenu-improved a {
    display: block;
    padding: 12px 24px;
    color: #6B7280;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-services-submenu-improved a::before {
    content: '→';
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
    color: #F97316;
}

.mobile-services-submenu-improved a:hover {
    color: #F97316;
    background: rgba(249, 115, 22, 0.1);
    border-left-color: #F97316;
    padding-left: 32px;
    transform: translateX(4px);
}

.mobile-services-submenu-improved a:hover::before {
    opacity: 1;
    transform: translateY(-50%) translateX(4px);
}

/* Services Toggle Button */
.services-toggle-improved {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 16px;
    background: none;
    border: none;
    color: #374151;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.services-toggle-improved:hover {
    color: #F97316;
    background: rgba(249, 115, 22, 0.1);
}

.services-toggle-arrow-improved {
    transition: transform 0.3s ease;
    color: #F97316;
    font-size: 12px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-dropdown-improved {
        position: static;
        transform: none;
        box-shadow: none;
        background: rgba(249, 115, 22, 0.05);
        border: none;
        border-radius: 8px;
        margin: 8px 0;
    }
    
    .services-dropdown-improved:not(.hidden) {
        transform: none;
    }
}
/* Hover Dropdown Fix */

/* Services Container Hover */
#services-container:hover #services-dropdown {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) scale(1) !important;
}

#services-container:hover #services-button {
    color: #F97316 !important;
    transform: translateY(-2px);
}

#services-container:hover #services-button svg {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

/* Ensure dropdown is always visible on hover */
#services-container:hover .services-dropdown-improved {
    display: block !important;
}

/* Smooth transitions */
#services-container {
    transition: all 0.3s ease;
}

#services-container #services-button {
    transition: all 0.3s ease;
}

#services-container #services-button svg {
    transition: transform 0.3s ease;
}

/* Dropdown positioning */
.services-dropdown-improved {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    min-width: 220px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(249, 115, 22, 0.2);
    transform: translateY(10px) scale(0.95);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

/* Show dropdown on container hover */
#services-container:hover .services-dropdown-improved {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Dropdown items styling */
.services-dropdown-improved .py-2 a {
    display: block;
    padding: 14px 20px;
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 12px;
    margin: 2px 0;
    border-left: 4px solid transparent;
}

.services-dropdown-improved .py-2 a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #F97316, #FBBF24);
    transition: width 0.3s ease;
    border-radius: 1px;
}

.services-dropdown-improved .py-2 a:hover {
    color: #F97316;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(251, 191, 36, 0.1));
    transform: translateX(8px);
    border-left-color: #F97316;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.15);
}

.services-dropdown-improved .py-2 a:hover::before {
    width: 6px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    #services-container:hover #services-dropdown {
        display: none !important;
    }
    
    .services-dropdown-improved {
        position: static;
        transform: none;
        box-shadow: none;
        background: rgba(249, 115, 22, 0.05);
        border: none;
        border-radius: 8px;
        margin: 8px 0;
    }
}
/* Mobile Menu Close Button */
.mobile-menu-close-button {
    background: none;
    border: none;
    color: #F97316;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-close-button:hover {
    background: rgba(249, 115, 22, 0.1);
    color: #EA580C;
    transform: scale(1.1);
}

.mobile-menu-close-button:active {
    transform: scale(0.95);
}

/* Mobile Menu Button */
.mobile-menu-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-button:hover {
    background: rgba(249, 115, 22, 0.1);
    transform: scale(1.05);
}

.mobile-menu-button:active {
    transform: scale(0.95);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    backdrop-filter: blur(4px);
}

/* Mobile Menu */
.mobile-menu-improved {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    height: 100%;
    background: linear-gradient(135deg, #0B0B0C 0%, #1a1a1a 100%);
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
}

.mobile-menu-improved:not(.hidden) {
    transform: translateX(0);
}

/* Mobile Menu Header */
.mobile-menu-header-improved {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid rgba(249, 115, 22, 0.2);
}

.mobile-menu-logo-improved {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-logo-image-only {
    height: 40px;
    width: auto;
}

/* Mobile Menu Content */
.mobile-menu-content {
    padding: 20px;
    height: calc(100% - 80px);
    overflow-y: auto;
}

/* Mobile Nav Links */
.mobile-nav-links-improved {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-links-improved li {
    margin-bottom: 8px;
}

.mobile-nav-links-improved a {
    display: block;
    padding: 16px 20px;
    color: #E5E7EB;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.mobile-nav-links-improved a:hover {
    color: #F97316;
    background: rgba(249, 115, 22, 0.1);
    border-left-color: #F97316;
    transform: translateX(8px);
}

/* Services Toggle Button */
.services-toggle-improved {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 20px;
    background: none;
    border: none;
    color: #E5E7EB;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 12px;
    border-left: 4px solid transparent;
}

.services-toggle-improved:hover {
    color: #F97316;
    background: rgba(249, 115, 22, 0.1);
    border-left-color: #F97316;
    transform: translateX(8px);
}

.services-toggle-arrow-improved {
    transition: transform 0.3s ease;
    color: #F97316;
    font-size: 12px;
}

/* Mobile Services Submenu */
.mobile-services-submenu-improved {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(249, 115, 22, 0.05);
    border-radius: 8px;
    margin: 8px 0;
}

.mobile-services-submenu-improved:not(.hidden) {
    max-height: 400px;
}

.mobile-services-submenu-improved a {
    display: block;
    padding: 12px 24px;
    color: #9CA3AF;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-services-submenu-improved a::before {
    content: '→';
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
    color: #F97316;
}

.mobile-services-submenu-improved a:hover {
    color: #F97316;
    background: rgba(249, 115, 22, 0.1);
    border-left-color: #F97316;
    padding-left: 32px;
    transform: translateX(4px);
}

.mobile-services-submenu-improved a:hover::before {
    opacity: 1;
    transform: translateY(-50%) translateX(4px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-improved {
        width: 100%;
    }
}
/* Enhanced Partners Section Styles */

.partners-section-improved {
    position: relative;
    background: linear-gradient(135deg, #0B0B0C 0%, #1a1a1a 50%, #0B0B0C 100%);
    overflow: hidden;
}

/* Stats Cards */
.stats-card-improved {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stats-card-improved::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.1), transparent);
    transition: left 0.6s ease;
}

.stats-card-improved:hover::before {
    left: 100%;
}

.stats-card-improved:hover {
    transform: translateY(-8px);
    border-color: rgba(249, 115, 22, 0.4);
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.15);
}

/* Marquee Container */
.marquee-container-improved {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    padding: 40px 0;
    border: none;
}

.marquee-container-improved::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #F97316, transparent);
}

.marquee-container-improved::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #FBBF24, transparent);
}

/* Marquee Track */
.marquee-track-improved {
    display: flex;
    align-items: center;
    animation: marquee-scroll 30s linear infinite;
    gap: 60px;
    padding: 0 30px;
}

.marquee-track-improved:hover {
    animation-play-state: paused;
}

/* Partner Logo Wrapper */
.partner-logo-wrapper {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

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

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

.partner-logo-wrapper:hover {
    transform: translateY(-4px) scale(1.05);
    border-color: rgba(249, 115, 22, 0.3);
    box-shadow: 0 15px 30px rgba(249, 115, 22, 0.2);
}

/* Partner Logo */
.partner-logo {
    max-width: 320px;
    max-height: 50px;
    width: auto;
    height: auto;
    /* filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6)); */
    transition: all 0.3s ease;
    opacity: 0.8;
}

.partner-logo-wrapper:hover .partner-logo {
    opacity: 1;
    filter: drop-shadow(0 0 10px rgba(249, 115, 22, 0.5));
}
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .partner-logo-wrapper {
        width: 120px;
        height: 50px;
    }
    
    .partner-logo {
        max-width: 80px;
        max-height: 30px;
    }
    
    .marquee-track-improved {
        gap: 30px;
        padding: 0 15px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .marquee-track-improved {
        animation: none;
    }
    
    .stats-card-improved:hover {
        transform: none;
    }
    
    .partner-logo-wrapper:hover {
        transform: none;
    }
}
/* Premium Services Section with Hero Theme */

.premium-services-section {
    position: relative;
    background: linear-gradient(135deg, #0B0B0C 0%, #1a1a1a 50%, #0B0B0C 100%);
    overflow: hidden;
}

/* Add Hero-style Background Effects */
.premium-services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(249, 115, 22, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(251, 191, 36, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(249, 115, 22, 0.1) 0%, transparent 70%);
    animation: modernGradient 8s ease-in-out infinite;
    z-index: 1;
}

.premium-services-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 2;
}

@keyframes modernGradient {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        opacity: 0.8;
    }
    50% { 
        transform: scale(1.1) rotate(180deg);
        opacity: 1;
    }
}

/* Service Card Premium - Updated for Dark Theme */
.service-card-premium {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 24px;
    padding: 32px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.1), transparent);
    transition: left 0.8s ease;
}

.service-card-premium:hover::before {
    left: 100%;
}

.service-card-premium:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(249, 115, 22, 0.4);
    box-shadow: 0 25px 50px rgba(249, 115, 22, 0.2);
    background: rgba(255, 255, 255, 0.12);
}

/* Service Icon Premium - Updated for Dark Theme */
.service-icon-premium {
    width: 80px;
    height: 50px;
    background: linear-gradient(135deg, #F97316, #FBBF24);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-icon-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 20px;
}

.service-card-premium:hover .service-icon-premium {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 30px rgba(249, 115, 22, 0.4);
}

.service-icon-premium svg {
    color: white;
    z-index: 1;
    position: relative;
}

/* Service Content Premium - Updated for Dark Theme */
.service-content-premium {
    flex: 1;
    margin-bottom: 24px;
}

.service-title-premium {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    transition: color 0.3s ease;
}

.service-card-premium:hover .service-title-premium {
    color: #F97316;
}

.service-description-premium {
    color: #D1D5DB;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Service Features Premium - Updated for Dark Theme */
.service-features-premium {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.service-features-premium li {
    color: #9CA3AF;
    font-size: 14px;
    margin-bottom: 8px;
    position: relative;
    padding-left: 24px;
    transition: color 0.3s ease;
}

.service-features-premium li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #F97316;
    font-weight: bold;
    font-size: 16px;
}

.service-card-premium:hover .service-features-premium li {
    color: #D1D5DB;
}

/* Service Price Premium - Updated for Dark Theme */
.service-price-premium {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
}

.price-from {
    font-size: 12px;
    color: #9CA3AF;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.price-amount {
    font-size: 32px;
    font-weight: 700;
    color: #F97316;
    line-height: 1;
}

/* Service Link Premium - Updated for Dark Theme */
.service-link-premium {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #F97316, #FBBF24);
    color: white;
    padding: 16px 24px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    justify-content: center;
    margin-top: auto;
}

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

.service-link-premium:hover::before {
    left: 100%;
}

.service-link-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(249, 115, 22, 0.4);
}

.service-link-premium svg {
    transition: transform 0.3s ease;
}

.service-link-premium:hover svg {
    transform: translateX(4px);
}

/* CTA Section - Updated for Dark Theme */
.premium-services-section .bg-gradient-to-r {
    position: relative;
    overflow: hidden;
}

.premium-services-section .bg-gradient-to-r::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent, rgba(255, 255, 255, 0.1));
    animation: cta-shimmer 3s ease-in-out infinite;
}

@keyframes cta-shimmer {
    0%, 100% {
        transform: translateX(-100%);
    }
    50% {
        transform: translateX(100%);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .premium-services-section {
        padding: 80px 0;
    }
    
    .service-card-premium {
        padding: 24px;
    }
    
    .service-icon-premium {
        width: 60px;
        height: 180px;
        margin-bottom: 20px;
    }
    
    .service-title-premium {
        font-size: 20px;
    }
    
    .service-description-premium {
        font-size: 14px;
    }
    
    .price-amount {
        font-size: 28px;
    }
    
    .service-link-premium {
        padding: 14px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .service-card-premium {
        padding: 20px;
    }
    
    .service-icon-premium {
        width: 50px;
        height: 50px;
    }
    
    .service-title-premium {
        font-size: 18px;
    }
    
    .price-amount {
        font-size: 24px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .service-card-premium:hover {
        transform: none;
    }
    
    .service-icon-premium:hover {
        transform: none;
    }
    
    .service-link-premium:hover {
        transform: none;
    }
    
    .premium-services-section .bg-gradient-to-r::before {
        animation: none;
    }
    
    .premium-services-section::before {
        animation: none;
    }
}

/* Partner Logo Hero Theme */
.partner-logo-hero-theme {
    max-width: 260px;
    max-height: 180px;
    width: auto;
    height: auto;
    transition: all 0.4s ease;
    opacity: 0.9;
    filter: brightness(1.2) contrast(1.1);
}

.partner-logo-wrapper-hero-theme:hover .partner-logo-hero-theme {
    opacity: 1;
    filter: brightness(1.3) contrast(1.2) drop-shadow(0 0 15px rgba(249, 115, 22, 0.6));
    transform: scale(1.05);
}
/* Enhanced Design Process Section */

.design-process-section {
    position: relative;
    background: linear-gradient(135deg, #0B0B0C 0%, #1a1a1a 50%, #0B0B0C 100%);
    overflow: hidden;
}

/* Process Step */
.process-step {
    position: relative;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step:hover {
    transform: translateY(-8px);
}

/* Process Step Icon */
.process-step-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    width: 120px;
    height: 180px;
}

.process-step-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 32px;
    font-weight: 700;
    color: #F97316;
    z-index: 3;
    transition: all 0.4s ease;
}

.process-step-icon-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #F97316, #FBBF24);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
}

.process-step-icon-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 50%;
}

.process-step-icon-bg svg {
    color: white;
    z-index: 2;
    position: relative;
    transition: all 0.4s ease;
}

.process-step:hover .process-step-icon-bg {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.4);
}

.process-step:hover .process-step-number {
    transform: translate(-50%, -50%) scale(1.2);
    color: white;
}

.process-step:hover .process-step-icon-bg svg {
    transform: scale(1.1);
}

/* Process Step Content */
.process-step-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 20px;
    padding: 32px 24px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.process-step-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.1), transparent);
    transition: left 0.8s ease;
}

.process-step:hover .process-step-content::before {
    left: 100%;
}

.process-step:hover .process-step-content {
    border-color: rgba(249, 115, 22, 0.4);
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.15);
    background: rgba(255, 255, 255, 0.08);
}

/* Process Step Title */
.process-step-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    transition: color 0.3s ease;
}

.process-step:hover .process-step-title {
    color: #F97316;
}

/* Process Step Description */
.process-step-description {
    color: #D1D5DB;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Process Step Features */
.process-step-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.process-step-features li {
    color: #9CA3AF;
    font-size: 14px;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
    transition: color 0.3s ease;
}

.process-step-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 0;
    color: #F97316;
    font-weight: bold;
    font-size: 16px;
}

.process-step:hover .process-step-features li {
    color: #D1D5DB;
}

/* Process Stats */
.process-stat {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 16px;
    padding: 32px 24px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.process-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.1), transparent);
    transition: left 0.8s ease;
}

.process-stat:hover::before {
    left: 100%;
}

.process-stat:hover {
    transform: translateY(-4px);
    border-color: rgba(249, 115, 22, 0.4);
    box-shadow: 0 15px 30px rgba(249, 115, 22, 0.2);
}

.process-stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #F97316;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.process-stat:hover .process-stat-number {
    transform: scale(1.1);
    color: #FBBF24;
}

.process-stat-label {
    color: #D1D5DB;
    font-size: 16px;
    font-weight: 500;
}

/* Timeline Line */
.design-process-section .absolute {
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .process-step-icon {
        width: 100px;
        height: 50px;
    }
    
    .process-step-number {
        font-size: 28px;
    }
    
    .process-step-content {
        padding: 24px 20px;
    }
    
    .process-step-title {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .design-process-section {
        padding: 80px 0;
    }
    
    .process-step-icon {
        width: 80px;
        height: 50px;
    }
    
    .process-step-number {
        font-size: 24px;
    }
    
    .process-step-content {
        padding: 20px 16px;
    }
    
    .process-step-title {
        font-size: 18px;
    }
    
    .process-step-description {
        font-size: 14px;
    }
    
    .process-stat {
        padding: 24px 20px;
    }
    
    .process-stat-number {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .process-step-icon {
        width: 70px;
        height: 70px;
    }
    
    .process-step-number {
        font-size: 20px;
    }
    
    .process-step-content {
        padding: 16px 12px;
    }
    
    .process-step-title {
        font-size: 16px;
    }
    
    .process-step-description {
        font-size: 13px;
    }
    
    .process-stat-number {
        font-size: 32px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .process-step:hover {
        transform: none;
    }
    
    .process-step-icon-bg:hover {
        transform: none;
    }
    
    .process-step:hover .process-step-number {
        transform: translate(-50%, -50%);
    }
    
    .process-step:hover .process-step-icon-bg svg {
        transform: none;
    }
    
    .process-stat:hover {
        transform: none;
    }
    
    .process-stat:hover .process-stat-number {
        transform: none;
    }
}
/* Partners Slider Section */

.partners-slider-section {
    position: relative;
    background: linear-gradient(135deg, #0B0B0C 0%, #1a1a1a 50%, #0B0B0C 100%);
    overflow: hidden;
}

/* Stats Cards Slider */
.stats-card-slider {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 20px;
    padding: 32px 24px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stats-card-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.1), transparent);
    transition: left 0.8s ease;
}

.stats-card-slider:hover::before {
    left: 100%;
}

.stats-card-slider:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: rgba(249, 115, 22, 0.4);
    box-shadow: 0 25px 50px rgba(249, 115, 22, 0.2);
}

/* Stats Icon Slider */
.stats-icon-slider {
    width: 60px;
    height: 180px;
    background: linear-gradient(135deg, #F97316, #FBBF24);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stats-icon-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 16px;
}

.stats-card-slider:hover .stats-icon-slider {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 30px rgba(249, 115, 22, 0.4);
}

.stats-icon-slider svg {
    color: white;
    z-index: 1;
    position: relative;
}

/* Partners Slider Container */
.partners-slider-container {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    padding: 50px 0;
    border: 1px solid rgba(249, 115, 22, 0.2);
    backdrop-filter: blur(20px);
}

.partners-slider-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #F97316, transparent);
}

.partners-slider-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FBBF24, transparent);
}

/* Partners Slider Wrapper */
.partners-slider-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

/* Partners Slider Track */
.partners-slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 40px;
    padding: 0 40px;
}

/* Partners Slide */
.partners-slide {
    flex: 0 0 auto;
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Partner Logo Slider */
.partner-logo-slider {
    width: 100%;
    height: 180px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.partner-logo-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.2), transparent);
    transition: left 0.8s ease;
}

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

.partner-logo-slider:hover {
    transform: translateY(-6px) scale(1.08);
    border-color: rgba(249, 115, 22, 0.4);
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.25);
    background: rgba(255, 255, 255, 0.12);
}

/* Partner Logo Image */
.partner-logo-image {
    max-width: 300px;
    max-height: 50px;
    width: auto;
    height: auto;
    transition: all 0.4s ease;
    opacity: 0.9;
    filter: brightness(1.1) contrast(1.1);
}

.partner-logo-slider:hover .partner-logo-image {
    opacity: 1;
    filter: brightness(1.2) contrast(1.2) drop-shadow(0 0 15px rgba(249, 115, 22, 0.6));
    transform: scale(1.05);
}

/* Slider Navigation */
.slider-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.slider-btn {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #F97316, #FBBF24);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.4s ease;
    pointer-events: all;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
    position: relative;
    overflow: hidden;
}

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

.slider-btn:hover::before {
    left: 100%;
}

.slider-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.4);
}

.slider-btn:active {
    transform: scale(0.95);
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot:hover {
    background: rgba(249, 115, 22, 0.5);
    transform: scale(1.2);
}

.dot.active {
    background: #F97316;
    border-color: #FBBF24;
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.5);
}

    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .partners-slider-section {
        padding: 80px 0;
    }
    
    .stats-card-slider {
        padding: 24px 20px;
    }
    
    .stats-icon-slider {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }
    
    .partners-slide {
        width: 160px;
    }
    
    .partner-logo-slider {
        height: 50px;
    }
    
    .partner-logo-image {
        max-width: 320px;
        max-height: 180px;
    }
    
    .partners-slider-track {
        gap: 30px;
        padding: 0 30px;
    }
    
    .slider-navigation {
        padding: 0 10px;
    }
    
    .slider-btn {
        width: 40px;
        height: 50px;
    }
    
    .partners-slide {
        width: 140px;
    }
    
    .partner-logo-slider {
        height: 50px;
    }
    
    .partner-logo-image {
        max-width: 260px;
        max-height: 50px;
    }
    
    .partners-slider-track {
        gap: 20px;
        padding: 0 20px;
    }
    
    .slider-btn {
        width: 35px;
        height: 35px;
    }
    
    .slider-btn svg {
        width: 20px;
        height: 20px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .partners-slider-track {
        transition: none;
    }
    
    .stats-card-slider:hover {
        transform: none;
    }
    
    .partner-logo-slider:hover {
        transform: none;
    }
    
    .slider-btn:hover {
        transform: none;
    }
    
        animation: none;
    }
    overflow: hidden;
}

/* Timeline Line Enhanced */
    position: relative;
    overflow: hidden;
}

    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #F97316, #FBBF24, #F97316);
    border-radius: 50px;
}

    0% { width: 0%; }
    50% { width: 100%; }
    100% { width: 0%; }
}

/* Process Step Enhanced */
.process-step-enhanced {
    position: relative;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.process-step-enhanced:hover {
    transform: translateY(-12px);
}

/* Process Step Icon Enhanced */
.process-step-icon-enhanced {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    width: 140px;
    height: 140px;
}

.process-step-number-enhanced {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 36px;
    font-weight: 700;
    color: #F97316;
    z-index: 3;
    transition: all 0.4s ease;
}

.process-step-icon-bg-enhanced {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #F97316, #FBBF24);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.4);
}

.process-step-icon-bg-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 50%;
}

.process-step-icon-bg-enhanced svg {
    color: white;
    z-index: 2;
    position: relative;
    transition: all 0.4s ease;
}

/* Process Step Pulse */
.process-step-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 2px solid rgba(249, 115, 22, 0.3);
    border-radius: 50%;
    animation: pulse-ring 2s ease-in-out infinite;
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.4);
        opacity: 0;
    }
}

.process-step-enhanced:hover .process-step-icon-bg-enhanced {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 25px 50px rgba(249, 115, 22, 0.5);
}

.process-step-enhanced:hover .process-step-number-enhanced {
    transform: translate(-50%, -50%) scale(1.3);
    color: white;
}

.process-step-enhanced:hover .process-step-icon-bg-enhanced svg {
    transform: scale(1.2);
}

.process-step-enhanced:hover .process-step-pulse {
    animation-duration: 1s;
}

/* Process Step Content Enhanced */
.process-step-content-enhanced {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 24px;
    padding: 36px 28px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    min-height: 320px;
}

.process-step-content-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.1), transparent);
    transition: left 0.8s ease;
}

.process-step-enhanced:hover .process-step-content-enhanced::before {
    left: 100%;
}

.process-step-enhanced:hover .process-step-content-enhanced {
    border-color: rgba(249, 115, 22, 0.5);
    box-shadow: 0 25px 50px rgba(249, 115, 22, 0.2);
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

/* Process Step Title Enhanced */
.process-step-title-enhanced {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 18px;
    transition: color 0.3s ease;
}

.process-step-enhanced:hover .process-step-title-enhanced {
    color: #F97316;
}

/* Process Step Description Enhanced */
.process-step-description-enhanced {
    color: #D1D5DB;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 24px;
}

/* Process Step Features Enhanced */
.process-step-features-enhanced {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    text-align: left;
}

.process-step-features-enhanced li {
    color: #9CA3AF;
    font-size: 14px;
    margin-bottom: 10px;
    position: relative;
    padding-left: 24px;
    transition: color 0.3s ease;
}

.process-step-features-enhanced li::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 0;
    color: #F97316;
    font-weight: bold;
    font-size: 16px;
}

.process-step-enhanced:hover .process-step-features-enhanced li {
    color: #D1D5DB;
}

/* Process Step Duration */
.process-step-duration {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 12px;
    padding: 8px 16px;
    margin-top: auto;
}

.duration-icon {
    font-size: 16px;
    margin-right: 8px;
}

.duration-text {
    color: #F97316;
    font-weight: 600;
    font-size: 14px;
}

/* Process Stats Enhanced */
.process-stat-enhanced {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 20px;
    padding: 36px 28px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-height: 200px;
}

.process-stat-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.1), transparent);
    transition: left 0.8s ease;
}

.process-stat-enhanced:hover::before {
    left: 100%;
}

.process-stat-enhanced:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(249, 115, 22, 0.5);
    box-shadow: 0 25px 50px rgba(249, 115, 22, 0.25);
}

/* Process Stat Icon Enhanced */
.process-stat-icon-enhanced {
    width: 60px;
    height: 180px;
    background: linear-gradient(135deg, #F97316, #FBBF24);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.process-stat-icon-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 16px;
}

.process-stat-enhanced:hover .process-stat-icon-enhanced {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.4);
}

.process-stat-icon-enhanced svg {
    color: white;
    z-index: 1;
    position: relative;
}

/* Process Stat Number Enhanced */
.process-stat-number-enhanced {
    font-size: 48px;
    font-weight: 700;
    color: #F97316;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.process-stat-enhanced:hover .process-stat-number-enhanced {
    transform: scale(1.1);
    color: #FBBF24;
}

/* Process Stat Label Enhanced */
.process-stat-label-enhanced {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

/* Process Stat Description Enhanced */
.process-stat-description-enhanced {
    color: #9CA3AF;
    font-size: 14px;
    font-weight: 500;
}

/* Process CTA Enhanced */
.process-cta-enhanced {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 28px;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
}

.process-cta-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #F97316, #FBBF24, #F97316);
}

.process-cta-enhanced::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.08) 0%, transparent 70%);
    animation: cta-glow-enhanced 4s ease-in-out infinite;
}

@keyframes cta-glow-enhanced {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

/* Process CTA Buttons */
.process-cta-btn-primary {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #F97316, #FBBF24);
    color: white;
    padding: 18px 32px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
}

.process-cta-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.process-cta-btn-primary:hover::before {
    left: 100%;
}

.process-cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.4);
}

.process-cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: #F97316;
    border: 2px solid #F97316;
    padding: 18px 32px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.process-cta-btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.1), transparent);
    transition: left 0.6s ease;
}

.process-cta-btn-secondary:hover::before {
    left: 100%;
}

.process-cta-btn-secondary:hover {
    background: #F97316;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(249, 115, 22, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .process-step-icon-enhanced {
        width: 120px;
        height: 180px;
    }
    
    .process-step-number-enhanced {
        font-size: 32px;
    }
    
    .process-step-content-enhanced {
        padding: 32px 24px;
        min-height: 300px;
    }
    
    .process-step-title-enhanced {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .design-process-enhanced {
        padding: 80px 0;
    }
    
    .process-step-icon-enhanced {
        width: 100px;
        height: 50px;
    }
    
    .process-step-number-enhanced {
        font-size: 28px;
    }
    
    .process-step-content-enhanced {
        padding: 28px 20px;
        min-height: 280px;
    }
    
    .process-step-title-enhanced {
        font-size: 22px;
    }
    
    .process-step-description-enhanced {
        font-size: 15px;
    }
    
    .process-stat-enhanced {
        padding: 28px 20px;
        min-height: 180px;
    }
    
    .process-stat-number-enhanced {
        font-size: 40px;
    }
    
    .process-cta-enhanced {
        padding: 40px 30px;
    }
}

@media (max-width: 480px) {
    .process-step-icon-enhanced {
        width: 80px;
        height: 50px;
    }
    
    .process-step-number-enhanced {
        font-size: 24px;
    }
    
    .process-step-content-enhanced {
        padding: 24px 16px;
        min-height: 260px;
    }
    
    .process-step-title-enhanced {
        font-size: 20px;
    }
    
    .process-step-description-enhanced {
        font-size: 14px;
    }
    
    .process-stat-number-enhanced {
        font-size: 36px;
    }
    
    .process-cta-btn-primary,
    .process-cta-btn-secondary {
        padding: 16px 24px;
        font-size: 16px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
        animation: none;
    }
    
    .process-step-pulse {
        animation: none;
    }
    
    .process-step-enhanced:hover {
        transform: none;
    }
    
    .process-step-icon-bg-enhanced:hover {
        transform: none;
    }
    
    .process-step-enhanced:hover .process-step-number-enhanced {
        transform: translate(-50%, -50%);
    }
    
    .process-step-enhanced:hover .process-step-icon-bg-enhanced svg {
        transform: none;
    }
    
    .process-stat-enhanced:hover {
        transform: none;
    }
    
    .process-stat-enhanced:hover .process-stat-number-enhanced {
        transform: none;
    }
    
    .process-cta-enhanced::after {
        animation: none;
    }
}
/* Enhanced Portfolio Section */

.portfolio-enhanced {
    position: relative;
    background: linear-gradient(135deg, #0B0B0C 0%, #1a1a1a 50%, #0B0B0C 100%);
    overflow: hidden;
}

/* Portfolio Filters Enhanced */
.portfolio-filters-enhanced {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.portfolio-filter-enhanced {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 50px;
    padding: 12px 24px;
    color: #D1D5DB;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.portfolio-filter-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.1), transparent);
    transition: left 0.6s ease;
}

.portfolio-filter-enhanced:hover::before {
    left: 100%;
}

.portfolio-filter-enhanced:hover {
    transform: translateY(-2px);
    border-color: rgba(249, 115, 22, 0.4);
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.4);
}

.portfolio-filter-enhanced.active {
    background: linear-gradient(135deg, #F97316, #FBBF24);
    color: white;
    border-color: transparent;
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
}

.filter-icon {
    font-size: 16px;
}

.filter-text {
    font-weight: 600;
}

.filter-count {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 2px 8px;
    font-size: 12px;
    font-weight: 600;
}

.portfolio-filter-enhanced.active .filter-count {
    background: rgba(255, 255, 255, 0.3);
}

/* Portfolio Grid Enhanced */
.portfolio-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

/* Portfolio Item Enhanced */
.portfolio-item-enhanced {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
}

.portfolio-item-enhanced.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-item-enhanced:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(249, 115, 22, 0.4);
    box-shadow: 0 25px 50px rgba(249, 115, 22, 0.2);
}

/* Portfolio Image Enhanced */
.portfolio-image-enhanced {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.portfolio-overlay-enhanced {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 2;
}

.portfolio-item-enhanced:hover .portfolio-overlay-enhanced {
    opacity: 1;
}

.portfolio-actions-enhanced {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.portfolio-action-btn {
    width: 44px;
    height: 44px;
    background: rgba(249, 115, 22, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.portfolio-action-btn:hover {
    background: #F97316;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.4);
}

.portfolio-category-enhanced {
    background: rgba(249, 115, 22, 0.9);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    align-self: flex-start;
    backdrop-filter: blur(10px);
}

/* Portfolio Image Background Enhanced */
.portfolio-image-bg-enhanced {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.portfolio-item-enhanced:hover .portfolio-image-bg-enhanced {
    transform: scale(1.05);
}

/* Portfolio Preview Enhanced */
.portfolio-preview-enhanced {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Browser Preview */
.preview-browser {
    width: 100%;
    max-width: 320px;
    background: transparent;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.browser-header {
    background: #f1f1f1;
    padding: 12px 16px;
    display: flex;
    align-items: center;
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
}

.browser-dots span:nth-child(1) { background: #ff5f57; }
.browser-dots span:nth-child(2) { background: #ffbd2e; }
.browser-dots span:nth-child(3) { background: #28ca42; }

.browser-content {
    padding: 20px;
    background: transparent;
}

.preview-lines {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.line {
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
}

.line.short {
    width: 60%;
}

/* Logo Preview */
.logo-preview {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.logo-shape {
    width: 60px;
    height: 180px;
    background: linear-gradient(135deg, #F97316, #FBBF24);
    border-radius: 12px;
    position: relative;
}

.logo-shape.restaurant {
    border-radius: 50%;
}

.logo-text {
    font-size: 18px;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Phone Preview */
.phone-preview {
    width: 120px;
    height: 200px;
    background: #1f2937;
    border-radius: 20px;
    padding: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: transparent;
    border-radius: 12px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.app-header {
    height: 20px;
    background: #F97316;
    border-radius: 4px;
}

.app-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.balance-card {
    height: 30px;
    background: #e5e7eb;
    border-radius: 4px;
}

.transaction-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.transaction-item {
    height: 12px;
    background: #f3f4f6;
    border-radius: 2px;
}

/* Social Preview */
    width: 100%;
    max-width: 350px;
}

    background: transparent;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.post-header {
    height: 16px;
    background: #e5e7eb;
    border-radius: 4px;
    margin-bottom: 12px;
}

.post-content {
    margin-bottom: 12px;
}

.post-line {
    height: 6px;
    background: #e5e7eb;
    border-radius: 3px;
    margin-bottom: 6px;
}

.post-line.short {
    width: 70%;
}

.post-engagement {
    display: flex;
    gap: 8px;
}

.engagement-item {
    width: 20px;
    height: 8px;
    background: #e5e7eb;
    border-radius: 2px;
}

/* Portfolio Content Enhanced */
.portfolio-content-enhanced {
    padding: 28px;
}

.portfolio-title-enhanced {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.portfolio-item-enhanced:hover .portfolio-title-enhanced {
    color: #F97316;
}

.portfolio-description-enhanced {
    color: #D1D5DB;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Portfolio Tags Enhanced */
.portfolio-tags-enhanced {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.tag {
    background: rgba(249, 115, 22, 0.1);
    color: #F97316;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid rgba(249, 115, 22, 0.2);
}

/* Portfolio Stats Enhanced */
.portfolio-stats-enhanced {
    display: flex;
    gap: 24px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-value {
    font-size: 20px;
    font-weight: 700;
    color: #F97316;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    color: #9CA3AF;
    font-weight: 500;
}

/* Portfolio CTA Enhanced */
.portfolio-cta-enhanced {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 28px;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
}

.portfolio-cta-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #F97316, #FBBF24, #F97316);
}

.portfolio-cta-enhanced::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.08) 0%, transparent 70%);
    animation: cta-glow-portfolio 4s ease-in-out infinite;
}

@keyframes cta-glow-portfolio {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

/* Portfolio CTA Buttons */
.portfolio-cta-btn-primary {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #F97316, #FBBF24);
    color: white;
    padding: 18px 32px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
}

.portfolio-cta-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.portfolio-cta-btn-primary:hover::before {
    left: 100%;
}

.portfolio-cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.4);
}

.portfolio-cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: #F97316;
    border: 2px solid #F97316;
    padding: 18px 32px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.portfolio-cta-btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.1), transparent);
    transition: left 0.6s ease;
}

.portfolio-cta-btn-secondary:hover::before {
    left: 100%;
}

.portfolio-cta-btn-secondary:hover {
    background: #F97316;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(249, 115, 22, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .portfolio-grid-enhanced {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 24px;
    }
    
    .portfolio-image-enhanced {
        height: 200px;
    }
    
    .portfolio-content-enhanced {
        padding: 24px;
    }
}

@media (max-width: 768px) {
    .portfolio-enhanced {
        padding: 80px 0;
    }
    
    .portfolio-filters-enhanced {
        gap: 12px;
    }
    
    .portfolio-filter-enhanced {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .portfolio-grid-enhanced {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .portfolio-image-enhanced {
        height: 180px;
    }
    
    .portfolio-content-enhanced {
        padding: 20px;
    }
    
    .portfolio-title-enhanced {
        font-size: 20px;
    }
    
    .portfolio-description-enhanced {
        font-size: 14px;
    }
    
    .portfolio-stats-enhanced {
        gap: 16px;
    }
    
    .stat-value {
        font-size: 18px;
    }
    
    .portfolio-cta-enhanced {
        padding: 40px 30px;
    }
}

@media (max-width: 480px) {
    .portfolio-filter-enhanced {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .filter-icon {
        font-size: 14px;
    }
    
    .portfolio-image-enhanced {
        height: 160px;
    }
    
    .portfolio-content-enhanced {
        padding: 16px;
    }
    
    .portfolio-title-enhanced {
        font-size: 18px;
    }
    
    .portfolio-description-enhanced {
        font-size: 13px;
    }
    
    .portfolio-stats-enhanced {
        gap: 12px;
    }
    
    .stat-value {
        font-size: 16px;
    }
    
    .portfolio-cta-btn-primary,
    .portfolio-cta-btn-secondary {
        padding: 16px 24px;
        font-size: 16px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .portfolio-item-enhanced {
        transition: none;
    }
    
    .portfolio-item-enhanced:hover {
        transform: none;
    }
    
    .portfolio-image-bg-enhanced:hover {
        transform: none;
    }
    
    .portfolio-cta-enhanced::after {
        animation: none;
    }
}
/* Enhanced Our Work Section */

.our-work-enhanced {
    position: relative;
    background: linear-gradient(135deg, #0B0B0C 0%, #1a1a1a 50%, #0B0B0C 100%);
    overflow: hidden;
}

/* Animated Background Shapes */
.work-bg-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: work-shape-float 20s ease-in-out infinite;
}

.work-bg-shape-1 {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, #F97316, #FBBF24);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.work-bg-shape-2 {
    width: 150px;
    height: 180px;
    background: linear-gradient(45deg, #FBBF24, #F97316);
    top: 60%;
    right: 15%;
    animation-delay: 7s;
}

.work-bg-shape-3 {
    width: 100px;
    height: 50px;
    background: linear-gradient(45deg, #F97316, #FBBF24);
    top: 30%;
    right: 30%;
    animation-delay: 14s;
}

@keyframes work-shape-float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.1;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.2;
    }
}

/* Work Title Underline */
.work-title-underline {
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #F97316, #FBBF24, #F97316);
    border-radius: 2px;
    animation: work-underline-glow 3s ease-in-out infinite;
}

@keyframes work-underline-glow {
    0%, 100% {
        opacity: 0.8;
        transform: scaleX(1);
    }
    50% {
        opacity: 1;
        transform: scaleX(1.05);
    }
}

/* Work Filters Enhanced */
.work-filters-enhanced {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.work-filter-enhanced {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 50px;
    padding: 12px 24px;
    color: #D1D5DB;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.work-filter-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.1), transparent);
    transition: left 0.6s ease;
}

.work-filter-enhanced:hover::before {
    left: 100%;
}

.work-filter-enhanced:hover {
    transform: translateY(-2px);
    border-color: rgba(249, 115, 22, 0.4);
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.4);
}

.work-filter-enhanced.active {
    background: linear-gradient(135deg, #F97316, #FBBF24);
    color: white;
    border-color: transparent;
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
}

.filter-icon {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.work-filter-enhanced:hover .filter-icon {
    transform: scale(1.2);
}

.filter-text {
    font-weight: 600;
}

.filter-count {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 2px 8px;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.work-filter-enhanced.active .filter-count {
    background: rgba(255, 255, 255, 0.3);
}

.filter-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(249, 115, 22, 0.1), transparent);
    border-radius: 50px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.work-filter-enhanced:hover .filter-glow {
    opacity: 1;
}

/* Work Grid Enhanced */
.work-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

/* Work Item Enhanced */
.work-item-enhanced {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    opacity: 0;
    transform: translateY(30px);
}

.work-item-enhanced.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.work-item-enhanced:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(249, 115, 22, 0.4);
    box-shadow: 0 25px 50px rgba(249, 115, 22, 0.2);
}

/* Work Image Enhanced */
.work-image-enhanced {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.work-overlay-enhanced {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 2;
}

.work-item-enhanced:hover .work-overlay-enhanced {
    opacity: 1;
}

.work-actions-enhanced {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.work-action-btn {
    width: 44px;
    height: 44px;
    background: rgba(249, 115, 22, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.work-action-btn:hover {
    background: #F97316;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.4);
}

.work-category-enhanced {
    background: rgba(249, 115, 22, 0.9);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    align-self: flex-start;
    backdrop-filter: blur(10px);
}

/* Work Image Background Enhanced */
.work-image-bg-enhanced {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.work-item-enhanced:hover .work-image-bg-enhanced {
    transform: scale(1.05);
}

/* Work Preview Enhanced */
.work-preview-enhanced {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Browser Preview */
.preview-browser {
    width: 100%;
    max-width: 320px;
    background: transparent;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.browser-header {
    background: #f1f1f1;
    padding: 12px 16px;
    display: flex;
    align-items: center;
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
}

.browser-dots span:nth-child(1) { background: #ff5f57; }
.browser-dots span:nth-child(2) { background: #ffbd2e; }
.browser-dots span:nth-child(3) { background: #28ca42; }

.browser-content {
    padding: 20px;
    background: transparent;
}

.preview-lines {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.line {
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
}

.line.short {
    width: 60%;
}

/* Logo Preview */
.logo-preview {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.logo-shape {
    width: 60px;
    height: 180px;
    background: linear-gradient(135deg, #F97316, #FBBF24);
    border-radius: 12px;
    position: relative;
}

.logo-shape.restaurant {
    border-radius: 50%;
}

.logo-text {
    font-size: 18px;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Phone Preview */
.phone-preview {
    width: 120px;
    height: 200px;
    background: #1f2937;
    border-radius: 20px;
    padding: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: transparent;
    border-radius: 12px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.app-header {
    height: 20px;
    background: #F97316;
    border-radius: 4px;
}

.app-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.balance-card {
    height: 30px;
    background: #e5e7eb;
    border-radius: 4px;
}

.transaction-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.transaction-item {
    height: 12px;
    background: #f3f4f6;
    border-radius: 2px;
}

/* Social Preview */
    width: 100%;
    max-width: 350px;
}

    background: transparent;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.post-header {
    height: 16px;
    background: #e5e7eb;
    border-radius: 4px;
    margin-bottom: 12px;
}

.post-content {
    margin-bottom: 12px;
}

.post-line {
    height: 6px;
    background: #e5e7eb;
    border-radius: 3px;
    margin-bottom: 6px;
}

.post-line.short {
    width: 70%;
}

.post-engagement {
    display: flex;
    gap: 8px;
}

.engagement-item {
    width: 20px;
    height: 8px;
    background: #e5e7eb;
    border-radius: 2px;
}

/* Work Content Enhanced */
.work-content-enhanced {
    padding: 28px;
}

.work-title-enhanced {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.work-item-enhanced:hover .work-title-enhanced {
    color: #F97316;
}

.work-description-enhanced {
    color: #D1D5DB;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Work Tags Enhanced */
.work-tags-enhanced {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.tag {
    background: rgba(249, 115, 22, 0.1);
    color: #F97316;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid rgba(249, 115, 22, 0.2);
    transition: all 0.3s ease;
}

.work-item-enhanced:hover .tag {
    background: rgba(249, 115, 22, 0.2);
    border-color: rgba(249, 115, 22, 0.4);
}

/* Work Stats Enhanced */
.work-stats-enhanced {
    display: flex;
    gap: 24px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-value {
    font-size: 20px;
    font-weight: 700;
    color: #F97316;
    margin-bottom: 4px;
    transition: all 0.3s ease;
}

.work-item-enhanced:hover .stat-value {
    transform: scale(1.1);
    color: #FBBF24;
}

.stat-label {
    font-size: 12px;
    color: #9CA3AF;
    font-weight: 500;
}

/* Work CTA Enhanced */
.work-cta-enhanced {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 28px;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
}

.work-cta-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #F97316, #FBBF24, #F97316);
}

.work-cta-enhanced::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.08) 0%, transparent 70%);
    animation: work-cta-glow 4s ease-in-out infinite;
}

@keyframes work-cta-glow {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

/* Work CTA Buttons */
.work-cta-btn-primary {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #F97316, #FBBF24);
    color: white;
    padding: 18px 32px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
}

.work-cta-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.work-cta-btn-primary:hover::before {
    left: 100%;
}

.work-cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.4);
}

.work-cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: #F97316;
    border: 2px solid #F97316;
    padding: 18px 32px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.work-cta-btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.1), transparent);
    transition: left 0.6s ease;
}

.work-cta-btn-secondary:hover::before {
    left: 100%;
}

.work-cta-btn-secondary:hover {
    background: #F97316;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(249, 115, 22, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .work-grid-enhanced {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 24px;
    }
    
    .work-image-enhanced {
        height: 200px;
    }
    
    .work-content-enhanced {
        padding: 24px;
    }
}

@media (max-width: 768px) {
    .our-work-enhanced {
        padding: 80px 0;
    }
    
    .work-filters-enhanced {
        gap: 12px;
    }
    
    .work-filter-enhanced {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .work-grid-enhanced {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .work-image-enhanced {
        height: 180px;
    }
    
    .work-content-enhanced {
        padding: 20px;
    }
    
    .work-title-enhanced {
        font-size: 20px;
    }
    
    .work-description-enhanced {
        font-size: 14px;
    }
    
    .work-stats-enhanced {
        gap: 16px;
    }
    
    .stat-value {
        font-size: 18px;
    }
    
    .work-cta-enhanced {
        padding: 40px 30px;
    }
}

@media (max-width: 480px) {
    .work-filter-enhanced {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .filter-icon {
        font-size: 14px;
    }
    
    .work-image-enhanced {
        height: 160px;
    }
    
    .work-content-enhanced {
        padding: 16px;
    }
    
    .work-title-enhanced {
        font-size: 18px;
    }
    
    .work-description-enhanced {
        font-size: 13px;
    }
    
    .work-stats-enhanced {
        gap: 12px;
    }
    
    .stat-value {
        font-size: 16px;
    }
    
    .work-cta-btn-primary,
    .work-cta-btn-secondary {
        padding: 16px 24px;
        font-size: 16px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .work-item-enhanced {
        transition: none;
    }
    
    .work-item-enhanced:hover {
        transform: none;
    }
    
    .work-image-bg-enhanced:hover {
        transform: none;
    }
    
    .work-cta-enhanced::after {
        animation: none;
    }
    
    .work-bg-shape {
        animation: none;
    }
    
    .work-title-underline {
        animation: none;
    }
}

/* Enhanced Footer Styles */
.footer-enhanced {
    background: linear-gradient(135deg, #0B0B0C 0%, #1a1a1a 50%, #0B0B0C 100%);
    position: relative;
    overflow: hidden;
    margin-top: 6rem;
}

.footer-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #F97316, #FBBF24, #F97316, transparent);
    animation: footerGlow 3s ease-in-out infinite;
}

.footer-enhanced::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(249, 115, 22, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(251, 191, 36, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(249, 115, 22, 0.05) 0%, transparent 70%);
    z-index: 1;
}

/* Trust Indicators Section */
.trust-indicators-section {
    padding: 4rem 0;
    position: relative;
    z-index: 10;
    border-bottom: 1px solid rgba(249, 115, 22, 0.2);
}

.trust-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    text-align: center;
    background: linear-gradient(135deg, #F97316, #FBBF24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trust-subtitle {
    font-size: 1.2rem;
    color: #e5e7eb;
    text-align: center;
    margin-bottom: 3rem;
}

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

.trust-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 0;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.trust-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.1), transparent);
    transition: left 0.6s;
}

.trust-badge:hover::before {
    left: 100%;
}

.trust-badge:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: rgba(249, 115, 22, 0.4);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.2);
}

/* Trustpilot Widget */
.trustpilot-widget {
    color: #ffffff;
}

.trustpilot-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.trustpilot-text {
    font-weight: 600;
    color: #00B67A;
}

.trustpilot-stars,
.google-stars,
.clutch-stars {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.star {
    color: #FFD700;
    font-size: 1.5rem;
}

.trustpilot-rating,
.google-rating,
.clutch-rating {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.trustpilot-reviews,
.google-reviews,
.clutch-reviews {
    font-size: 0.9rem;
    color: #e5e7eb;
}

/* Google Widget */
.google-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.google-text {
    font-weight: 600;
    color: #4285F4;
}

/* Clutch Widget */
.clutch-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.clutch-text {
    font-weight: 600;
    color: #FF6B35;
}

/* Award Widget */
.award-widget {
    color: #ffffff;
}

.award-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.award-text {
    font-weight: 600;
    color: #FFD700;
}

.award-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.award-year {
    font-size: 0.9rem;
    color: #e5e7eb;
}

/* Trust Stats */
.trust-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.trust-stat {
    padding: 1.5rem;
    background: rgba(249, 115, 22, 0.1);
    border-radius: 0;
    border: 1px solid rgba(249, 115, 22, 0.2);
    transition: all 0.3s ease;
}

.trust-stat:hover {
    transform: translateY(-3px);
    background: rgba(249, 115, 22, 0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #F97316;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #e5e7eb;
    font-weight: 500;
}

/* Main Footer */
.footer-main {
    padding: 4rem 0;
    position: relative;
    z-index: 10;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 200px 200px 300px;
    gap: 3rem;
}

/* Footer Brand */
.footer-brand {
    max-width: 400px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    width: 40px;
    height: 50px;
}

.footer-logo-text {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(249, 115, 22, 0.3);
}

.footer-tagline {
    color: #e5e7eb;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Newsletter */
.newsletter-signup {
    margin-bottom: 2rem;
}

.newsletter-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 0;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: #F97316;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.newsletter-input::placeholder {
    color: #9ca3af;
}

.newsletter-btn {
    padding: 0.75rem;
    background: linear-gradient(135deg, #F97316, #FBBF24);
    border: none;
    border-radius: 0;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(249, 115, 22, 0.4);
}

/* Social Links */
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 50%;
    color: #e5e7eb;
    text-decoration: none;
    transition: all 0.3s ease;
}

    background: linear-gradient(135deg, #F97316, #FBBF24);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(249, 115, 22, 0.4);
}

/* Footer Columns */
.footer-column {
    min-width: 200px;
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #F97316, #FBBF24);
    border-radius: 1px;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #e5e7eb;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: #F97316;
    padding-left: 0.5rem;
}

.footer-links a::before {
    content: '→';
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Contact Info */
.footer-contact {
    min-width: 300px;
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 0;
    background: rgba(249, 115, 22, 0.05);
    border-radius: 0;
    border: none;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(249, 115, 22, 0.1);
    border-color: rgba(249, 115, 22, 0.2);
}

.contact-icon {
    width: 20px;
    height: 20px;
    color: #F97316;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-label {
    font-size: 0.85rem;
    color: #9ca3af;
    font-weight: 500;
}

.contact-value {
    font-size: 0.95rem;
    color: #e5e7eb;
    font-weight: 600;
}

/* Business Hours */
    background: rgba(249, 115, 22, 0.05);
    border: none;
    border-radius: 0.75rem;
    padding: 1.5rem;
}

.hours-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(249, 115, 22, 0.1);
}

    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

    font-size: 0.9rem;
    color: #e5e7eb;
    font-weight: 500;
}

    font-size: 0.9rem;
    color: #F97316;
    font-weight: 600;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(249, 115, 22, 0.2);
    padding: 2rem 0;
    position: relative;
    z-index: 10;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-policies {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.policy-link {
    color: #e5e7eb;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.policy-link:hover {
    color: #F97316;
}

.footer-copyright {
    flex: 1;
    text-align: center;
}

.footer-copyright p {
    color: #e5e7eb;
    font-size: 0.9rem;
    margin: 0;
}

.footer-certifications {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 0;
    font-size: 0.8rem;
    color: #e5e7eb;
}

/* Floating Elements */
.footer-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 2;
}

.floating-orb {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.orb-1 {
    width: 80px;
    height: 50px;
    background: linear-gradient(45deg, #F97316, #FBBF24);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 120px;
    height: 180px;
    background: linear-gradient(45deg, #FBBF24, #F97316);
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.orb-3 {
    width: 60px;
    height: 180px;
    background: linear-gradient(45deg, #F97316, #FBBF24);
    bottom: 20%;
    left: 70%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #F97316, #FBBF24);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-brand {
        max-width: none;
    }
    
    .footer-contact {
        min-width: auto;
    }
}

@media (max-width: 768px) {
    .trust-title {
        font-size: 2rem;
    }
    
    .trust-badges-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .trust-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-policies {
        justify-content: center;
    }
    
    .footer-certifications {
        justify-content: center;
    }
    
    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .trust-indicators-section {
        padding: 2rem 0;
    }
    
    .trust-title {
        font-size: 1.75rem;
    }
    
    .trust-subtitle {
        font-size: 1rem;
    }
    
    .trust-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .footer-main {
        padding: 2rem 0;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 0.75rem;
    }
    
        justify-content: center;
    }
    
    .footer-policies {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Animation Keyframes */
@keyframes footerGlow {
    0%, 100% { 
        opacity: 0.5;
        transform: scaleX(1);
    }
    50% { 
        opacity: 1;
        transform: scaleX(1.1);
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus Styles for Accessibility */
.newsletter-input:focus,
.footer-links a:focus,
.policy-link:focus,
.back-to-top:focus {
    outline: 2px solid #F97316;
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .trust-badge {
        border-width: 2px;
    }
    
    .footer-links a:hover {
        text-decoration: underline;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .floating-orb,
    .back-to-top,
    .trust-badge::before {
        animation: none;
    }
    
    .trust-badge:hover,
    .trust-stat:hover,
    .newsletter-btn:hover,
    .back-to-top:hover {
        transform: none;
    }
}

/* Portfolio Cards Visibility Fix */
.work-item-enhanced {
    opacity: 1 !important;
    transform: translateY(0) !important;
    animation: fadeInUp 0.6s ease-out forwards;
}

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

/* Ensure portfolio grid is visible */
.work-grid-enhanced {
    display: grid !important;
    visibility: visible !important;
}

/* Portfolio item hover effects */
.work-item-enhanced:hover {
    transform: translateY(-12px) scale(1.02) !important;
    border-color: rgba(249, 115, 22, 0.4);
    box-shadow: 0 25px 50px rgba(249, 115, 22, 0.2);
}

/* Portfolio filter buttons */
.work-filter-enhanced {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 50px;
    padding: 12px 24px;
    color: #e5e7eb;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.work-filter-enhanced:hover,
.work-filter-enhanced.active {
    background: linear-gradient(135deg, #F97316, #FBBF24);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
}

.work-filter-enhanced .filter-icon {
    margin-right: 8px;
    font-size: 16px;
}

.work-filter-enhanced .filter-text {
    font-weight: 600;
    margin-right: 8px;
}

.work-filter-enhanced .filter-count {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

/* Portfolio content styling */
.work-content-enhanced {
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
}

.work-title-enhanced {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.3;
}

.work-description-enhanced {
    color: #e5e7eb;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 16px;
}

.work-tags-enhanced {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.work-tags-enhanced .tag {
    background: rgba(249, 115, 22, 0.2);
    color: #F97316;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(249, 115, 22, 0.3);
}

.work-stats-enhanced {
    display: flex;
    gap: 16px;
}

.work-stats-enhanced .stat {
    text-align: center;
}

.work-stats-enhanced .stat-value {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: #F97316;
    margin-bottom: 4px;
}

.work-stats-enhanced .stat-label {
    font-size: 0.8rem;
    color: #9ca3af;
    font-weight: 500;
}

/* CTA Buttons */
.work-cta-btn-primary,
.work-cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.work-cta-btn-primary {
    background: linear-gradient(135deg, #F97316, #FBBF24);
    color: white;
    border: none;
}

.work-cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.4);
}

.work-cta-btn-secondary {
    background: transparent;
    color: #e5e7eb;
    border: 2px solid rgba(249, 115, 22, 0.5);
}

.work-cta-btn-secondary:hover {
    background: rgba(249, 115, 22, 0.1);
    border-color: #F97316;
    color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .work-grid-enhanced {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .work-item-enhanced {
        margin-bottom: 0;
    }
    
    .work-filters-enhanced {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }
    
    .work-filter-enhanced {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Debug Portfolio Cards - Force Visibility */
.work-item-enhanced {
    opacity: 1 !important;
    transform: translateY(0) !important;
    visibility: visible !important;
    display: block !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 2px solid #F97316 !important;
    min-height: 400px !important;
}

.work-grid-enhanced {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 24px !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.work-content-enhanced {
    background: rgba(0, 0, 0, 0.3) !important;
    padding: 20px !important;
}

.work-title-enhanced {
    color: #ffffff !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    margin-bottom: 12px !important;
}

.work-description-enhanced {
    color: #e5e7eb !important;
    font-size: 1rem !important;
    margin-bottom: 16px !important;
}

/* Make sure the section is visible */
.our-work-enhanced {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Portfolio filters */
.work-filters-enhanced {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 12px !important;
    margin-bottom: 32px !important;
}

.work-filter-enhanced {
    display: inline-flex !important;
    align-items: center !important;
    padding: 12px 24px !important;
    background: rgba(249, 115, 22, 0.2) !important;
    border: 1px solid rgba(249, 115, 22, 0.5) !important;
    border-radius: 50px !important;
    color: #e5e7eb !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
}

.work-filter-enhanced:hover,
.work-filter-enhanced.active {
    background: linear-gradient(135deg, #F97316, #FBBF24) !important;
    color: white !important;
    border-color: transparent !important;
    transform: translateY(-2px) !important;
}

/* Force visibility for all portfolio elements */
.work-image-enhanced,
.work-overlay-enhanced,
.work-image-bg-enhanced,
.work-preview-enhanced,
.preview-browser,
.browser-header,
.browser-content,
.preview-lines,
.line {
    display: block !important;
    visibility: visible !important;
}

.browser-dots {
    display: flex !important;
    gap: 6px !important;
}

.browser-dots span {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50% !important;
    background: #ddd !important;
}

.browser-dots span:nth-child(1) { background: #ff5f57 !important; }
.browser-dots span:nth-child(2) { background: #ffbd2e !important; }
.browser-dots span:nth-child(3) { background: #28ca42 !important; }

.line {
    height: 8px !important;
    background: #e5e7eb !important;
    border-radius: 4px !important;
    margin-bottom: 8px !important;
}

.line.short {
    width: 60% !important;
}

/* Override Tailwind CSS conflicts */
.our-work-enhanced .work-grid-enhanced.grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 24px !important;
    margin-bottom: 32px !important;
}

.our-work-enhanced .work-item-enhanced {
    opacity: 1 !important;
    transform: translateY(0) !important;
    visibility: visible !important;
    display: block !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(249, 115, 22, 0.2) !important;
    border-radius: 24px !important;
    overflow: hidden !important;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    min-height: 400px !important;
}

.our-work-enhanced .work-item-enhanced:hover {
    transform: translateY(-12px) scale(1.02) !important;
    border-color: rgba(249, 115, 22, 0.4) !important;
    box-shadow: 0 25px 50px rgba(249, 115, 22, 0.2) !important;
}

.our-work-enhanced .work-image-enhanced {
    position: relative !important;
    height: 240px !important;
    overflow: hidden !important;
}

.our-work-enhanced .work-content-enhanced {
    padding: 24px !important;
    background: rgba(255, 255, 255, 0.05) !important;
}

.our-work-enhanced .work-title-enhanced {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin-bottom: 12px !important;
    line-height: 1.3 !important;
}

.our-work-enhanced .work-description-enhanced {
    color: #e5e7eb !important;
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
    margin-bottom: 16px !important;
}

.our-work-enhanced .work-tags-enhanced {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    margin-bottom: 16px !important;
}

.our-work-enhanced .work-tags-enhanced .tag {
    background: rgba(249, 115, 22, 0.2) !important;
    color: #F97316 !important;
    padding: 6px 12px !important;
    border-radius: 20px !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    border: 1px solid rgba(249, 115, 22, 0.3) !important;
}

.our-work-enhanced .work-stats-enhanced {
    display: flex !important;
    gap: 16px !important;
}

.our-work-enhanced .work-stats-enhanced .stat {
    text-align: center !important;
}

.our-work-enhanced .work-stats-enhanced .stat-value {
    display: block !important;
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    color: #F97316 !important;
    margin-bottom: 4px !important;
}

.our-work-enhanced .work-stats-enhanced .stat-label {
    font-size: 0.8rem !important;
    color: #9ca3af !important;
    font-weight: 500 !important;
}

/* Portfolio filters with higher specificity */
.our-work-enhanced .work-filters-enhanced {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 12px !important;
    margin-bottom: 32px !important;
}

.our-work-enhanced .work-filter-enhanced {
    display: inline-flex !important;
    align-items: center !important;
    padding: 12px 24px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(249, 115, 22, 0.3) !important;
    border-radius: 50px !important;
    color: #e5e7eb !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    position: relative !important;
    overflow: hidden !important;
}

.our-work-enhanced .work-filter-enhanced:hover,
.our-work-enhanced .work-filter-enhanced.active {
    background: linear-gradient(135deg, #F97316, #FBBF24) !important;
    color: white !important;
    border-color: transparent !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3) !important;
}

.our-work-enhanced .work-filter-enhanced .filter-icon {
    margin-right: 8px !important;
    font-size: 16px !important;
}

.our-work-enhanced .work-filter-enhanced .filter-text {
    font-weight: 600 !important;
    margin-right: 8px !important;
}

.our-work-enhanced .work-filter-enhanced .filter-count {
    background: rgba(255, 255, 255, 0.2) !important;
    padding: 4px 8px !important;
    border-radius: 12px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
}

/* Premium Footer Styles */
.premium-footer {
    background: linear-gradient(135deg, #0B0B0C 0%, #1a1a1a 50%, #0B0B0C 100%);
    position: relative;
    overflow: hidden;
    margin-top: 6rem;
}

/* Animated Background */
.footer-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(90deg, transparent, #F97316, #FBBF24, #F97316, transparent);
    animation: wave 3s ease-in-out infinite;
}

@keyframes wave {
    0%, 100% { 
        opacity: 0.5;
        transform: scaleX(1);
    }
    50% { 
        opacity: 1;
        transform: scaleX(1.1);
    }
}

.footer-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #F97316;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 60%;
    left: 20%;
    animation-delay: 2s;
}

.particle:nth-child(3) {
    top: 40%;
    right: 15%;
    animation-delay: 4s;
}

.particle:nth-child(4) {
    bottom: 30%;
    left: 70%;
    animation-delay: 1s;
}

.particle:nth-child(5) {
    top: 80%;
    right: 30%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
}

/* Trust Section */
.trust-section {
    padding: 4rem 0;
    position: relative;
    z-index: 10;
    border-bottom: 1px solid rgba(249, 115, 22, 0.2);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

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

.trust-heading {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #F97316, #FBBF24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trust-subtitle {
    font-size: 1.2rem;
    color: #e5e7eb;
    margin-bottom: 3rem;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 0;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 200px;
}

.trust-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.1), transparent);
    transition: left 0.6s;
}

.trust-badge:hover::before {
    left: 100%;
}

.trust-badge:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: rgba(249, 115, 22, 0.4);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.2);
}

.badge-icon {
    margin-bottom: 1rem;
}

.badge-content {
    color: #ffffff;
}

.badge-stars {
    font-size: 1.5rem;
    color: #FFD700;
    margin-bottom: 0.5rem;
}

.badge-rating {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.badge-text {
    font-size: 0.9rem;
    color: #e5e7eb;
}

/* Main Footer */
.footer-main {
    padding: 4rem 0;
    position: relative;
    z-index: 10;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
}

/* Brand Section */
.footer-brand {
    max-width: 400px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 10px;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    text-shadow: 0 2px 10px rgba(249, 115, 22, 0.3);
}

.brand-tagline {
    font-size: 0.9rem;
    color: #F97316;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.brand-description {
    color: #e5e7eb;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Social Media */
    margin-bottom: 2rem;
}

    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 50%;
    color: #e5e7eb;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #F97316, #FBBF24);
    opacity: 0;
    transition: opacity 0.3s ease;
}

    opacity: 1;
}

    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(249, 115, 22, 0.4);
    color: white;
}

    position: relative;
    z-index: 1;
}

/* Footer Columns */
.footer-column {
    min-width: 200px;
}

.column-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    position: relative;
}

.column-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #F97316, #FBBF24);
    border-radius: 1px;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #e5e7eb;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: #F97316;
    padding-left: 0.5rem;
}

.footer-links a::before {
    content: '→';
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Contact Info */
.footer-contact {
    min-width: 300px;
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 0;
    background: rgba(249, 115, 22, 0.05);
    border-radius: 0;
    border: none;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(249, 115, 22, 0.1);
    border-color: rgba(249, 115, 22, 0.2);
}

.contact-icon {
    width: 20px;
    height: 20px;
    color: #F97316;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-label {
    font-size: 0.85rem;
    color: #9ca3af;
    font-weight: 500;
}

.contact-value {
    font-size: 0.95rem;
    color: #e5e7eb;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-value:hover {
    color: #F97316;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(249, 115, 22, 0.2);
    padding: 2rem 0;
    position: relative;
    z-index: 10;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright p {
    color: #e5e7eb;
    font-size: 0.9rem;
    margin: 0;
}

.footer-links-bottom {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links-bottom a {
    color: #e5e7eb;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-links-bottom a:hover {
    color: #F97316;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #F97316, #FBBF24);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-brand {
        max-width: none;
    }
    
    .footer-contact {
        min-width: auto;
    }
}

@media (max-width: 768px) {
    .trust-heading {
        font-size: 2rem;
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .trust-badge {
        min-width: 250px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-links-bottom {
        justify-content: center;
    }
    
    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .trust-section {
        padding: 2rem 0;
    }
    
    .trust-heading {
        font-size: 1.75rem;
    }
    
    .trust-subtitle {
        font-size: 1rem;
    }
    
    .footer-main {
        padding: 2rem 0;
    }
    
        justify-content: center;
    }
    
    .footer-links-bottom {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus Styles for Accessibility */
.footer-links a:focus,
.footer-links-bottom a:focus,
.back-to-top:focus {
    outline: 2px solid #F97316;
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .trust-badge {
        border-width: 2px;
    }
    
    .footer-links a:hover {
        text-decoration: underline;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .footer-wave,
    .particle,
    .back-to-top {
        animation: none;
    }
    
    .trust-badge:hover,
    .back-to-top:hover {
        transform: none;
    }
}

/* Enhanced Service Buttons Styling */
.service-card-premium {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
}

.service-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.1), transparent);
    transition: left 0.6s;
    z-index: 1;
}

.service-card-premium:hover::before {
    left: 100%;
}

.service-card-premium:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.3);
    border-color: rgba(249, 115, 22, 0.3);
}

.service-link-premium {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: linear-gradient(135deg, #F97316, #FBBF24);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.service-link-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.service-link-premium:hover::before {
    left: 100%;
}

.service-link-premium:hover {
    transform: translateX(4px) scale(1.05);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
    color: white;
}

.service-link-premium:active {
    transform: translateX(2px) scale(0.98);
}

.service-link-premium svg {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-left: 8px;
}

.service-link-premium:hover svg {
    transform: translateX(4px);
}

/* Service Icon Enhancements */
.service-icon-premium {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: #F97316;
}

.service-card-premium:hover .service-icon-premium {
    transform: scale(1.1) rotate(5deg);
    color: #F97316;
}

/* Service Price Enhancements */
.service-price-premium {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-premium:hover .service-price-premium {
    transform: scale(1.05);
    color: #F97316;
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #F97316, #FBBF24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Service Features List */
.service-features-premium {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.service-features-premium li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: #e5e7eb;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.service-features-premium li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #F97316;
    font-weight: bold;
    font-size: 0.8rem;
}

.service-card-premium:hover .service-features-premium li {
    color: #ffffff;
    transform: translateX(4px);
}

/* CTA Buttons Enhancement */
.cta-button {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
}

.cta-button:active {
    transform: scale(0.98);
}

/* Service Filter Buttons */
.service-filter {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1px solid rgba(249, 115, 22, 0.3);
    background: rgba(249, 115, 22, 0.1);
    color: #e5e7eb;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

.service-filter::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.2), transparent);
    transition: left 0.5s;
}

.service-filter:hover::before {
    left: 100%;
}

.service-filter:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.2);
    border-color: rgba(249, 115, 22, 0.5);
}

.service-filter.active {
    background: linear-gradient(135deg, #F97316, #FBBF24);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
    border-color: transparent;
}

/* Loading States */
.loading-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s ease-in-out infinite;
    margin-right: 8px;
}

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

/* Ripple Effect */
.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Service Card Hover States */
.service-card-premium:hover .service-title-premium {
    color: #F97316;
    transform: translateY(-2px);
}

.service-card-premium:hover .service-description-premium {
    color: #ffffff;
}

/* Mobile Responsive Enhancements */
@media (max-width: 768px) {
    .service-card-premium:hover {
        transform: translateY(-4px) scale(1.01);
    }
    
    .service-link-premium {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .service-filter {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .service-card-premium {
        margin-bottom: 1rem;
    }
    
    .service-link-premium {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .service-filter {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

/* Focus States for Accessibility */
.service-link-premium:focus,
.service-filter:focus,
.cta-button:focus {
    outline: 2px solid #F97316;
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .service-card-premium {
        border-width: 2px;
    }
    
    .service-link-premium {
        border: 2px solid #F97316;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .service-card-premium,
    .service-link-premium,
    .service-filter,
    .cta-button {
        transition: none;
    }
    
    .service-card-premium:hover,
    .service-link-premium:hover,
    .service-filter:hover {
        transform: none;
    }
}

/* New Footer Design with Different Theme */
.new-footer {
    background: linear-gradient(135deg, #0B0B0C 0%, #1a1a1a 50%, #0B0B0C 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
    margin-top: 6rem;
}

/* Animated Background Elements */
.new-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.2) 0%, transparent 50%);
    animation: backgroundShift 20s ease-in-out infinite;
    z-index: 1;
}

@keyframes backgroundShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 10;
}

/* Footer Top Section */
.footer-top {
    background: linear-gradient(135deg, #F97316 0%, #FBBF24 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.footer-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.newsletter-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    position: relative;
    z-index: 10;
}

.newsletter-content {
    flex: 1;
    max-width: 500px;
}

.newsletter-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.newsletter-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.newsletter-form {
    flex: 1;
    max-width: 500px;
}

.input-group {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 4px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 1rem;
}

.newsletter-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 1rem 1.5rem;
    color: white;
    font-size: 1rem;
    outline: none;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-btn {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    border: none;
    border-radius: 50px;
    padding: 1rem 2rem;
    color: white;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.newsletter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.newsletter-btn:hover::before {
    left: 100%;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

.newsletter-privacy {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

/* Footer Main Content */
.footer-main {
    padding: 4rem 0;
    position: relative;
    z-index: 10;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
}

/* Brand Section */
.footer-brand {
    max-width: 400px;
}

.brand-section {
    margin-bottom: 2rem;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo {
    width: 60px;
    height: 180px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.brand-info {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    background: linear-gradient(135deg, #F97316, #FBBF24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-tagline {
    font-size: 0.9rem;
    color: #F97316;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.brand-description {
    color: #e5e7eb;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(249, 115, 22, 0.1);
    padding: 0.75rem 1rem;
    border-radius: 25px;
    border: 1px solid rgba(249, 115, 22, 0.2);
    transition: all 0.3s ease;
}

.trust-item:hover {
    background: rgba(249, 115, 22, 0.2);
    transform: translateY(-2px);
}

.trust-icon {
    font-size: 1.2rem;
}

.trust-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.trust-number {
    font-size: 1.1rem;
    font-weight: 700;
    color: #F97316;
}

.trust-label {
    font-size: 0.8rem;
    color: #e5e7eb;
}

/* Footer Columns */
.footer-column {
    min-width: 200px;
}

.column-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    position: relative;
}

.column-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, #F97316, #FBBF24);
    border-radius: 2px;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-link {
    color: #e5e7eb;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.footer-link::before {
    content: '→';
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: #F97316;
}

.footer-link:hover {
    color: #F97316;
    padding-left: 0.5rem;
}

.footer-link:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Contact Info */
.footer-contact {
    min-width: 300px;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0;
    background: rgba(249, 115, 22, 0.05);
    border-radius: 10px;
    border: none;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(249, 115, 22, 0.1);
    border-color: rgba(102, 126, 234, 0.2);
    transform: translateX(5px);
}

.contact-icon {
    width: 20px;
    height: 20px;
    color: #F97316;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-label {
    font-size: 0.85rem;
    color: #9ca3af;
    font-weight: 500;
}

.contact-value {
    font-size: 0.95rem;
    color: #e5e7eb;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-value:hover {
    color: #F97316;
}

/* Social Media Section */
.footer-social {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 3rem 0;
    position: relative;
    z-index: 10;
}

    text-align: center;
}

    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #F97316, #FBBF24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

    font-size: 1.1rem;
    color: #e5e7eb;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: #e5e7eb;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

    left: 100%;
}

    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
    color: white;
}

    background: #1877f2;
    border-color: #1877f2;
}

    background: #1da1f2;
    border-color: #1da1f2;
}

    background: #0077b5;
    border-color: #0077b5;
}

    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: transparent;
}

    background: #ff0000;
    border-color: #ff0000;
}

    background: #25d366;
    border-color: #25d366;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(102, 126, 234, 0.2);
    padding: 2rem 0;
    position: relative;
    z-index: 10;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright p {
    color: #e5e7eb;
    font-size: 0.9rem;
    margin: 0;
}

.footer-links-bottom {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links-bottom a {
    color: #e5e7eb;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links-bottom a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #F97316, #FBBF24);
    transition: width 0.3s ease;
}

.footer-links-bottom a:hover::after {
    width: 100%;
}

.footer-links-bottom a:hover {
    color: #F97316;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #F97316, #FBBF24);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-brand {
        max-width: none;
    }
    
    .footer-contact {
        min-width: auto;
    }
    
    .newsletter-section {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-subtitle {
        font-size: 1rem;
    }
    
    .input-group {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .newsletter-btn {
        justify-content: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-links-bottom {
        justify-content: center;
    }
    
        gap: 1rem;
    }
    
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .footer-top {
        padding: 2rem 0;
    }
    
    .newsletter-title {
        font-size: 1.75rem;
    }
    
    .footer-main {
        padding: 2rem 0;
    }
    
        flex-direction: column;
        align-items: center;
    }
    
    .footer-links-bottom {
        flex-direction: column;
        gap: 1rem;
    }
    
    .trust-badges {
        justify-content: center;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus Styles for Accessibility */
.footer-link:focus,
.footer-links-bottom a:focus,
.back-to-top:focus,
.newsletter-btn:focus {
    outline: 2px solid #F97316;
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .trust-item {
        border-width: 2px;
    }
    
        border-width: 2px;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .new-footer::before {
        animation: none;
    }
    
    .back-to-top:hover {
        transform: none;
    }
}

.trustpilot-widget {
    background: linear-gradient(135deg, #00B67A, #00D4AA);
    color: white;
    border: none;
    position: relative;
    overflow: hidden;
}

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

.trustpilot-widget:hover::before {
    left: 100%;
}

.trust-score {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.trust-stars {
    font-size: 1.2rem;
    color: #FFD700;
    margin-bottom: 0.5rem;
}

.trust-label {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.trust-reviews {
    font-size: 0.85rem;
    opacity: 0.9;
}

.trust-link {
    position: absolute;
    bottom: 0.5rem;
    right: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    padding: 0.25rem 0.5rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.trust-link:hover {
    background: rgba(255, 255, 255, 0.3);
    color: white;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .trustpilot-widget-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .trustpilot-main-widget {
        order: 2;
    }
    
    .reviews-grid {
        order: 1;
    }
}

@media (max-width: 768px) {
    .trustpilot-title {
        font-size: 2rem;
    }
    
    .trustpilot-subtitle {
        font-size: 1rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .review-card {
        padding: 0;
    }
    
    .trustpilot-main-widget {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .trustpilot-section {
        padding: 2rem 0;
    }
    
    .trustpilot-title {
        font-size: 1.75rem;
    }
    
    .rating-score {
        font-size: 2.5rem;
    }
    
    .trustpilot-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .trustpilot-link {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Animation for Trustpilot Widget */
@keyframes trustpilotPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0, 182, 122, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(0, 182, 122, 0);
    }
}

.trustpilot-main-widget {
    animation: trustpilotPulse 2s infinite;
}

/* Focus States for Accessibility */
.trustpilot-link:focus,
.trust-link:focus {
    outline: 2px solid #00B67A;
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .review-card {
        border-width: 2px;
    }
    
    .trustpilot-main-widget {
        border-width: 2px;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .trustpilot-main-widget {
        animation: none;
    }
    
    .review-card:hover {
        transform: none;
    }
}

/* Ultra Modern Footer Styles */
.ultra-footer {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
    margin-top: 6rem;
}

/* Gradient Bar */
.footer-gradient-bar {
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb, #f5576c, #4facfe, #00f2fe);
    background-size: 300% 100%;
    animation: gradientShift 8s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Main Footer Content */
.footer-main-content {
    padding: 4rem 0;
    position: relative;
    z-index: 10;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Brand Section */
.footer-brand-section {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(102, 126, 234, 0.2);
}

.brand-logo-area {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo {
    width: 60px;
    height: 180px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05) rotate(5deg);
}

.brand-text {
    text-align: left;
}

.brand-name {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    background: linear-gradient(135deg, #F97316, #FBBF24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-tagline {
    font-size: 1rem;
    color: #F97316;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

.brand-description {
    color: #e5e7eb;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Quick Stats */
.quick-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 0;
    background: rgba(249, 115, 22, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(249, 115, 22, 0.2);
    transition: all 0.3s ease;
    min-width: 120px;
}

.stat-item:hover {
    background: rgba(249, 115, 22, 0.2);
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #F97316;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #e5e7eb;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer Links Grid */
.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column {
    min-width: 200px;
}

.column-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    position: relative;
}

.column-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #F97316, #FBBF24);
    border-radius: 2px;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-link {
    color: #e5e7eb;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    padding: 0.5rem 0;
}

.footer-link::before {
    content: '→';
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: #F97316;
    font-weight: bold;
}

.footer-link:hover {
    color: #F97316;
    padding-left: 0.5rem;
}

.footer-link:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Contact Column */
.contact-column {
    min-width: 300px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(249, 115, 22, 0.05);
    border-radius: 15px;
    border: none;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(249, 115, 22, 0.1);
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateX(5px);
}

.contact-icon {
    width: 20px;
    height: 20px;
    color: #F97316;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-label {
    font-size: 0.85rem;
    color: #9ca3af;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-value {
    font-size: 0.95rem;
    color: #e5e7eb;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-value:hover {
    color: #F97316;
}

/* Social Media Section */
    background: rgba(0, 0, 0, 0.3);
    padding: 3rem 0;
    border-top: 1px solid rgba(102, 126, 234, 0.2);
    position: relative;
    z-index: 10;
}

    text-align: center;
}

    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #F97316, #FBBF24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: #e5e7eb;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

    left: 100%;
}

    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
    color: white;
}

    background: #1877f2;
    border-color: #1877f2;
}

    background: #1da1f2;
    border-color: #1da1f2;
}

    background: #0077b5;
    border-color: #0077b5;
}

    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: transparent;
}

    background: #ff0000;
    border-color: #ff0000;
}

    background: #25d366;
    border-color: #25d366;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(102, 126, 234, 0.2);
    padding: 2rem 0;
    position: relative;
    z-index: 10;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright p {
    color: #e5e7eb;
    font-size: 0.9rem;
    margin: 0;
}

.footer-links-bottom {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links-bottom a {
    color: #e5e7eb;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links-bottom a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #F97316, #FBBF24);
    transition: width 0.3s ease;
}

.footer-links-bottom a:hover::after {
    width: 100%;
}

.footer-links-bottom a:hover {
    color: #F97316;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #F97316, #FBBF24);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-links-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .contact-column {
        min-width: auto;
    }
    
    .quick-stats {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-main-content {
        padding: 2rem 0;
    }
    
    .brand-logo-area {
        flex-direction: column;
        text-align: center;
    }
    
    .brand-text {
        text-align: center;
    }
    
    .brand-name {
        font-size: 2rem;
    }
    
    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-links-bottom {
        justify-content: center;
    }
    
        gap: 1rem;
    }
    
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .quick-stats {
        gap: 1rem;
    }
    
    .stat-item {
        min-width: 100px;
    }
    
    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
        padding: 2rem 0;
    }
    
        font-size: 1.5rem;
    }
    
        flex-direction: column;
        align-items: center;
    }
    
    .footer-links-bottom {
        flex-direction: column;
        gap: 1rem;
    }
    
    .quick-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-item {
        width: 100%;
        max-width: 350px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus Styles for Accessibility */
.footer-link:focus,
.footer-links-bottom a:focus,
.back-to-top:focus {
    outline: 2px solid #F97316;
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .stat-item {
        border-width: 2px;
    }
    
        border-width: 2px;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .footer-gradient-bar {
        animation: none;
    }
    
    .back-to-top:hover {
        transform: none;
    }
}

/* Premium Footer Design */
.premium-footer {
    background: linear-gradient(135deg, #0B0B0C 0%, #1a1a1a 50%, #0B0B0C 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
    margin-top: 6rem;
}

/* Animated Background */
.premium-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.05) 0%, transparent 50%);
    animation: backgroundFloat 20s ease-in-out infinite;
    z-index: 1;
}

@keyframes backgroundFloat {
    0%, 100% { 
        opacity: 0.8;
        transform: scale(1);
    }
    50% { 
        opacity: 1;
        transform: scale(1.05);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 10;
}

/* Newsletter Section */
.footer-newsletter {
    background: linear-gradient(135deg, #F97316 0%, #FBBF24 100%);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.footer-newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.newsletter-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 10;
}

.newsletter-content {
    flex: 1;
    max-width: 400px;
}

.newsletter-title {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.newsletter-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.newsletter-form {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 4px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    flex: 1;
    max-width: 400px;
}

.newsletter-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 1rem 1.5rem;
    color: white;
    font-size: 1rem;
    outline: none;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-btn {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    border: none;
    border-radius: 50px;
    padding: 1rem 2rem;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.newsletter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.newsletter-btn:hover::before {
    left: 100%;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

/* Main Footer Content */
.footer-content {
    padding: 4rem 0;
    position: relative;
    z-index: 10;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
}

/* Brand Section */
.footer-brand {
    max-width: 400px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.logo {
    width: 96px;
    height: 96px;
    border-radius: 0;
    box-shadow: none;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    background: transparent;
    display: block;
}

.logo:hover {
    transform: none;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    background: linear-gradient(135deg, #F97316, #FBBF24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-tagline {
    font-size: 0.9rem;
    color: #F97316;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.brand-description {
    color: #e5e7eb;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Footer social + trust (packages.html) */
.brand-social-trust {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.brand-social {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand-social .social-link {
    width: 32px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #e5e7eb;
    text-decoration: none;
    transition: all 0.25s ease;
    backdrop-filter: blur(8px);
}

.brand-social .social-icon {
    width: 16px;
    height: 16px;
}

/* Hover blend to brand gradient */
.brand-social .social-link:hover {
    background: linear-gradient(135deg, #F97316, #FBBF24);
    border-color: transparent;
    color: #0B0B0C;
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.35);
    transform: translateY(-2px);
}

/* Trustpilot pill */
.trustpilot-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.65rem;
    border-radius: 9999px;
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.45);
    color: #bbf7d0;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    line-height: 1;
    transition: background 0.25s ease, transform 0.25s ease;
}

.trustpilot-badge .tp-star {
    color: #22c55e;
    font-size: 0.95rem;
}

.trustpilot-badge:hover {
    background: rgba(34, 197, 94, 0.18);
    transform: translateY(-2px);
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(249, 115, 22, 0.1);
    padding: 0.75rem 1rem;
    border-radius: 25px;
    border: 1px solid rgba(249, 115, 22, 0.2);
    transition: all 0.3s ease;
}

.trust-item:hover {
    background: rgba(249, 115, 22, 0.2);
    transform: translateY(-2px);
}

.trust-icon {
    font-size: 1.2rem;
}

.trust-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.trust-number {
    font-size: 1rem;
    font-weight: 700;
    color: #F97316;
}

.trust-label {
    font-size: 0.8rem;
    color: #e5e7eb;
}

/* Footer Columns */
.footer-column {
    min-width: 200px;
}

.column-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    position: relative;
}

.column-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #F97316, #FBBF24);
    border-radius: 1px;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-link {
    color: #e5e7eb;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.footer-link::before {
    content: '→';
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: #F97316;
}

.footer-link:hover {
    color: #F97316;
    padding-left: 0.5rem;
}

.footer-link:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Contact Column */
.contact-column {
    min-width: 300px;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0;
    background: rgba(249, 115, 22, 0.05);
    border-radius: 10px;
    border: none;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(249, 115, 22, 0.1);
    border-color: rgba(102, 126, 234, 0.2);
    transform: translateX(5px);
}

.contact-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-label {
    font-size: 0.85rem;
    color: #9ca3af;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-value {
    font-size: 0.95rem;
    color: #e5e7eb;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-value:hover {
    color: #F97316;
}

/* Social Media Section */
.footer-social {
    background: rgba(0, 0, 0, 0.3);
    padding: 2rem 0;
    border-top: 1px solid rgba(102, 126, 234, 0.2);
    position: relative;
    z-index: 10;
}

    text-align: center;
}

    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #F97316, #FBBF24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #e5e7eb;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #F97316, #FBBF24);
    opacity: 0;
    transition: opacity 0.3s ease;
}

    opacity: 1;
}

    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
    color: white;
}

    position: relative;
    z-index: 1;
}

    background: #1877f2;
    border-color: #1877f2;
}

    background: #1da1f2;
    border-color: #1da1f2;
}

    background: #0077b5;
    border-color: #0077b5;
}

    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: transparent;
}

    background: #ff0000;
    border-color: #ff0000;
}

    background: #25d366;
    border-color: #25d366;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(102, 126, 234, 0.2);
    padding: 1.5rem 0;
    position: relative;
    z-index: 10;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright p {
    color: #e5e7eb;
    font-size: 0.9rem;
    margin: 0;
}

.footer-links-bottom {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links-bottom a {
    color: #e5e7eb;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links-bottom a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #F97316, #FBBF24);
    transition: width 0.3s ease;
}

.footer-links-bottom a:hover::after {
    width: 100%;
}

.footer-links-bottom a:hover {
    color: #F97316;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #F97316, #FBBF24);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-brand {
        max-width: none;
    }
    
    .contact-column {
        min-width: auto;
    }
    
    .newsletter-wrapper {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .footer-newsletter {
        padding: 2rem 0;
    }
    
    .newsletter-title {
        font-size: 1.5rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .newsletter-btn {
        justify-content: center;
    }
    
    .footer-content {
        padding: 2rem 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-links-bottom {
        justify-content: center;
    }
    
        gap: 0.75rem;
    }
    
        width: 45px;
        height: 45px;
    }
    
    .trust-indicators {
        justify-content: center;
    }
    
    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .newsletter-title {
        font-size: 1.25rem;
    }
    
    .newsletter-subtitle {
        font-size: 1rem;
    }
    
    .brand-name {
        font-size: 1.5rem;
    }
    
        gap: 0.5rem;
    }
    
        width: 40px;
        height: 50px;
    }
    
    .footer-links-bottom {
        flex-direction: column;
        gap: 1rem;
    }
    
    .trust-indicators {
        flex-direction: column;
        align-items: center;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus Styles for Accessibility */
.footer-link:focus,
.footer-links-bottom a:focus,
.back-to-top:focus {
    outline: 2px solid #F97316;
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .trust-item {
        border-width: 2px;
    }
    
        border-width: 2px;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .premium-footer::before {
        animation: none;
    }
    
    .back-to-top:hover {
        transform: none;
    }
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
        min-width: auto;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
        padding: 0.75rem;
    }
    
        font-size: 0.9rem;
    }
    
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
        align-self: flex-end;
    }
}

/* Enhanced About Hero Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(249, 115, 22, 0.3); }
    50% { box-shadow: 0 0 40px rgba(249, 115, 22, 0.6), 0 0 60px rgba(251, 191, 36, 0.4); }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Apply animations to hero elements */
.hero-title {
    animation: fadeInScale 1s ease-out;
}

.hero-subtitle {
    animation: slideInUp 1s ease-out 0.3s both;
}

.hero-buttons {
    animation: slideInUp 1s ease-out 0.6s both;
}

.hero-stats {
    animation: slideInUp 1s ease-out 0.9s both;
}

/* Enhanced floating elements */
.floating-element {
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(2) {
    animation-delay: -2s;
}

.floating-element:nth-child(3) {
    animation-delay: -4s;
}

/* Enhanced button hover effects */
.hero-btn-primary {
    position: relative;
    overflow: hidden;
}

.hero-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.hero-btn-primary:hover::before {
    left: 100%;
}

/* Enhanced trust indicators */
.trust-indicator {
    transition: all 0.3s ease;
}

.trust-indicator:hover {
    transform: translateY(-8px) scale(1.05);
}

/* Scroll indicator enhancement */
.scroll-indicator {
    animation: bounce 2s infinite;
}

/* Enhanced particle effects */
.particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.particle-1 {
    animation: float 4s ease-in-out infinite;
}

.particle-2 {
    animation: float 4s ease-in-out infinite 1s;
}

.particle-3 {
    animation: float 4s ease-in-out infinite 2s;
}

.particle-4 {
    animation: float 4s ease-in-out infinite 3s;
}

/* Responsive enhancements */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

/* Enhanced About Hero with Better Colors */
.about-hero-enhanced {
    background: linear-gradient(135deg, #1f2937 0%, #0B0B0C 50%, #1f2937 100%);
}

.hero-gradient-text {
    background: linear-gradient(45deg, #60a5fa, #a855f7, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-floating-element {
    animation: float 6s ease-in-out infinite;
}

.hero-floating-element:nth-child(2) {
    animation-delay: -2s;
}

.hero-floating-element:nth-child(3) {
    animation-delay: -4s;
}

.hero-floating-element:nth-child(4) {
    animation-delay: -1s;
}

.hero-floating-element:nth-child(5) {
    animation-delay: -3s;
}

/* Enhanced trust indicator cards */
.trust-card {
    background: rgba(31, 41, 55, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(96, 165, 250, 0.2);
    transition: all 0.3s ease;
}

.trust-card:hover {
    background: rgba(31, 41, 55, 0.7);
    border-color: rgba(96, 165, 250, 0.4);
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 10px 25px rgba(96, 165, 250, 0.2);
}

/* Enhanced button effects */
.hero-btn-primary-enhanced {
    background: linear-gradient(45deg, #3b82f6, #8b5cf6);
    position: relative;
    overflow: hidden;
}

.hero-btn-primary-enhanced::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;
}

.hero-btn-primary-enhanced:hover::before {
    left: 100%;
}

.hero-btn-secondary-enhanced {
    border: 2px solid #a855f7;
    color: #a855f7;
    transition: all 0.3s ease;
}

.hero-btn-secondary-enhanced:hover {
    background: #a855f7;
    color: white;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.4);
}

/* Enhanced particle effects */
.particle-enhanced {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    animation: float 4s ease-in-out infinite;
}

.particle-enhanced:nth-child(1) {
    background: #60a5fa;
    animation-delay: 0s;
}

.particle-enhanced:nth-child(2) {
    background: #a855f7;
    animation-delay: 1s;
}

.particle-enhanced:nth-child(3) {
    background: #06b6d4;
    animation-delay: 2s;
}

.particle-enhanced:nth-child(4) {
    background: #ec4899;
    animation-delay: 3s;
}

/* Enhanced geometric shapes */
.geometric-shape {
    animation: rotate 20s linear infinite;
}

.geometric-shape:nth-child(2) {
    animation: rotate 15s linear infinite reverse;
}

.geometric-shape:nth-child(3) {
    animation: bounce 2s ease-in-out infinite;
}

.geometric-shape:nth-child(4) {
    animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

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

/* Responsive enhancements for better colors */
@media (max-width: 768px) {
    .hero-title-enhanced {
        font-size: 3rem;
        line-height: 1.1;
    }
    
    .hero-subtitle-enhanced {
        font-size: 1.25rem;
        line-height: 1.6;
    }
    
    .trust-card {
        padding: 0;
    }
    
    .hero-btn-primary-enhanced,
    .hero-btn-secondary-enhanced {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

/* TechIChamps Theme Colors - Exact Hex Codes */
:root {
    --tc-orange: #F97316;
    --tc-orange-hover: #EA580C;
    --tc-yellow: #FBBF24;
    --tc-yellow-hover: #F59E0B;
    --tc-black: #0B0B0C;
    --tc-off-white: #FFF7ED;
}

/* Apply TechIChamps colors to About Hero */
.about-hero-techi {
    background: linear-gradient(135deg, var(--tc-black) 0%, #1f2937 50%, var(--tc-black) 100%);
}

.hero-title-techi {
    background: linear-gradient(45deg, var(--tc-orange), var(--tc-yellow), var(--tc-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse 2s ease-in-out infinite;
}

.hero-subtitle-techi {
    color: #e5e7eb;
}

.hero-subtitle-techi .tc-orange {
    color: var(--tc-orange);
    font-weight: 600;
}

.hero-subtitle-techi .tc-yellow {
    color: var(--tc-yellow);
    font-weight: 600;
}

/* Enhanced floating elements with TechIChamps colors */
.hero-floating-techi-1 {
    background: linear-gradient(45deg, rgba(249, 115, 22, 0.3), rgba(251, 191, 36, 0.3));
    animation: float 6s ease-in-out infinite;
}

.hero-floating-techi-2 {
    background: linear-gradient(45deg, rgba(251, 191, 36, 0.3), rgba(249, 115, 22, 0.3));
    animation: float 6s ease-in-out infinite -2s;
}

.hero-floating-techi-3 {
    background: linear-gradient(45deg, rgba(249, 115, 22, 0.25), rgba(251, 191, 36, 0.25));
    animation: float 6s ease-in-out infinite -4s;
}

.hero-floating-techi-4 {
    background: linear-gradient(45deg, rgba(251, 191, 36, 0.3), rgba(249, 115, 22, 0.3));
    animation: float 6s ease-in-out infinite -1s;
}

.hero-floating-techi-5 {
    background: linear-gradient(45deg, rgba(249, 115, 22, 0.15), rgba(251, 191, 36, 0.15));
    animation: float 6s ease-in-out infinite -3s;
}

/* Enhanced trust indicator cards with TechIChamps colors */
.trust-card-techi {
    background: rgba(11, 11, 12, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(249, 115, 22, 0.3);
    transition: all 0.3s ease;
}

.trust-card-techi:hover {
    background: rgba(11, 11, 12, 0.8);
    border-color: rgba(249, 115, 22, 0.5);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.4);
}

.trust-card-techi.yellow {
    border-color: rgba(251, 191, 36, 0.3);
}

.trust-card-techi.yellow:hover {
    border-color: rgba(251, 191, 36, 0.5);
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.2);
}

.trust-card-techi .tc-orange {
    color: var(--tc-orange);
    font-weight: 700;
}

.trust-card-techi .tc-yellow {
    color: var(--tc-yellow);
    font-weight: 700;
}

/* Enhanced button effects with TechIChamps colors */
.hero-btn-primary-techi {
    background: linear-gradient(45deg, var(--tc-orange), var(--tc-yellow));
    position: relative;
    overflow: hidden;
    color: white;
    font-weight: 700;
}

.hero-btn-primary-techi::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;
}

.hero-btn-primary-techi:hover::before {
    left: 100%;
}

.hero-btn-primary-techi:hover {
    box-shadow: 0 0 30px rgba(249, 115, 22, 0.5);
}

.hero-btn-secondary-techi {
    border: 2px solid var(--tc-orange);
    color: var(--tc-orange);
    transition: all 0.3s ease;
    font-weight: 700;
}

.hero-btn-secondary-techi:hover {
    background: var(--tc-orange);
    color: white;
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.4);
}

/* Enhanced particle effects with TechIChamps colors */
.particle-techi-orange {
    background: var(--tc-orange);
    animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.particle-techi-yellow {
    background: var(--tc-yellow);
    animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

/* Enhanced geometric shapes with TechIChamps colors */
.geometric-techi-orange {
    border-color: rgba(249, 115, 22, 0.5);
    animation: rotate 20s linear infinite;
}

.geometric-techi-yellow {
    border-color: rgba(251, 191, 36, 0.5);
    animation: rotate 15s linear infinite reverse;
}

.geometric-techi-orange-bg {
    background: linear-gradient(45deg, rgba(249, 115, 22, 0.4), rgba(251, 191, 36, 0.4));
    animation: bounce 2s ease-in-out infinite;
}

.geometric-techi-orange-ping {
    border-color: rgba(249, 115, 22, 0.4);
    animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

/* Scroll indicator with TechIChamps colors */
.scroll-indicator-techi {
    border-color: var(--tc-orange);
}

.scroll-indicator-techi .indicator-dot {
    background: var(--tc-orange);
}

/* Responsive enhancements for TechIChamps theme */
@media (max-width: 768px) {
    .hero-title-techi {
        font-size: 3rem;
        line-height: 1.1;
    }
    
    .hero-subtitle-techi {
        font-size: 1.25rem;
        line-height: 1.6;
    }
    
    .trust-card-techi {
        padding: 0;
    }
    
    .hero-btn-primary-techi,
    .hero-btn-secondary-techi {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

/* Advanced 3D Effects for About Hero */
.perspective-1000 {
    perspective: 1000px;
}

.transform-gpu {
    transform-style: preserve-3d;
    will-change: transform;
}

/* 3D Floating Elements with Enhanced Depth */
.hero-3d-floating-1 {
    background: linear-gradient(45deg, rgba(249, 115, 22, 0.4), rgba(251, 191, 36, 0.4));
    animation: float3D 8s ease-in-out infinite;
    transform: translateZ(100px) rotateX(45deg) rotateY(45deg);
}

.hero-3d-floating-2 {
    background: linear-gradient(45deg, rgba(251, 191, 36, 0.4), rgba(249, 115, 22, 0.4));
    animation: float3D 8s ease-in-out infinite -2s;
    transform: translateZ(150px) rotateX(-30deg) rotateY(30deg);
}

.hero-3d-floating-3 {
    background: linear-gradient(45deg, rgba(249, 115, 22, 0.3), rgba(251, 191, 36, 0.3));
    animation: float3D 8s ease-in-out infinite -4s;
    transform: translateZ(200px) rotateX(60deg) rotateY(-45deg);
}

.hero-3d-floating-4 {
    background: linear-gradient(45deg, rgba(251, 191, 36, 0.4), rgba(249, 115, 22, 0.4));
    animation: float3D 8s ease-in-out infinite -1s;
    transform: translateZ(120px) rotateX(-45deg) rotateY(60deg);
}

.hero-3d-floating-5 {
    background: linear-gradient(45deg, rgba(249, 115, 22, 0.2), rgba(251, 191, 36, 0.2));
    animation: float3D 8s ease-in-out infinite -3s;
    transform: translateZ(300px) rotateX(30deg) rotateY(30deg);
}

/* 3D Geometric Shapes */
.hero-3d-geometric-1 {
    border-color: rgba(249, 115, 22, 0.6);
    animation: rotate3D 25s linear infinite;
    transform: translateZ(80px) rotateX(45deg) rotateY(45deg);
}

.hero-3d-geometric-2 {
    border-color: rgba(251, 191, 36, 0.6);
    animation: rotate3D 20s linear infinite reverse;
    transform: translateZ(120px) rotateX(-30deg) rotateY(30deg);
}

.hero-3d-geometric-3 {
    background: linear-gradient(45deg, rgba(249, 115, 22, 0.5), rgba(251, 191, 36, 0.5));
    animation: bounce3D 3s ease-in-out infinite;
    transform: translateZ(60px) rotateX(60deg) rotateY(-30deg);
}

.hero-3d-geometric-4 {
    border-color: rgba(249, 115, 22, 0.5);
    animation: ping3D 2s cubic-bezier(0, 0, 0.2, 1) infinite;
    transform: translateZ(100px) rotateX(30deg) rotateY(60deg);
}

/* 3D Particles */
.hero-3d-particle-1 {
    background: #F97316;
    animation: ping3D 2s cubic-bezier(0, 0, 0.2, 1) infinite;
    transform: translateZ(40px) rotateX(45deg);
}

.hero-3d-particle-2 {
    background: #FBBF24;
    animation: ping3D 2s cubic-bezier(0, 0, 0.2, 1) infinite 0.5s;
    transform: translateZ(80px) rotateX(-30deg);
}

.hero-3d-particle-3 {
    background: #F97316;
    animation: ping3D 2s cubic-bezier(0, 0, 0.2, 1) infinite 1s;
    transform: translateZ(60px) rotateX(60deg);
}

.hero-3d-particle-4 {
    background: #FBBF24;
    animation: ping3D 2s cubic-bezier(0, 0, 0.2, 1) infinite 1.5s;
    transform: translateZ(100px) rotateX(-45deg);
}

/* 3D Title Effects */
.hero-3d-title {
    background: linear-gradient(45deg, #F97316, #FBBF24, #F97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse3D 2s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(249, 115, 22, 0.5), 0 0 60px rgba(251, 191, 36, 0.3);
    transform: translateZ(50px) rotateX(5deg);
}

/* 3D Subtitle Effects */
.hero-3d-subtitle {
    color: #e5e7eb;
    transform: translateZ(30px) rotateX(-2deg);
}

.hero-3d-subtitle .tc-orange {
    color: #F97316;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(249, 115, 22, 0.5);
}

.hero-3d-subtitle .tc-yellow {
    color: #FBBF24;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

/* 3D Button Effects */
.hero-3d-btn-primary {
    background: linear-gradient(45deg, #F97316, #FBBF24);
    position: relative;
    overflow: hidden;
    color: white;
    font-weight: 700;
    transform: translateZ(20px) rotateX(5deg);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3), 0 0 20px rgba(251, 191, 36, 0.2);
}

.hero-3d-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s;
}

.hero-3d-btn-primary:hover::before {
    left: 100%;
}

.hero-3d-btn-primary:hover {
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.5), 0 0 30px rgba(251, 191, 36, 0.3);
    transform: translateZ(30px) rotateX(3deg) scale(1.05);
}

.hero-3d-btn-secondary {
    border: 2px solid #F97316;
    color: #F97316;
    transition: all 0.3s ease;
    font-weight: 700;
    transform: translateZ(20px) rotateX(5deg);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.2);
}

.hero-3d-btn-secondary:hover {
    background: #F97316;
    color: white;
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.4);
    transform: translateZ(30px) rotateX(3deg) scale(1.05);
}

/* 3D Trust Indicator Cards */
.hero-3d-trust-card {
    background: rgba(11, 11, 12, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(249, 115, 22, 0.4);
    transition: all 0.3s ease;
    transform: translateZ(30px) rotateX(5deg);
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.2), inset 0 1px 0 rgba(249, 115, 22, 0.1);
}

.hero-3d-trust-card:hover {
    background: rgba(11, 11, 12, 0.9);
    border-color: rgba(249, 115, 22, 0.6);
    transform: translateZ(50px) rotateX(3deg) scale(1.05);
    box-shadow: 0 20px 50px rgba(249, 115, 22, 0.3), inset 0 1px 0 rgba(249, 115, 22, 0.2);
}

.hero-3d-trust-card.yellow {
    border-color: rgba(251, 191, 36, 0.4);
    box-shadow: 0 15px 35px rgba(251, 191, 36, 0.2), inset 0 1px 0 rgba(251, 191, 36, 0.1);
}

.hero-3d-trust-card.yellow:hover {
    border-color: rgba(251, 191, 36, 0.6);
    box-shadow: 0 20px 50px rgba(251, 191, 36, 0.3), inset 0 1px 0 rgba(251, 191, 36, 0.2);
}

.hero-3d-trust-card .tc-orange {
    color: #F97316;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(249, 115, 22, 0.6);
}

.hero-3d-trust-card .tc-yellow {
    color: #FBBF24;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.6);
}

/* 3D Scroll Indicator */
.hero-3d-scroll-indicator {
    transform: translateZ(100px) rotateX(10deg);
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.5);
}

.hero-3d-scroll-indicator .indicator-dot {
    background: #F97316;
    box-shadow: 0 0 10px rgba(249, 115, 22, 0.8);
}

/* 3D Animations */
@keyframes float3D {
    0%, 100% { 
        transform: translateZ(100px) rotateX(45deg) rotateY(45deg) translateY(0px); 
    }
    50% { 
        transform: translateZ(150px) rotateX(30deg) rotateY(30deg) translateY(-20px); 
    }
}

@keyframes rotate3D {
    from { 
        transform: translateZ(80px) rotateX(45deg) rotateY(45deg) rotateZ(0deg); 
    }
    to { 
        transform: translateZ(80px) rotateX(45deg) rotateY(45deg) rotateZ(360deg); 
    }
}

@keyframes bounce3D {
    0%, 100% { 
        transform: translateZ(60px) rotateX(60deg) rotateY(-30deg) translateY(0px); 
    }
    50% { 
        transform: translateZ(80px) rotateX(45deg) rotateY(-15deg) translateY(-10px); 
    }
}

@keyframes ping3D {
    0% { 
        transform: translateZ(40px) rotateX(45deg) scale(1); 
        opacity: 1; 
    }
    75%, 100% { 
        transform: translateZ(60px) rotateX(30deg) scale(1.2); 
        opacity: 0; 
    }
}

@keyframes pulse3D {
    0%, 100% { 
        transform: translateZ(50px) rotateX(5deg) scale(1); 
    }
    50% { 
        transform: translateZ(60px) rotateX(3deg) scale(1.02); 
    }
}

/* 3D Grid Pattern */
.hero-3d-grid {
    background-image: 
        linear-gradient(rgba(249, 115, 22, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(249, 115, 22, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    transform: perspective(1000px) rotateX(60deg);
    animation: grid3D 20s linear infinite;
}

@keyframes grid3D {
    0% { transform: perspective(1000px) rotateX(60deg) translateZ(0px); }
    100% { transform: perspective(1000px) rotateX(60deg) translateZ(100px); }
}

/* Responsive 3D Effects */
@media (max-width: 768px) {
    .hero-3d-title {
        font-size: 3rem;
        transform: translateZ(30px) rotateX(2deg);
    }
    
    .hero-3d-subtitle {
        font-size: 1.25rem;
        transform: translateZ(20px) rotateX(-1deg);
    }
    
    .hero-3d-trust-card {
        transform: translateZ(20px) rotateX(2deg);
        padding: 0;
    }
    
    .hero-3d-btn-primary,
    .hero-3d-btn-secondary {
        transform: translateZ(15px) rotateX(2deg);
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .perspective-1000 {
        perspective: 500px;
    }
}

/* Dramatic 3D Effects for About Hero */
.perspective-1000 {
    perspective: 1000px;
    perspective-origin: center center;
}

.transform-gpu {
    transform-style: preserve-3d;
    will-change: transform;
    backface-visibility: hidden;
}

/* Enhanced 3D Floating Elements */
.hero-dramatic-floating-1 {
    background: linear-gradient(45deg, rgba(249, 115, 22, 0.5), rgba(251, 191, 36, 0.5));
    animation: floatDramatic 10s ease-in-out infinite;
    transform: translateZ(200px) rotateX(60deg) rotateY(45deg);
    box-shadow: 0 0 100px rgba(249, 115, 22, 0.4);
}

.hero-dramatic-floating-2 {
    background: linear-gradient(45deg, rgba(251, 191, 36, 0.5), rgba(249, 115, 22, 0.5));
    animation: floatDramatic 10s ease-in-out infinite -2s;
    transform: translateZ(300px) rotateX(-45deg) rotateY(60deg);
    box-shadow: 0 0 80px rgba(251, 191, 36, 0.4);
}

.hero-dramatic-floating-3 {
    background: linear-gradient(45deg, rgba(249, 115, 22, 0.4), rgba(251, 191, 36, 0.4));
    animation: floatDramatic 10s ease-in-out infinite -4s;
    transform: translateZ(400px) rotateX(75deg) rotateY(-60deg);
    box-shadow: 0 0 120px rgba(249, 115, 22, 0.3);
}

.hero-dramatic-floating-4 {
    background: linear-gradient(45deg, rgba(251, 191, 36, 0.5), rgba(249, 115, 22, 0.5));
    animation: floatDramatic 10s ease-in-out infinite -1s;
    transform: translateZ(250px) rotateX(-60deg) rotateY(75deg);
    box-shadow: 0 0 90px rgba(251, 191, 36, 0.4);
}

.hero-dramatic-floating-5 {
    background: linear-gradient(45deg, rgba(249, 115, 22, 0.25), rgba(251, 191, 36, 0.25));
    animation: floatDramatic 10s ease-in-out infinite -3s;
    transform: translateZ(500px) rotateX(45deg) rotateY(45deg);
    box-shadow: 0 0 150px rgba(249, 115, 22, 0.2);
}

/* Dramatic 3D Geometric Shapes */
.hero-dramatic-geometric-1 {
    border: 3px solid rgba(249, 115, 22, 0.8);
    animation: rotateDramatic 30s linear infinite;
    transform: translateZ(150px) rotateX(60deg) rotateY(60deg);
    box-shadow: 0 0 50px rgba(249, 115, 22, 0.6);
}

.hero-dramatic-geometric-2 {
    border: 3px solid rgba(251, 191, 36, 0.8);
    animation: rotateDramatic 25s linear infinite reverse;
    transform: translateZ(200px) rotateX(-45deg) rotateY(45deg);
    box-shadow: 0 0 40px rgba(251, 191, 36, 0.6);
}

.hero-dramatic-geometric-3 {
    background: linear-gradient(45deg, rgba(249, 115, 22, 0.7), rgba(251, 191, 36, 0.7));
    animation: bounceDramatic 4s ease-in-out infinite;
    transform: translateZ(100px) rotateX(75deg) rotateY(-45deg);
    box-shadow: 0 0 30px rgba(249, 115, 22, 0.8);
}

.hero-dramatic-geometric-4 {
    border: 3px solid rgba(249, 115, 22, 0.7);
    animation: pingDramatic 3s cubic-bezier(0, 0, 0.2, 1) infinite;
    transform: translateZ(180px) rotateX(45deg) rotateY(75deg);
    box-shadow: 0 0 35px rgba(249, 115, 22, 0.7);
}

/* Dramatic 3D Particles */
.hero-dramatic-particle-1 {
    background: #F97316;
    animation: pingDramatic 2s cubic-bezier(0, 0, 0.2, 1) infinite;
    transform: translateZ(80px) rotateX(60deg);
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.8);
}

.hero-dramatic-particle-2 {
    background: #FBBF24;
    animation: pingDramatic 2s cubic-bezier(0, 0, 0.2, 1) infinite 0.5s;
    transform: translateZ(120px) rotateX(-45deg);
    box-shadow: 0 0 25px rgba(251, 191, 36, 0.8);
}

.hero-dramatic-particle-3 {
    background: #F97316;
    animation: pingDramatic 2s cubic-bezier(0, 0, 0.2, 1) infinite 1s;
    transform: translateZ(100px) rotateX(75deg);
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.8);
}

.hero-dramatic-particle-4 {
    background: #FBBF24;
    animation: pingDramatic 2s cubic-bezier(0, 0, 0.2, 1) infinite 1.5s;
    transform: translateZ(140px) rotateX(-60deg);
    box-shadow: 0 0 25px rgba(251, 191, 36, 0.8);
}

/* Dramatic 3D Title Effects */
.hero-dramatic-title {
    background: linear-gradient(45deg, #F97316, #FBBF24, #F97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulseDramatic 3s ease-in-out infinite;
    text-shadow: 
        0 0 50px rgba(249, 115, 22, 0.8), 
        0 0 100px rgba(251, 191, 36, 0.6), 
        0 0 150px rgba(249, 115, 22, 0.4);
    filter: drop-shadow(0 0 30px rgba(249, 115, 22, 0.5));
    transform: translateZ(100px) rotateX(8deg);
}

/* Dramatic 3D Subtitle Effects */
.hero-dramatic-subtitle {
    color: #e5e7eb;
    transform: translateZ(60px) rotateX(-3deg);
}

.hero-dramatic-subtitle .tc-orange {
    color: #F97316;
    font-weight: 600;
    text-shadow: 0 0 20px rgba(249, 115, 22, 0.8);
}

.hero-dramatic-subtitle .tc-yellow {
    color: #FBBF24;
    font-weight: 600;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.8);
}

/* Dramatic 3D Button Effects */
.hero-dramatic-btn-primary {
    background: linear-gradient(45deg, #F97316, #FBBF24);
    position: relative;
    overflow: hidden;
    color: white;
    font-weight: 700;
    transform: translateZ(40px) rotateX(8deg);
    box-shadow: 
        0 20px 50px rgba(249, 115, 22, 0.5), 
        0 0 40px rgba(251, 191, 36, 0.3), 
        inset 0 2px 4px rgba(255, 255, 255, 0.2);
}

.hero-dramatic-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
    transition: left 0.6s;
}

.hero-dramatic-btn-primary:hover::before {
    left: 100%;
}

.hero-dramatic-btn-primary:hover {
    box-shadow: 
        0 25px 60px rgba(249, 115, 22, 0.7), 
        0 0 50px rgba(251, 191, 36, 0.5);
    transform: translateZ(60px) rotateX(5deg) scale(1.05);
}

.hero-dramatic-btn-secondary {
    border: 3px solid #F97316;
    color: #F97316;
    transition: all 0.3s ease;
    font-weight: 700;
    transform: translateZ(40px) rotateX(8deg);
    box-shadow: 0 20px 50px rgba(249, 115, 22, 0.3), inset 0 1px 2px rgba(249, 115, 22, 0.2);
}

.hero-dramatic-btn-secondary:hover {
    background: #F97316;
    color: white;
    box-shadow: 0 25px 60px rgba(249, 115, 22, 0.5);
    transform: translateZ(60px) rotateX(5deg) scale(1.05);
}

/* Dramatic 3D Trust Indicator Cards */
.hero-dramatic-trust-card {
    background: rgba(11, 11, 12, 0.8);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(249, 115, 22, 0.5);
    transition: all 0.4s ease;
    transform: translateZ(60px) rotateX(8deg);
    box-shadow: 
        0 25px 60px rgba(249, 115, 22, 0.3), 
        inset 0 2px 4px rgba(249, 115, 22, 0.2), 
        0 0 0 1px rgba(249, 115, 22, 0.1);
}

.hero-dramatic-trust-card:hover {
    background: rgba(11, 11, 12, 0.95);
    border-color: rgba(249, 115, 22, 0.7);
    transform: translateZ(80px) rotateX(5deg) scale(1.1);
    box-shadow: 
        0 30px 80px rgba(249, 115, 22, 0.4), 
        inset 0 3px 6px rgba(249, 115, 22, 0.3);
}

.hero-dramatic-trust-card.yellow {
    border-color: rgba(251, 191, 36, 0.5);
    box-shadow: 
        0 25px 60px rgba(251, 191, 36, 0.3), 
        inset 0 2px 4px rgba(251, 191, 36, 0.2), 
        0 0 0 1px rgba(251, 191, 36, 0.1);
}

.hero-dramatic-trust-card.yellow:hover {
    border-color: rgba(251, 191, 36, 0.7);
    box-shadow: 
        0 30px 80px rgba(251, 191, 36, 0.4), 
        inset 0 3px 6px rgba(251, 191, 36, 0.3);
}

.hero-dramatic-trust-card .tc-orange {
    color: #F97316;
    font-weight: 700;
    text-shadow: 
        0 0 30px rgba(249, 115, 22, 0.8), 
        0 0 60px rgba(249, 115, 22, 0.4);
}

.hero-dramatic-trust-card .tc-yellow {
    color: #FBBF24;
    font-weight: 700;
    text-shadow: 
        0 0 30px rgba(251, 191, 36, 0.8), 
        0 0 60px rgba(251, 191, 36, 0.4);
}

/* Dramatic 3D Scroll Indicator */
.hero-dramatic-scroll-indicator {
    transform: translateZ(150px) rotateX(15deg);
    box-shadow: 0 0 30px rgba(249, 115, 22, 0.7), inset 0 2px 4px rgba(249, 115, 22, 0.3);
}

.hero-dramatic-scroll-indicator .indicator-dot {
    background: #F97316;
    box-shadow: 0 0 15px rgba(249, 115, 22, 0.9);
}

/* Dramatic 3D Animations */
@keyframes floatDramatic {
    0%, 100% { 
        transform: translateZ(200px) rotateX(60deg) rotateY(45deg) translateY(0px) scale(1); 
    }
    50% { 
        transform: translateZ(300px) rotateX(45deg) rotateY(30deg) translateY(-30px) scale(1.1); 
    }
}

@keyframes rotateDramatic {
    from { 
        transform: translateZ(150px) rotateX(60deg) rotateY(60deg) rotateZ(0deg); 
    }
    to { 
        transform: translateZ(150px) rotateX(60deg) rotateY(60deg) rotateZ(360deg); 
    }
}

@keyframes bounceDramatic {
    0%, 100% { 
        transform: translateZ(100px) rotateX(75deg) rotateY(-45deg) translateY(0px) scale(1); 
    }
    50% { 
        transform: translateZ(120px) rotateX(60deg) rotateY(-30deg) translateY(-15px) scale(1.2); 
    }
}

@keyframes pingDramatic {
    0% { 
        transform: translateZ(80px) rotateX(60deg) scale(1); 
        opacity: 1; 
    }
    75%, 100% { 
        transform: translateZ(100px) rotateX(45deg) scale(1.5); 
        opacity: 0; 
    }
}

@keyframes pulseDramatic {
    0%, 100% { 
        transform: translateZ(100px) rotateX(8deg) scale(1); 
    }
    50% { 
        transform: translateZ(120px) rotateX(5deg) scale(1.05); 
    }
}

/* Dramatic 3D Grid Pattern */
.hero-dramatic-grid {
    background-image: 
        linear-gradient(rgba(249, 115, 22, 0.2) 1px, transparent 1px),
        linear-gradient(90deg, rgba(249, 115, 22, 0.2) 1px, transparent 1px);
    background-size: 40px 40px;
    transform: perspective(800px) rotateX(70deg) translateZ(-200px);
    animation: gridDramatic 25s linear infinite;
}

@keyframes gridDramatic {
    0% { 
        transform: perspective(800px) rotateX(70deg) translateZ(-200px); 
    }
    100% { 
        transform: perspective(800px) rotateX(70deg) translateZ(100px); 
    }
}

/* Responsive Dramatic 3D Effects */
@media (max-width: 768px) {
    .hero-dramatic-title {
        font-size: 3rem;
        transform: translateZ(60px) rotateX(4deg);
    }
    
    .hero-dramatic-subtitle {
        font-size: 1.25rem;
        transform: translateZ(40px) rotateX(-1deg);
    }
    
    .hero-dramatic-trust-card {
        transform: translateZ(40px) rotateX(4deg);
        padding: 1.5rem;
    }
    
    .hero-dramatic-btn-primary,
    .hero-dramatic-btn-secondary {
        transform: translateZ(30px) rotateX(4deg);
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .perspective-1000 {
        perspective: 600px;
    }
}

/* Enhanced Story Section Styles */
.story-section-enhanced {
    position: relative;
    overflow: hidden;
}

.story-section-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.05) 0%, rgba(251, 191, 36, 0.05) 100%);
    pointer-events: none;
}

.story-header-badge {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(251, 191, 36, 0.1));
    border: 1px solid rgba(249, 115, 22, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.story-header-badge:hover {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(251, 191, 36, 0.2));
    border-color: rgba(249, 115, 22, 0.4);
    transform: translateY(-2px);
}

.story-card {
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.5), rgba(17, 24, 39, 0.5));
    backdrop-filter: blur(15px);
    border: 1px solid rgba(249, 115, 22, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.1), transparent);
    transition: left 0.6s ease;
}

.story-card:hover::before {
    left: 100%;
}

.story-card:hover {
    border-color: rgba(249, 115, 22, 0.4);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(249, 115, 22, 0.2),
        0 0 0 1px rgba(249, 115, 22, 0.1);
}

.story-card.yellow {
    border-color: rgba(251, 191, 36, 0.2);
}

.story-card.yellow:hover {
    border-color: rgba(251, 191, 36, 0.4);
    box-shadow: 
        0 20px 40px rgba(251, 191, 36, 0.2),
        0 0 0 1px rgba(251, 191, 36, 0.1);
}

.story-card.yellow::before {
    background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.1), transparent);
}

.story-icon {
    transition: all 0.3s ease;
}

.story-card:hover .story-icon {
    transform: scale(1.1) rotate(5deg);
}

.story-title {
    transition: color 0.3s ease;
}

.story-card:hover .story-title {
    color: #FBBF24;
}

.story-card.yellow:hover .story-title {
    color: #F97316;
}

.story-divider {
    background: linear-gradient(90deg, #F97316, #FBBF24);
    height: 4px;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.story-card:hover .story-divider {
    height: 6px;
    box-shadow: 0 0 10px rgba(249, 115, 22, 0.5);
}

.story-card.yellow:hover .story-divider {
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

/* Enhanced Story Content Section */
.story-content-enhanced {
    background: linear-gradient(135deg, rgba(11, 11, 12, 0.8), rgba(31, 41, 55, 0.8));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(249, 115, 22, 0.2);
    position: relative;
    overflow: hidden;
}

.story-content-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #F97316, #FBBF24, transparent);
}

.story-content-enhanced::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FBBF24, #F97316, transparent);
}

.story-stats-card {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(251, 191, 36, 0.2));
    border: 1px solid rgba(249, 115, 22, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.story-stats-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 30px rgba(249, 115, 22, 0.3);
}

.story-tag {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(251, 191, 36, 0.1));
    border: 1px solid rgba(249, 115, 22, 0.2);
    transition: all 0.3s ease;
}

.story-tag:hover {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(251, 191, 36, 0.2));
    border-color: rgba(249, 115, 22, 0.4);
    transform: translateY(-2px);
}

.story-tag.yellow {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(249, 115, 22, 0.1));
    border-color: rgba(251, 191, 36, 0.2);
}

.story-tag.yellow:hover {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(249, 115, 22, 0.2));
    border-color: rgba(251, 191, 36, 0.4);
}

/* Floating Background Elements */
.story-floating-element {
    position: absolute;
    border-radius: 50%;
    animation: storyFloat 8s ease-in-out infinite;
    pointer-events: none;
}

.story-floating-element:nth-child(1) {
    background: linear-gradient(45deg, rgba(249, 115, 22, 0.1), rgba(251, 191, 36, 0.1));
    animation-delay: 0s;
}

.story-floating-element:nth-child(2) {
    background: linear-gradient(45deg, rgba(251, 191, 36, 0.1), rgba(249, 115, 22, 0.1));
    animation-delay: -4s;
}

@keyframes storyFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) scale(1.1);
        opacity: 0.6;
    }
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .story-card {
        padding: 1.5rem;
    }
    
    .story-content-enhanced {
        padding: 2rem;
    }
    
    .story-stats-card {
        padding: 1.5rem;
    }
    
    .story-tag {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
    }
}

@media (max-width: 640px) {
    .story-card {
        padding: 0;
    }
    
    .story-content-enhanced {
        padding: 1.5rem;
    }
    
    .story-stats-card {
        padding: 0;
    }
}

/* Enhanced Leadership Team Section Styles */
.leadership-section-enhanced {
    position: relative;
    overflow: hidden;
}

.leadership-section-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.05) 0%, rgba(251, 191, 36, 0.05) 100%);
    pointer-events: none;
}

.leadership-header-badge {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(251, 191, 36, 0.1));
    border: 1px solid rgba(249, 115, 22, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.leadership-header-badge:hover {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(251, 191, 36, 0.2));
    border-color: rgba(249, 115, 22, 0.4);
    transform: translateY(-2px);
}

.leadership-card {
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.6), rgba(17, 24, 39, 0.6));
    backdrop-filter: blur(15px);
    border: 1px solid rgba(249, 115, 22, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.leadership-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.1), transparent);
    transition: left 0.6s ease;
}

.leadership-card:hover::before {
    left: 100%;
}

.leadership-card:hover {
    border-color: rgba(249, 115, 22, 0.4);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(249, 115, 22, 0.2),
        0 0 0 1px rgba(249, 115, 22, 0.1);
}

.leadership-card.yellow {
    border-color: rgba(251, 191, 36, 0.2);
}

.leadership-card.yellow:hover {
    border-color: rgba(251, 191, 36, 0.4);
    box-shadow: 
        0 20px 40px rgba(251, 191, 36, 0.2),
        0 0 0 1px rgba(251, 191, 36, 0.1);
}

.leadership-card.yellow::before {
    background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.1), transparent);
}

.leadership-avatar {
    transition: all 0.3s ease;
    position: relative;
}

.leadership-card:hover .leadership-avatar {
    transform: scale(1.1) rotate(5deg);
}

.leadership-status {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 32px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.leadership-card:hover .leadership-status {
    transform: scale(1.1);
}

.leadership-name {
    transition: color 0.3s ease;
}

.leadership-card:hover .leadership-name {
    color: #F97316;
}

.leadership-card.yellow:hover .leadership-name {
    color: #FBBF24;
}

.leadership-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.leadership-skill-tag {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(251, 191, 36, 0.1));
    border: 1px solid rgba(249, 115, 22, 0.2);
    transition: all 0.3s ease;
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 9999px;
}

.leadership-skill-tag:hover {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(251, 191, 36, 0.2));
    border-color: rgba(249, 115, 22, 0.4);
    transform: translateY(-2px);
}

.leadership-skill-tag.yellow {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(249, 115, 22, 0.1));
    border-color: rgba(251, 191, 36, 0.2);
}

.leadership-skill-tag.yellow:hover {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(249, 115, 22, 0.2));
    border-color: rgba(251, 191, 36, 0.4);
}

/* Enhanced Why Choose Us Section Styles */
.why-choose-section-enhanced {
    position: relative;
    overflow: hidden;
}

.why-choose-section-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.05) 0%, rgba(251, 191, 36, 0.05) 100%);
    pointer-events: none;
}

.why-choose-header-badge {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(251, 191, 36, 0.1));
    border: 1px solid rgba(249, 115, 22, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.why-choose-header-badge:hover {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(251, 191, 36, 0.2));
    border-color: rgba(249, 115, 22, 0.4);
    transform: translateY(-2px);
}

.why-choose-card {
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.6), rgba(17, 24, 39, 0.6));
    backdrop-filter: blur(15px);
    border: 1px solid rgba(249, 115, 22, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.why-choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.1), transparent);
    transition: left 0.6s ease;
}

.why-choose-card:hover::before {
    left: 100%;
}

.why-choose-card:hover {
    border-color: rgba(249, 115, 22, 0.4);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(249, 115, 22, 0.2),
        0 0 0 1px rgba(249, 115, 22, 0.1);
}

.why-choose-card.yellow {
    border-color: rgba(251, 191, 36, 0.2);
}

.why-choose-card.yellow:hover {
    border-color: rgba(251, 191, 36, 0.4);
    box-shadow: 
        0 20px 40px rgba(251, 191, 36, 0.2),
        0 0 0 1px rgba(251, 191, 36, 0.1);
}

.why-choose-card.yellow::before {
    background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.1), transparent);
}

.why-choose-icon {
    transition: all 0.3s ease;
}

.why-choose-card:hover .why-choose-icon {
    transform: scale(1.1) rotate(5deg);
}

.why-choose-title {
    transition: color 0.3s ease;
}

.why-choose-card:hover .why-choose-title {
    color: #F97316;
}

.why-choose-card.yellow:hover .why-choose-title {
    color: #FBBF24;
}

.why-choose-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.why-choose-tag {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(251, 191, 36, 0.1));
    border: 1px solid rgba(249, 115, 22, 0.2);
    transition: all 0.3s ease;
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 9999px;
}

.why-choose-tag:hover {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(251, 191, 36, 0.2));
    border-color: rgba(249, 115, 22, 0.4);
    transform: translateY(-2px);
}

.why-choose-tag.yellow {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(249, 115, 22, 0.1));
    border-color: rgba(251, 191, 36, 0.2);
}

.why-choose-tag.yellow:hover {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(249, 115, 22, 0.2));
    border-color: rgba(251, 191, 36, 0.4);
}

/* Enhanced Value Proposition Section */
.value-proposition-enhanced {
    background: linear-gradient(135deg, rgba(11, 11, 12, 0.8), rgba(31, 41, 55, 0.8));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(249, 115, 22, 0.2);
    position: relative;
    overflow: hidden;
}

.value-proposition-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #F97316, #FBBF24, transparent);
}

.value-proposition-enhanced::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FBBF24, #F97316, transparent);
}

.value-proposition-stats {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(251, 191, 36, 0.2));
    border: 1px solid rgba(249, 115, 22, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.value-proposition-stats:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 30px rgba(249, 115, 22, 0.3);
}

.value-proposition-tag {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(251, 191, 36, 0.1));
    border: 1px solid rgba(249, 115, 22, 0.2);
    transition: all 0.3s ease;
}

.value-proposition-tag:hover {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(251, 191, 36, 0.2));
    border-color: rgba(249, 115, 22, 0.4);
    transform: translateY(-2px);
}

.value-proposition-tag.yellow {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(249, 115, 22, 0.1));
    border-color: rgba(251, 191, 36, 0.2);
}

.value-proposition-tag.yellow:hover {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(249, 115, 22, 0.2));
    border-color: rgba(251, 191, 36, 0.4);
}

/* Floating Background Elements */
.leadership-floating-element {
    position: absolute;
    border-radius: 50%;
    animation: leadershipFloat 8s ease-in-out infinite;
    pointer-events: none;
}

.leadership-floating-element:nth-child(1) {
    background: linear-gradient(45deg, rgba(249, 115, 22, 0.1), rgba(251, 191, 36, 0.1));
    animation-delay: 0s;
}

.leadership-floating-element:nth-child(2) {
    background: linear-gradient(45deg, rgba(251, 191, 36, 0.1), rgba(249, 115, 22, 0.1));
    animation-delay: -4s;
}

@keyframes leadershipFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) scale(1.1);
        opacity: 0.6;
    }
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .leadership-card,
    .why-choose-card {
        padding: 1.5rem;
    }
    
    .value-proposition-enhanced {
        padding: 2rem;
    }
    
    .leadership-skills,
    .why-choose-tags {
        justify-content: center;
    }
    
    .leadership-skill-tag,
    .why-choose-tag,
    .value-proposition-tag {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }
}

@media (max-width: 640px) {
    .leadership-card,
    .why-choose-card {
        padding: 0;
    }
    
    .value-proposition-enhanced {
        padding: 1.5rem;
    }
    
    .leadership-avatar,
    .why-choose-icon {
        width: 48px;
        height: 48px;
    }
    
    .leadership-status {
        width: 24px;
        height: 24px;
        top: -4px;
        right: -4px;
    }
}

/* Comprehensive Page Animations for About Page */

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-180deg) scale(0.5);
    }
    to {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}

/* Animation Classes */
.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fade-in-left {
    animation: fadeInLeft 0.8s ease-out forwards;
}

.animate-fade-in-right {
    animation: fadeInRight 0.8s ease-out forwards;
}

.animate-fade-in-scale {
    animation: fadeInScale 0.8s ease-out forwards;
}

.animate-slide-in-down {
    animation: slideInDown 0.8s ease-out forwards;
}

.animate-slide-in-up {
    animation: slideInUp 0.8s ease-out forwards;
}

.animate-slide-in-left {
    animation: slideInLeft 0.8s ease-out forwards;
}

.animate-slide-in-right {
    animation: slideInRight 0.8s ease-out forwards;
}

.animate-zoom-in {
    animation: zoomIn 0.8s ease-out forwards;
}

.animate-rotate-in {
    animation: rotateIn 0.8s ease-out forwards;
}

/* Staggered Animation Delays */
.animate-delay-100 {
    animation-delay: 0.1s;
}

.animate-delay-200 {
    animation-delay: 0.2s;
}

.animate-delay-300 {
    animation-delay: 0.3s;
}

.animate-delay-400 {
    animation-delay: 0.4s;
}

.animate-delay-500 {
    animation-delay: 0.5s;
}

.animate-delay-600 {
    animation-delay: 0.6s;
}

.animate-delay-700 {
    animation-delay: 0.7s;
}

.animate-delay-800 {
    animation-delay: 0.8s;
}

.animate-delay-900 {
    animation-delay: 0.9s;
}

.animate-delay-1000 {
    animation-delay: 1s;
}

/* Initial Hidden State */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced Floating Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

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

@keyframes floatFast {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-30px);
    }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-float-slow {
    animation: floatSlow 8s ease-in-out infinite;
}

.animate-float-fast {
    animation: floatFast 4s ease-in-out infinite;
}

/* Enhanced Pulse Animations */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(249, 115, 22, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(249, 115, 22, 0.6);
    }
}

@keyframes pulseScale {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.animate-pulse-glow {
    animation: pulseGlow 2s ease-in-out infinite;
}

.animate-pulse-scale {
    animation: pulseScale 2s ease-in-out infinite;
}

/* Enhanced Rotation Animations */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes rotateReverse {
    from {
        transform: rotate(360deg);
    }
    to {
        transform: rotate(0deg);
    }
}

@keyframes rotateSlow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.animate-rotate {
    animation: rotate 20s linear infinite;
}

.animate-rotate-reverse {
    animation: rotateReverse 20s linear infinite;
}

.animate-rotate-slow {
    animation: rotateSlow 30s linear infinite;
}

/* Enhanced Bounce Animations */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes bounceSlow {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px) scale(1.05);
    }
}

@keyframes bounceFast {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.animate-bounce-slow {
    animation: bounceSlow 3s ease-in-out infinite;
}

.animate-bounce-fast {
    animation: bounceFast 1s ease-in-out infinite;
}

/* Enhanced Shake Animations */
@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-5px);
    }
    75% {
        transform: translateX(5px);
    }
}

@keyframes shakeVertical {
    0%, 100% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(-8px) scale(1.05);
    }
    75% {
        transform: translateY(5px);
    }
}

.animate-shake {
    animation: shake 0.5s ease-in-out;
}

.animate-shake-vertical {
    animation: shakeVertical 0.5s ease-in-out;
}

/* Enhanced Glow Animations */
@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(249, 115, 22, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(249, 115, 22, 0.6), 0 0 60px rgba(251, 191, 36, 0.4);
    }
}

@keyframes glowYellow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(251, 191, 36, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(251, 191, 36, 0.6), 0 0 60px rgba(249, 115, 22, 0.4);
    }
}

.animate-glow {
    animation: glow 2s ease-in-out infinite;
}

.animate-glow-yellow {
    animation: glowYellow 2s ease-in-out infinite;
}

/* Enhanced Scale Animations */
@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

@keyframes scaleOut {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(0);
    }
}

@keyframes scalePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.animate-scale-in {
    animation: scaleIn 0.5s ease-out forwards;
}

.animate-scale-out {
    animation: scaleOut 0.5s ease-out forwards;
}

.animate-scale-pulse {
    animation: scalePulse 2s ease-in-out infinite;
}

/* Enhanced Slide Animations */
@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes slideLeft {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes slideRight {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

.animate-slide-up {
    animation: slideUp 0.8s ease-out forwards;
}

.animate-slide-down {
    animation: slideDown 0.8s ease-out forwards;
}

.animate-slide-left {
    animation: slideLeft 0.8s ease-out forwards;
}

.animate-slide-right {
    animation: slideRight 0.8s ease-out forwards;
}

/* Enhanced Wobble Animations */
@keyframes wobble {
    0% {
        transform: translateX(0%);
    }
    15% {
        transform: translateX(-25%) rotate(-5deg);
    }
    30% {
        transform: translateX(20%) rotate(3deg);
    }
    45% {
        transform: translateX(-15%) rotate(-3deg);
    }
    60% {
        transform: translateX(10%) rotate(2deg);
    }
    75% {
        transform: translateX(-5%) rotate(-1deg);
    }
    100% {
        transform: translateX(0%);
    }
}

.animate-wobble {
    animation: wobble 1s ease-in-out;
}

/* Enhanced Jello Animations */
@keyframes jello {
    0% {
        transform: scale3d(1, 1, 1);
    }
    30% {
        transform: scale3d(1.25, 0.75, 1);
    }
    40% {
        transform: scale3d(0.75, 1.25, 1);
    }
    50% {
        transform: scale3d(1.15, 0.85, 1);
    }
    65% {
        transform: scale3d(0.95, 1.05, 1);
    }
    75% {
        transform: scale3d(1.05, 0.95, 1);
    }
    100% {
        transform: scale3d(1, 1, 1);
    }
}

.animate-jello {
    animation: jello 1s ease-in-out;
}

/* Enhanced Heartbeat Animations */
@keyframes heartbeat {
    0% {
        transform: scale(1);
    }
    14% {
        transform: scale(1.3);
    }
    28% {
        transform: scale(1);
    }
    42% {
        transform: scale(1.3);
    }
    70% {
        transform: scale(1);
    }
}

.animate-heartbeat {
    animation: heartbeat 1.3s ease-in-out infinite;
}

/* Enhanced Rubber Band Animations */
@keyframes rubberBand {
    0% {
        transform: scale(1);
    }
    30% {
        transform: scaleX(1.25) scaleY(0.75);
    }
    40% {
        transform: scaleX(0.75) scaleY(1.25);
    }
    50% {
        transform: scaleX(1.15) scaleY(0.85);
    }
    65% {
        transform: scaleX(0.95) scaleY(1.05);
    }
    75% {
        transform: scaleX(1.05) scaleY(0.95);
    }
    100% {
        transform: scale(1);
    }
}

.animate-rubber-band {
    animation: rubberBand 1s ease-in-out;
}

/* Enhanced Tada Animations */
@keyframes tada {
    0% {
        transform: scale(1);
    }
    10%, 20% {
        transform: scale(0.9) rotate(-3deg);
    }
    30%, 50%, 70%, 90% {
        transform: scale(1.1) rotate(3deg);
    }
    40%, 60%, 80% {
        transform: scale(1.1) rotate(-3deg);
    }
    100% {
        transform: scale(1) rotate(0);
    }
}

.animate-tada {
    animation: tada 1s ease-in-out;
}

/* Enhanced Swing Animations */
@keyframes swing {
    20% {
        transform: rotate(15deg);
    }
    40% {
        transform: rotate(-10deg);
    }
    60% {
        transform: rotate(5deg);
    }
    80% {
        transform: rotate(-5deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

.animate-swing {
    animation: swing 1s ease-in-out;
}

/* Enhanced Hover Animations */
.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hover-scale {
    transition: all 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

.hover-rotate {
    transition: all 0.3s ease;
}

.hover-rotate:hover {
    transform: rotate(5deg);
}

.hover-glow {
    transition: all 0.3s ease;
}

.hover-glow:hover {
    box-shadow: 0 0 30px rgba(249, 115, 22, 0.5);
}

/* Enhanced Text Animations */
@keyframes textShine {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

.animate-text-shine {
    background: linear-gradient(90deg, #F97316, #FBBF24, #F97316);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShine 2s linear infinite;
}

/* Enhanced Loading Animations */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.animate-spin {
    animation: spin 1s linear infinite;
}

@keyframes spinSlow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.animate-spin-slow {
    animation: spinSlow 3s linear infinite;
}

/* Enhanced Staggered Grid Animations */
.stagger-animation > * {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.stagger-animation > *:nth-child(1) { animation-delay: 0.1s; }
.stagger-animation > *:nth-child(2) { animation-delay: 0.2s; }
.stagger-animation > *:nth-child(3) { animation-delay: 0.3s; }
.stagger-animation > *:nth-child(4) { animation-delay: 0.4s; }
.stagger-animation > *:nth-child(5) { animation-delay: 0.5s; }
.stagger-animation > *:nth-child(6) { animation-delay: 0.6s; }

/* Enhanced Responsive Animations */
@media (max-width: 768px) {
    .animate-fade-in-up,
    .animate-fade-in-left,
    .animate-fade-in-right,
    .animate-slide-in-up,
    .animate-slide-in-left,
    .animate-slide-in-right {
        animation-duration: 0.6s;
    }
    
    .animate-float,
    .animate-float-slow,
    .animate-float-fast {
        animation-duration: 4s;
    }
}

@media (prefers-reduced-motion: reduce) {
    .animate-fade-in-up,
    .animate-fade-in-left,
    .animate-fade-in-right,
    .animate-fade-in-scale,
    .animate-slide-in-down,
    .animate-slide-in-up,
    .animate-slide-in-left,
    .animate-slide-in-right,
    .animate-zoom-in,
    .animate-rotate-in,
    .animate-float,
    .animate-float-slow,
    .animate-float-fast,
    .animate-pulse-glow,
    .animate-pulse-scale,
    .animate-rotate,
    .animate-rotate-reverse,
    .animate-rotate-slow,
    .animate-bounce-slow,
    .animate-bounce-fast,
    .animate-glow,
    .animate-glow-yellow,
    .animate-scale-pulse,
    .animate-heartbeat,
    .animate-text-shine,
    .animate-spin,
    .animate-spin-slow {
        animation: none;
    }
}

/* ========================================
   CUSTOM CSS BEYOND TAILWIND
   ======================================== */

/* 3D Tilt Effects */
.tc-tilt {
    perspective: 1000px;
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
}

/* Floating Orbs */
.floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    animation: float 6s ease-in-out infinite;
}

.floating-orb:nth-child(1) {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.3) 0%, transparent 70%);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-orb:nth-child(2) {
    width: 150px;
    height: 180px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.3) 0%, transparent 70%);
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-orb:nth-child(3) {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.2) 0%, transparent 70%);
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    25% {
        transform: translateY(-20px) translateX(10px);
    }
    50% {
        transform: translateY(-10px) translateX(-5px);
    }
    75% {
        transform: translateY(-30px) translateX(15px);
    }
}

/* Gradient Animations */
.animated-gradient {
    background: linear-gradient(-45deg, #F97316, #FBBF24, #EA580C, #F59E0B);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
}

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

/* Starfield Effect */
.starfield {
    position: relative;
    overflow: hidden;
}

.starfield::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(249, 115, 22, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(251, 191, 36, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(249, 115, 22, 0.4), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(251, 191, 36, 0.4), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(249, 115, 22, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: starfieldMove 20s linear infinite;
    pointer-events: none;
}

@keyframes starfieldMove {
    0% {
        transform: translateX(0) translateY(0);
    }
    100% {
        transform: translateX(-100px) translateY(-50px);
    }
}

/* Backdrop Blur Layers */
.backdrop-blur-layer {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Curved Footer Mask */
.footer-curved-mask {
    position: relative;
}

.footer-curved-mask::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.1));
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

/* Marquee Styles */
.marquee {
    overflow: hidden;
    white-space: nowrap;
}

.marquee-track {
    display: inline-block;
    animation: marquee 30s linear infinite;
}

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

/* Testimonials Slider */
.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
    min-width: 100%;
    flex-shrink: 0;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: #F97316;
    transform: scale(1.2);
}

/* FAQ Accordion */
.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-question {
    color: #F97316;
}

/* Form Validation Styles */
.field-error {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

input.error,
textarea.error,
select.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Animation Classes */
.animate-fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-fade-in-up.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.animate-fade-in-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.6s ease;
}

.animate-fade-in-scale.animate-in {
    opacity: 1;
    transform: scale(1);
}

.animate-slide-in-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.animate-slide-in-up.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.animate-fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
}

.animate-fade-in-left.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.animate-zoom-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.7s ease;
}

.animate-zoom-in.animate-in {
    opacity: 1;
    transform: scale(1);
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-pulse-glow {
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(249, 115, 22, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(249, 115, 22, 0.6);
    }
}

.animate-rotate {
    animation: rotate 10s linear infinite;
}

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

.animate-bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transform: translate3d(0,0,0);
    }
    40%, 43% {
        animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        transform: translate3d(0, -30px, 0);
    }
    70% {
        animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        transform: translate3d(0, -15px, 0);
    }
    90% {
        transform: translate3d(0,-4px,0);
    }
}

.animate-glow {
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px rgba(249, 115, 22, 0.5);
    }
    to {
        text-shadow: 0 0 30px rgba(249, 115, 22, 0.8), 0 0 40px rgba(251, 191, 36, 0.3);
    }
}

.animate-text-shine {
    background: linear-gradient(90deg, #F97316, #FBBF24, #F97316);
    background-size: 200% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShine 3s ease-in-out infinite;
}

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

/* Process Timeline */
.process-timeline {
    position: relative;
}

.progress-bar {
    height: 4px;
    background: linear-gradient(90deg, #F97316, #FBBF24);
    border-radius: 2px;
    width: 0;
    transition: width 1s ease-in-out;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .tc-tilt {
        transform: none !important;
    }
    
    .parallax {
        transform: none !important;
    }
    
    .starfield::before {
        animation: none;
    }
    
    .floating-orb {
        animation: none;
    }
    
    .marquee-track {
        animation: none;
    }
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .tc-tilt {
        transform: none !important;
    }
    
    .floating-orb {
        display: none;
    }
    
    .starfield::before {
        display: none;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .backdrop-blur-layer {
        background: rgba(0, 0, 0, 0.8);
        border: 2px solid rgba(255, 255, 255, 0.5);
    }
    
    .slider-dot {
        border: 2px solid rgba(255, 255, 255, 0.5);
    }
}

/* Print Styles */
@media print {
    .floating-orb,
    .starfield::before,
    .marquee,
    .testimonials-slider,
    .tc-tilt {
        display: none !important;
    }
    
    .animate-fade-in-up,
    .animate-fade-in-scale,
    .animate-slide-in-up,
    .animate-fade-in-left,
    .animate-zoom-in {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* Footer alignment refinements */
.footer-grid {
    align-items: start;
}

.footer-content .footer-column,
.footer-content .footer-brand,
.footer-content .contact-column {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.brand-social-trust {
    gap: 0.5rem;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .footer-grid {
        align-items: stretch;
    }
    .brand-social-trust {
        justify-content: center;
    }
}

/* Portfolio Page Styles */
.portfolio-filter-btn {
    @apply px-6 py-3 rounded-none border-2 border-gray-200 bg-white hover:border-tcOrange transition-all duration-300 font-medium;
}

.portfolio-filter-btn.active {
    @apply border-tcOrange bg-tcOrange/5;
}

.portfolio-card {
    @apply bg-white rounded-2xl p-6 shadow-lg hover:shadow-2xl transition-all duration-500 transform hover:-translate-y-2;
}

.portfolio-item {
    @apply opacity-0 translate-y-8;
    animation: fadeInUp 0.5s ease forwards;
}

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

/* Modal Styles */
#portfolio-modal {
    @apply fixed inset-0 z-50 hidden;
}

#portfolio-modal .modal-content {
    @apply max-h-[70vh] overflow-y-auto;
}

/* Portfolio Grid Animation */
.portfolio-item:nth-child(1) { animation-delay: 0.1s; }
.portfolio-item:nth-child(2) { animation-delay: 0.2s; }
.portfolio-item:nth-child(3) { animation-delay: 0.3s; }
.portfolio-item:nth-child(4) { animation-delay: 0.4s; }
.portfolio-item:nth-child(5) { animation-delay: 0.5s; }
.portfolio-item:nth-child(6) { animation-delay: 0.6s; }

/* Hover Effects */
.portfolio-card:hover {
    @apply shadow-2xl;
}

.portfolio-card img {
    @apply transition-transform duration-500;
}

.portfolio-card:hover img {
    @apply scale-110;
}

/* Filter Button Hover Effects */
.portfolio-filter-btn:hover {
    @apply transform scale-105;
}

.portfolio-filter-btn.active {
    @apply transform scale-105;
}

/* Modal Navigation */
#modal-prev:hover,
#modal-next:hover {
    @apply transform scale-105;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .portfolio-filter-btn {
        @apply px-4 py-2 text-sm;
    }
    
    .portfolio-card {
        @apply p-4;
    }
    
    #portfolio-modal .modal-content {
        @apply max-h-[80vh];
    }
}

/* Services Page Styles */
.service-block {
    @apply relative;
}

.service-block .bg-white {
    @apply transition-all duration-500 ease-out;
}

.service-block:hover .bg-white {
    @apply shadow-3xl;
    transform: translateY(-8px) rotateX(5deg) rotateY(5deg);
}

.service-block:nth-child(even):hover .bg-white {
    transform: translateY(-8px) rotateX(5deg) rotateY(-5deg);
}

/* 3D Hover Effects */
.service-block {
    perspective: 1000px;
}

.service-block .bg-white {
    transform-style: preserve-3d;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-block:hover .bg-white {
    transform: translateY(-12px) rotateX(8deg) rotateY(8deg) scale(1.02);
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(249, 115, 22, 0.1),
        0 0 50px rgba(249, 115, 22, 0.1);
}

.service-block:nth-child(even):hover .bg-white {
    transform: translateY(-12px) rotateX(8deg) rotateY(-8deg) scale(1.02);
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(251, 191, 36, 0.1),
        0 0 50px rgba(251, 191, 36, 0.1);
}

/* Service Icons */
.service-block .w-16.h-16 {
    @apply transition-all duration-500;
}

.service-block:hover .w-16.h-16 {
    @apply scale-110 rotate-12;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2);
}

/* Gallery Items */
.service-block .bg-white.rounded-none {
    @apply transition-all duration-300;
}

.service-block:hover .bg-white.rounded-none {
    @apply scale-105 shadow-lg;
}

/* CTA Buttons */
.service-block a {
    @apply transition-all duration-300;
}

.service-block a:hover {
    @apply scale-105 shadow-xl;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Staggered Animation */
.service-block:nth-child(1) { animation-delay: 0.1s; }
.service-block:nth-child(2) { animation-delay: 0.2s; }
.service-block:nth-child(3) { animation-delay: 0.3s; }
.service-block:nth-child(4) { animation-delay: 0.4s; }
.service-block:nth-child(5) { animation-delay: 0.5s; }
.service-block:nth-child(6) { animation-delay: 0.6s; }

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .service-block:hover .bg-white {
        transform: translateY(-8px) scale(1.01);
    }
    
    .service-block:nth-child(even):hover .bg-white {
        transform: translateY(-8px) scale(1.01);
    }
}

@media (max-width: 768px) {
    .service-block:hover .bg-white {
        transform: translateY(-4px) scale(1.005);
    }
    
    .service-block .p-12 {
        @apply p-8;
    }
    
    .service-block .p-8 {
        @apply p-6;
    }
}

/* Enhanced Shadow Effects */
.shadow-3xl {
    box-shadow: 0 35px 60px -12px rgba(0, 0, 0, 0.25);
}

/* Smooth Scrolling for Anchors */
html {
    scroll-behavior: smooth;
}

/* Service Block Entrance Animation */
.service-block {
    @apply opacity-0 translate-y-8;
    animation: slideInUp 0.8s ease forwards;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover State for Service Blocks */
.service-block:hover {
    z-index: 10;
}

/* Gallery Hover Effects */
.service-block .grid .bg-white {
    @apply transition-all duration-300;
}

.service-block:hover .grid .bg-white {
    @apply transform scale-105;
}

.service-block:hover .grid .bg-white:nth-child(1) {
    animation-delay: 0.1s;
}

.service-block:hover .grid .bg-white:nth-child(2) {
    animation-delay: 0.2s;
}

.service-block:hover .grid .bg-white:nth-child(3) {
    animation-delay: 0.3s;
}

.service-block:hover .grid .bg-white:nth-child(4) {
    animation-delay: 0.4s;
}

/* Enhanced Portfolio Hero Styles */
.portfolio-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* 3D Transform Effects */
.transform-style-preserve-3d {
    transform-style: preserve-3d;
}

/* Enhanced Glow Effects */
.group:hover .blur-xl {
    filter: blur(24px);
}

/* Floating Particles Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.group:hover .animate-bounce {
    animation: float 1s ease-in-out infinite;
}

/* Enhanced Typography */
.text-8xl {
    font-size: 6rem;
    line-height: 1;
}

@media (min-width: 1024px) {
    .text-8xl {
        font-size: 8rem;
    }
}

/* Scroll Indicator */
.scroll-indicator {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-8px) scale(1.05);
    }
}

/* Enhanced Gradient Text */
.animate-pulse {
    animation: pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Advanced Hover Effects */
.group:hover {
    transform: translateZ(20px);
}

/* Stats Card 3D Effects */
.group:hover .w-24.h-24 {
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(249, 115, 22, 0.2),
        0 0 50px rgba(249, 115, 22, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .text-6xl {
        font-size: 3rem;
    }
    
    .text-7xl {
        font-size: 4rem;
    }
    
    .w-24.h-24 {
        width: 5rem;
        height: 5rem;
    }
    
    .text-4xl {
        font-size: 2.5rem;
    }
}

/* Enhanced Button Effects */
.group:hover .bg-gradient-to-r {
    background-size: 200% 200%;
    animation: gradientShift 2s ease infinite;
}

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

/* Mesh Gradient Enhancement */
.absolute.inset-0 {
    background-attachment: fixed;
}

/* Floating Elements */
.absolute.-top-60 {
    animation: floatSlow 6s ease-in-out infinite;
}

.absolute.-bottom-60 {
    animation: floatSlow 8s ease-in-out infinite reverse;
}

@keyframes floatSlow {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    33% {
        transform: translateY(-20px) translateX(10px);
    }
    66% {
        transform: translateY(10px) translateX(-10px);
    }
}

/* Enhanced Process Step Icons - No Numbers */
.process-step-icon-enhanced {
    @apply relative w-20 h-20 mx-auto mb-6;
}

.process-step-icon-bg-enhanced {
    @apply w-full h-full bg-gradient-to-br from-tcOrange to-tcYellow rounded-full flex items-center justify-center text-white shadow-2xl transition-all duration-500 group-hover:scale-110 group-hover:rotate-12;
}

.process-step-enhanced:hover .process-step-icon-bg-enhanced {
    @apply shadow-tcOrange/50;
    box-shadow: 0 20px 40px -12px rgba(249, 115, 22, 0.4);
}

.process-step-pulse {
    @apply absolute inset-0 bg-gradient-to-br from-tcOrange to-tcYellow rounded-full opacity-0 group-hover:opacity-30 group-hover:scale-125 transition-all duration-500;
    animation: pulse 2s infinite;
}

/* Enhanced Process Step Content */
.process-step-content-enhanced {
    @apply text-center;
}

.process-step-title-enhanced {
    @apply text-xl font-bold text-white mb-4 group-hover:text-tcOrange transition-colors duration-300;
}

.process-step-description-enhanced {
    @apply text-gray-300 mb-4 leading-relaxed;
}

.process-step-features-enhanced {
    @apply space-y-2 mb-4;
}

.process-step-features-enhanced li {
    @apply text-sm text-gray-400 flex items-center justify-center gap-2;
}

.process-step-features-enhanced li:before {
    content: "✓";
    @apply text-tcOrange font-bold;
}

.process-step-duration {
    @apply flex items-center justify-center gap-2 text-sm text-tcYellow;
}

/* Enhanced Process Stats */
.process-stat-enhanced {
    @apply group;
}

.process-stat-icon-enhanced {
    @apply w-16 h-16 bg-gradient-to-br from-tcOrange/20 to-tcYellow/20 rounded-full flex items-center justify-center mx-auto mb-4 group-hover:scale-110 transition-transform duration-300;
}

.process-stat-number-enhanced {
    @apply text-4xl font-bold text-tcOrange mb-2;
}

.process-stat-label-enhanced {
    @apply text-white font-semibold mb-2;
}

.process-stat-description-enhanced {
    @apply text-gray-400 text-sm;
}

/* Timeline Line Enhancement */
.timeline-line-enhanced {
    @apply relative;
}

.timeline-progress {
    @apply absolute top-0 left-0 h-full bg-gradient-to-r from-tcOrange via-tcYellow to-tcOrange rounded-full;
    width: 0%;
    animation: timelineProgress 3s ease-in-out infinite;
}

@keyframes timelineProgress {
    0% { width: 0%; }
    50% { width: 100%; }
    100% { width: 0%; }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .process-step-icon-enhanced {
        @apply w-16 h-16;
    }
    
    .process-step-title-enhanced {
        @apply text-lg;
    }
    
    .process-step-description-enhanced {
        @apply text-sm;
    }
}

/* Hover Effects for Process Steps */
.process-step-enhanced {
    @apply transition-all duration-500;
}

.process-step-enhanced:hover {
    @apply transform -translate-y-2;
}

/* Icon Animations */
.process-step-icon-bg-enhanced svg {
    @apply transition-transform duration-300;
}

.process-step-enhanced:hover .process-step-icon-bg-enhanced svg {
    @apply scale-110;
}

/* Continuous Partner Logos Marquee */
.partners-marquee-container {
    @apply relative overflow-hidden;
    background: linear-gradient(90deg, transparent 0%, rgba(249,115,22,0.1) 50%, transparent 100%);
}

.partners-marquee-wrapper {
    @apply relative;
}

.partners-marquee-container::before {
    content: '';
    @apply absolute top-0 left-0 w-20 h-full bg-gradient-to-r from-tcBlack to-transparent z-10 pointer-events-none;
}

.partners-marquee-container::after {
    content: '';
    @apply absolute top-0 right-0 w-20 h-full bg-gradient-to-l from-tcBlack to-transparent z-10 pointer-events-none;
}

/* Smooth Transitions */
.partner-logo-card {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Glow Effect on Hover */
.partner-logo-card:hover::before {
    content: '';
    @apply absolute -inset-1 bg-gradient-to-r from-tcOrange to-tcYellow rounded-2xl blur opacity-30 -z-10;
}

/* Staggered Animation */
.partner-logo-item:nth-child(1) { animation-delay: 0s; }
.partner-logo-item:nth-child(2) { animation-delay: 0.1s; }
.partner-logo-item:nth-child(3) { animation-delay: 0.2s; }
.partner-logo-item:nth-child(4) { animation-delay: 0.3s; }
.partner-logo-item:nth-child(5) { animation-delay: 0.4s; }
.partner-logo-item:nth-child(6) { animation-delay: 0.5s; }
.partner-logo-item:nth-child(7) { animation-delay: 0.6s; }

/* Enhanced Trusted Partners Section */
.trusted-partners-section {
    position: relative;
    overflow: hidden;
}

.partner-card {
    @apply bg-transparent  rounded-2xl p-6 border-transparent text-center group transition-all duration-300 ease-in-out;
    transform-style: preserve-3d;
    transform: perspective(1000px);
}

.partner-card:hover {
    @apply border-tcOrange/50 shadow-2xl;
    transform: perspective(1000px) rotateY(5deg) rotateX(5deg) scale(1.05);
}

.partner-logo {
    @apply mb-4 transition-all duration-300;
}

.partner-name {
    @apply text-white font-semibold text-sm opacity-0 group-hover:opacity-100 transition-opacity duration-300;
}

.stats-card {
    @apply bg-transparent  rounded-2xl p-6 border-transparent group transition-all duration-300 ease-in-out;
    transform-style: preserve-3d;
    transform: perspective(1000px);
}

.stats-card:hover {
    @apply border-tcOrange/50 shadow-2xl;
    transform: perspective(1000px) rotateY(3deg) rotateX(3deg) scale(1.02);
}

.stats-icon {
    @apply w-16 h-16 bg-gradient-to-r from-tcOrange to-tcYellow rounded-full flex items-center justify-center mx-auto mb-4 shadow-lg;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.stats-card:hover .stats-icon {
    @apply scale-110 rotate-6;
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.6), 0 0 40px rgba(251, 191, 36, 0.4);
}

.stats-icon svg {
    @apply w-8 h-8 text-white;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.stats-card:hover .stats-icon svg {
    transform: scale(1.2) rotate(-6deg);
}

/* Floating animations */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes float-slow {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(3deg); }
}

@keyframes float-delayed {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(-3deg); }
}

@keyframes float-slow-delayed {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-35px) rotate(-5deg); }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-float-slow {
    animation: float-slow 8s ease-in-out infinite;
}

.animate-float-delayed {
    animation: float-delayed 7s ease-in-out infinite;
    animation-delay: 2s;
}

.animate-float-slow-delayed {
    animation: float-slow-delayed 9s ease-in-out infinite;
    animation-delay: 1s;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .partner-card {
        @apply p-4;
    }
    
    .stats-card {
        @apply p-4;
    }
    
    .stats-icon {
        @apply w-12 h-12;
    }
    
    .stats-icon svg {
        @apply w-6 h-6;
    }
}

/* Enhanced Partners Slider */
.marquee-container {
    @apply relative overflow-hidden py-8;
    mask: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
    -webkit-mask: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
}

.marquee-track {
    @apply flex whitespace-nowrap;
    animation: marquee-scroll 30s linear infinite;
    width: calc(200% + 2rem);
}

.marquee-track:hover {
    animation-play-state: paused;
}

.partner-logo-item {
    @apply flex-shrink-0 w-[200px] h-[120px] mx-4 bg-transparent  rounded-none flex items-center justify-center border-transparent relative overflow-hidden group;
    transition: all 0.3s ease-in-out;
    transform-style: preserve-3d;
    transform: perspective(1000px);
}

.partner-logo-item:hover {
    @apply border-tcOrange/50 shadow-2xl;
    transform: perspective(1000px) rotateY(5deg) rotateX(5deg) scale(1.05);
}

.partner-logo-wrapper {
    @apply w-full h-full flex items-center justify-center;
}

.partner-logo-item img {
    @apply max-w-[80%] max-h-[80%] object-contain grayscale opacity-70 transition-all duration-300 group-hover:grayscale-0 group-hover:opacity-100;
}

.partner-logo-item::before {
    content: '';
    @apply absolute inset-0 rounded-none opacity-0 transition-opacity duration-300;
    background: radial-gradient(circle at center, rgba(249,115,22,0.3) 0%, transparent 70%);
}

.partner-logo-item:hover::before {
    @apply opacity-100;
}

.partner-name {
    @apply absolute inset-0 flex items-center justify-center text-white text-lg font-semibold opacity-0 group-hover:opacity-100 transition-opacity duration-300 bg-black/50  rounded-none;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-50%); }
}

/* Responsive adjustments for slider */
@media (max-width: 768px) {
    .marquee-track {
        animation-duration: 20s;
    }
    .partner-logo-item {
        @apply w-[150px] h-[90px] mx-2;
    }
    .marquee-container {
        mask: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
        -webkit-mask: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    }
}

@media (max-width: 480px) {
    .partner-logo-item {
        @apply w-[120px] h-[80px] mx-1;
    }
    .marquee-track {
        animation-duration: 15s;
    }
}

/* Premium 3D Footer Styles */
#site-footer {
    position: relative;
    overflow: hidden;
    background: #0B0B0C;
}

/* 3D Background Elements */
.footer-bg-3d {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

/* Curved Gradient Top */
.footer-curved-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 180px;
    background: linear-gradient(135deg, #F97316 0%, #FBBF24 100%);
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120'%3E%3Cpath d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z' fill='%23F97316'/%3E%3Cpath d='M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z' fill='%23FBBF24'/%3E%3C/svg%3E");
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120'%3E%3Cpath d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z' fill='%23F97316'/%3E%3Cpath d='M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z' fill='%23FBBF24'/%3E%3C/svg%3E");
    mask-size: cover;
    -webkit-mask-size: cover;
    mask-position: center;
    -webkit-mask-position: center;
    opacity: 0.8;
}

/* Animated Orbs */
.footer-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: footer-orb-float 12s ease-in-out infinite;
}

.footer-orb-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #F97316 0%, transparent 70%);
    top: -150px;
    left: 10%;
    animation-delay: 0s;
}

.footer-orb-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #FBBF24 0%, transparent 70%);
    top: -100px;
    right: 15%;
    animation-delay: 4s;
}

.footer-orb-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #F97316 0%, transparent 70%);
    bottom: -125px;
    left: 60%;
    animation-delay: 8s;
}

/* Radial Highlights */
.footer-radial-highlight {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.4) 0%, transparent 70%);
    animation: footer-radial-shimmer 10s ease-in-out infinite;
}

.footer-highlight-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    left: 30%;
    animation-delay: 2s;
}

.footer-highlight-2 {
    width: 350px;
    height: 350px;
    bottom: -175px;
    right: 25%;
    animation-delay: 6s;
}

/* Top Decorative Band */
.footer-top-band {
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, #F97316 20%, #FBBF24 50%, #F97316 80%, transparent 100%);
    margin-bottom: 2rem;
}

/* Content Grid */
.footer-content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .footer-content-grid {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 3rem;
    }
}

/* Brand Column */
.footer-brand-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo-img {
    width: 60px;
    height: 180px;
    object-fit: contain;
    filter: brightness(1.1);
}

.footer-brand-text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFF7ED;
    margin: 0;
}

.footer-tagline {
    font-size: 0.9rem;
    color: #F97316;
    font-weight: 500;
    margin: 0;
    letter-spacing: 0.5px;
}

/* Social Icons */
.footer-socials {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 12px;
    color: #F97316;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.footer-social-link:hover {
    background: rgba(249, 115, 22, 0.1);
    border-color: #F97316;
    color: #FBBF24;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
}

.footer-social-link:focus-visible {
    outline: 2px solid #FBBF24;
    outline-offset: 2px;
}

/* Column Styling */
.footer-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-column-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFF7ED;
    margin: 0 0 1rem 0;
    position: relative;
}

.footer-column-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #F97316, #FBBF24);
    border-radius: 1px;
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: #A1A1AA;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-link:hover {
    color: #F97316;
    padding-left: 0.5rem;
}

.footer-link:focus-visible {
    outline: 2px solid #FBBF24;
    outline-offset: 2px;
    border-radius: 4px;
}

/* Contact Section */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.footer-contact-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #A1A1AA;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 0;
    border-radius: 8px;
}

.footer-contact-link:hover {
    color: #F97316;
    background: rgba(249, 115, 22, 0.1);
}

.footer-contact-link:focus-visible {
    outline: 2px solid #FBBF24;
    outline-offset: 2px;
}

.footer-address {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #A1A1AA;
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-whatsapp-cta {
    margin-top: 1rem;
}

.footer-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.footer-whatsapp-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.footer-whatsapp-btn:focus-visible {
    outline: 2px solid #FBBF24;
    outline-offset: 2px;
}

/* Policy Row */
.footer-policy-row {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    margin-top: 2rem;
}

.footer-policy-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.footer-policy-link {
    color: #A1A1AA;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-policy-link:hover {
    color: #F97316;
}

.footer-policy-link:focus-visible {
    outline: 2px solid #FBBF24;
    outline-offset: 2px;
    border-radius: 4px;
}

/* Bottom Bar */
.footer-bottom-bar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 640px) {
    .footer-bottom-bar {
        flex-direction: row;
    }
}

.footer-copyright {
    color: #A1A1AA;
    font-size: 0.85rem;
}

.footer-chips {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-chip {
    background: rgba(249, 115, 22, 0.1);
    color: #F97316;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(249, 115, 22, 0.3);
}

/* Animations */
@keyframes footer-orb-float {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) translateX(10px) rotate(120deg);
    }
    66% {
        transform: translateY(10px) translateX(-15px) rotate(240deg);
    }
}

@keyframes footer-radial-shimmer {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .footer-orb,
    .footer-radial-highlight {
        animation: none;
    }
    
    .footer-social-link:hover,
    .footer-whatsapp-btn:hover {
        transform: none;
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .footer-logo {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-socials {
        justify-content: center;
    }
    
    .footer-policy-links {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-orb {
        display: none;
    }
}

/* Ultra Premium Footer Styles */
#site-footer {
    position: relative;
    background: #0B0B0C;
    overflow: hidden;
}

#site-footer .animate-pulse {
    animation: footer-pulse 4s ease-in-out infinite;
}

@keyframes footer-pulse {
    0%, 100% {
        opacity: 0.2;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(1.1);
    }
}

/* Social Icons Hover Effects */
#site-footer .w-10.h-10 {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#site-footer .w-10.h-10:hover {
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
}

/* WhatsApp Button */
#site-footer .bg-green-600:hover {
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
}

/* Grid Pattern */
#site-footer .opacity-5 {
    background-image: radial-gradient(circle at 1px 1px, #F97316 1px, transparent 0);
    background-size: 20px 20px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    #site-footer .grid {
        gap: 2rem;
    }
    
    #site-footer .lg\\:col-span-2 {
        grid-column: span 1;
    }
    
    #site-footer .flex.space-x-4 {
        justify-content: center;
    }
}

/* Focus States for Accessibility */
#site-footer a:focus-visible {
    outline: 2px solid #FBBF24;
    outline-offset: 2px;
    border-radius: 4px;
}

/* Smooth Transitions */
#site-footer * {
    transition: all 0.3s ease;
}

/* Trusted Partners Marquee Styles */
.trusted-partners-section {
    background: linear-gradient(135deg, #FFF7ED 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.partners-marquee-container {
    position: relative;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem 0;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.partners-marquee {
    position: relative;
    overflow: hidden;
    padding: 0 4rem;
}

.partners-track {
    display: flex;
    animation: marqueeFlow 30s linear infinite;
    gap: 4rem;
    align-items: center;
    will-change: transform;
}

.partners-track:hover {
    animation-play-state: paused;
}

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

.partner-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    transition: all 0.3s ease;
    border: none;
}

.partner-logo:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.4);
    border-color: rgba(249, 115, 22, 0.3);
}

.partner-img {
    height: 180px;
    width: auto;
    max-width: 320px;
    opacity: 0.7;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
}

.partner-logo:hover .partner-img {
    opacity: 1;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
}

.marquee-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3rem;
    height: 3rem;
    background: transparent;
    border: 2px solid rgba(249, 115, 22, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F97316;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: none;
}

.marquee-control:hover {
    background: linear-gradient(135deg, #F97316, #FBBF24);
    color: white;
    border-color: #F97316;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
}

.marquee-prev {
    left: 1rem;
}

.marquee-next {
    right: 1rem;
}

/* 3D Service Cards Enhancement */
.service-card-3d {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2rem;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    position: relative;
    overflow: hidden;
}

.service-card-3d::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(251, 191, 36, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 2rem;
}

.service-card-3d:hover::before {
    opacity: 1;
}

.service-card-3d:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(249, 115, 22, 0.4);
    box-shadow: 
        0 25px 50px rgba(249, 115, 22, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Disable tilt on reduced motion */
@media (prefers-reduced-motion: reduce) {
    .tc-tilt {
        transform: none !important;
    }
    
    .partners-track {
        animation: none;
    }
    
    .service-card-3d:hover {
        transform: none;
    }
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .partners-marquee {
        padding: 0 1rem;
    }
    
    .marquee-control {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .marquee-prev {
        left: 0.5rem;
    }
    
    .marquee-next {
        right: 0.5rem;
    }
    
    .partner-img {
        height: 50px;
    }
    
    .partners-track {
        gap: 2rem;
    }
}

/* CTA Band 2025 Styles */
.cta-band-2025 {
    background: linear-gradient(135deg, #F97316 0%, #FBBF24 100%);
    position: relative;
    overflow: hidden;
}

.stats-chip {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0;
    padding: 1rem 1.5rem;
    transition: all 0.3s ease;
}

.stats-chip:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.stats-number {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stats-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cta-button-2025 {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: #F97316;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-button-2025::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button-2025:hover::before {
    left: 100%;
}

.cta-button-2025:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Testimonials Slider Styles */
.testimonials-section {
    background: linear-gradient(135deg, #FFF7ED 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.slider-container {
    overflow: hidden;
    border-radius: 2rem;
    position: relative;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 2rem;
}

.testimonial-card {
    background: transparent;
    border-radius: 2rem;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: none;
    transition: all 0.3s ease;
    text-align: center;
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 25px 50px rgba(249, 115, 22, 0.15);
    border-color: rgba(249, 115, 22, 0.3);
}

.star-rating {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
}

.star {
    color: #FBBF24;
    font-size: 1.5rem;
}

.testimonial-text {
    font-size: 1.25rem;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-avatar {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #F97316, #FBBF24);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0B0B0C;
    margin-bottom: 0.25rem;
}

.author-role {
    color: #6B7280;
    font-size: 0.875rem;
}

.slider-navigation {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.slider-btn {
    width: 3rem;
    height: 3rem;
    background: transparent;
    border: 2px solid rgba(249, 115, 22, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F97316;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: none;
}

.slider-btn:hover {
    background: linear-gradient(135deg, #F97316, #FBBF24);
    color: white;
    border-color: #F97316;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
}

.slider-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.pagination-dot {
    width: 0.75rem;
    height: 0.75rem;
    background: rgba(249, 115, 22, 0.3);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-dot.active {
    background: #F97316;
    transform: scale(1.2);
}

.pagination-dot:hover {
    background: #F97316;
    transform: scale(1.1);
}

/* FAQ Accordion Styles */
.faq-section {
    background: linear-gradient(135deg, #0B0B0C 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.faq-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(249, 115, 22, 0.4);
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.4);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    text-align: left;
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question::after {
    content: "+";
    font-size: 1.5rem;
    color: #F97316;
    transition: all 0.3s ease;
    font-weight: 300;
}

.faq-question.active::after {
    content: "−";
    transform: rotate(180deg);
}

.faq-question:hover {
    color: #F97316;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer.open {
    max-height: 500px;
    transition: max-height 0.3s ease-in;
}

.faq-answer-content {
    padding: 0 2rem 1.5rem;
    color: #e5e7eb;
    line-height: 1.6;
}

.faq-answer-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.faq-answer-content li {
    margin-bottom: 0.5rem;
}

.faq-answer-content strong {
    color: #FBBF24;
    font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .stats-chip {
        padding: 0.75rem 1rem;
    }
    
    .stats-number {
        font-size: 1.5rem;
    }
    
    .testimonial-slide {
        padding: 0 1rem;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .testimonial-text {
        font-size: 1.125rem;
    }
    
    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }
    
    .faq-answer-content {
        padding: 0 1.5rem 1.25rem;
    }
}

/* Mobile Menu Fix for All Pages */
.mobile-menu-button {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.mobile-menu-button:hover {
    background: rgba(249, 115, 22, 0.1);
}

@media (max-width: 768px) {
    .mobile-menu-button {
        display: block !important;
    }
    
    .desktop-nav {
        display: none !important;
    }
    
    .desktop-cta {
        display: none !important;
    }
}

@media (min-width: 769px) {
    .mobile-menu-button {
        display: none !important;
    }
    
    .mobile-menu {
        display: none !important;
    }
    
    .mobile-menu-overlay {
        display: none !important;
    }
}

/* Enhanced Mobile Menu */
.mobile-menu-improved {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 420px;
    height: 100vh;
    background: rgba(11, 11, 12, 0.98);
    backdrop-filter: blur(25px);
    z-index: 1000;
    transition: right 0.3s ease;
    overflow-y: auto;
    border-left: 1px solid rgba(249, 115, 22, 0.3);
}

.mobile-menu-improved:not(.hidden) {
    right: 0;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay:not(.hidden) {
    opacity: 1;
    visibility: visible;
}

/* Mobile Services Submenu Enhanced */
.mobile-services-submenu-improved {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(249, 115, 22, 0.05);
    border-radius: 8px;
    margin: 0.25rem 1rem;
}

.mobile-services-submenu-improved.active {
    max-height: 350px;
}

.mobile-services-submenu-improved:not(.hidden) {
    max-height: 350px;
}

/* New Home Page Styles - Clean & HD Quality */

/* Hero Section */
.hero-new {
    background: linear-gradient(135deg, #0B0B0C 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.floating-orb-new {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(251, 191, 36, 0.2));
    filter: blur(40px);
    animation: floatOrb 8s ease-in-out infinite;
}

.orb-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.orb-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.orb-3 {
    width: 150px;
    height: 180px;
    bottom: 20%;
    left: 15%;
    animation-delay: 4s;
}

@keyframes floatOrb {
    0%, 100% { 
        transform: translateY(0px) scale(1);
        opacity: 0.6;
    }
    50% { 
        transform: translateY(-20px) scale(1.1);
        opacity: 0.8;
    }
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(249, 115, 22, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(251, 191, 36, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    opacity: 0.3;
}

@keyframes gridMove {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-50px); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: rgba(249, 115, 22, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 50px;
    animation: slideInUp 1s ease-out;
}

.hero-title-new {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 1.5rem;
    animation: slideInUp 1s ease-out 0.2s both;
}

.gradient-text-new {
    background: linear-gradient(135deg, #F97316 0%, #FBBF24 50%, #F97316 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

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

.hero-subtitle-new {
    font-size: 1.25rem;
    color: #e5e7eb;
    line-height: 1.6;
    max-width: 600px;
    animation: slideInUp 1s ease-out 0.4s both;
}

.hero-buttons-new {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    animation: slideInUp 1s ease-out 0.6s both;
}

.btn-primary-new {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #F97316, #FBBF24);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary-new::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary-new:hover::before {
    left: 100%;
}

.btn-primary-new:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.4);
}

.btn-secondary-new {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-secondary-new:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    animation: slideInUp 1s ease-out 0.8s both;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #FBBF24;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: #9ca3af;
    font-weight: 500;
}

.hero-form-new {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2rem;
    padding: 2rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    animation: slideInUp 1s ease-out 1s both;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-title-new {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: #e5e7eb;
    font-size: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-input-new,
.form-select-new,
.form-textarea-new {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-input-new::placeholder,
.form-textarea-new::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-input-new:focus,
.form-select-new:focus,
.form-textarea-new:focus {
    outline: none;
    border-color: #F97316;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.form-checkbox {
    display: flex;
    align-items: center;
    margin: 1rem 0;
}

.form-checkbox input {
    margin-right: 0.5rem;
    accent-color: #F97316;
}

.form-checkbox label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.form-checkbox a {
    color: #F97316;
    text-decoration: none;
}

.form-checkbox a:hover {
    text-decoration: underline;
}

.btn-submit-new {
    width: 100%;
    background: linear-gradient(135deg, #F97316, #FBBF24);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(249, 115, 22, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-submit-new:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
}

/* Partners Section */
.partners-new {
    background: linear-gradient(135deg, #FFF7ED 0%, #f8fafc 100%);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: rgba(249, 115, 22, 0.1);
    border-radius: 50px;
    margin-bottom: 2rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: #0B0B0C;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.partners-marquee-new {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem 0;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.partners-track-new {
    display: flex;
    animation: marqueeFlow 30s linear infinite;
    gap: 4rem;
    align-items: center;
}

.partners-track-new:hover {
    animation-play-state: paused;
}

.partner-logo-new {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    transition: all 0.3s ease;
    border: none;
}

.partner-logo-new:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.4);
    border-color: rgba(249, 115, 22, 0.3);
}

.partner-img-new {
    height: 180px;
    width: auto;
    max-width: 320px;
    opacity: 1 !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.8)) drop-shadow(0 0 20px rgba(249, 115, 22, 0.3)) !important;
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
}

.partner-logo-new:hover .partner-img-new {
    opacity: 1 !important;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.9)) !important;
    transform: perspective(1000px) rotateX(5deg) rotateY(5deg) scale(1.05);
}

/* Services Section */
.services-new {
    background: linear-gradient(135deg, #0B0B0C 0%, #1a1a1a 100%);
}

.section-badge-dark {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 50px;
    margin-bottom: 2rem;
}

.section-title-dark {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle-dark {
    font-size: 1.25rem;
    color: #e5e7eb;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.service-card-new {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2rem;
    padding: 2rem;
    transition: all 0.4s ease;
    transform-style: preserve-3d;
    position: relative;
    overflow: hidden;
}

.service-card-new::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(251, 191, 36, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 2rem;
}

.service-card-new:hover::before {
    opacity: 1;
}

.service-card-new:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(249, 115, 22, 0.4);
    box-shadow: 
        0 25px 50px rgba(249, 115, 22, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

.service-icon-new {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #F97316, #FBBF24);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
}

.service-title-new {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.service-description-new {
    color: #e5e7eb;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-link-new {
    display: inline-flex;
    align-items: center;
    color: #FBBF24;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-link-new:hover {
    color: white;
    transform: translateX(5px);
}

/* Timeline Section */
.process-new {
    background: linear-gradient(135deg, #FFF7ED 0%, #f8fafc 100%);
}

.timeline-container {
    position: relative;
}

.timeline-line {
    position: absolute;
    top: 2rem;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #F97316, #FBBF24);
    border-radius: 1px;
    opacity: 0;
    transform: scaleX(0);
    transition: all 1s ease;
}

.timeline-line.animate {
    opacity: 1;
    transform: scaleX(1);
}

.timeline-step {
    text-align: center;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.timeline-step.animate {
    opacity: 1;
    transform: translateY(0);
}

.step-circle {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #F97316, #FBBF24);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    position: relative;
    z-index: 10;
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0B0B0C;
    margin-bottom: 0.5rem;
}

.step-description {
    color: #6b7280;
    line-height: 1.6;
}

/* Portfolio Section */
.portfolio-new {
    background: linear-gradient(135deg, #0B0B0C 0%, #1a1a1a 100%);
}

.portfolio-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: #e5e7eb;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, #F97316, #FBBF24);
    border-color: #F97316;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    transition: all 0.5s ease;
}

.portfolio-item.hidden {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

.portfolio-card-new {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.portfolio-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.2);
    border-color: rgba(249, 115, 22, 0.4);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
}

.portfolio-image img {
    transition: transform 0.3s ease;
}

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

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 1.5rem;
}

.portfolio-card-new:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-category {
    background: rgba(249, 115, 22, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.portfolio-view-btn {
    width: 3rem;
    height: 3rem;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.portfolio-view-btn:hover {
    background: linear-gradient(135deg, #F97316, #FBBF24);
    transform: scale(1.1);
}

.portfolio-content {
    padding: 1.5rem;
}

.portfolio-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.portfolio-description {
    color: #e5e7eb;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background: rgba(249, 115, 22, 0.2);
    color: #FBBF24;
    padding: 0.25rem 0.75rem;
    border-radius: 0;
    font-size: 0.75rem;
    font-weight: 600;
}

/* CTA Section */
.cta-new {
    background: linear-gradient(135deg, #F97316, #FBBF24);
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-chip {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0;
    padding: 1rem 1.5rem;
    transition: all 0.3s ease;
}

.stat-chip:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.stat-chip .stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-chip .stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: #F97316;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Testimonials Section */
.testimonials-new {
    background: linear-gradient(135deg, #FFF7ED 0%, #f8fafc 100%);
}

.testimonials-slider-new {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide-new {
    min-width: 100%;
    padding: 0 2rem;
}

.testimonial-card-new {
    background: transparent;
    border-radius: 2rem;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: none;
    text-align: center;
    transition: all 0.3s ease;
}

.testimonial-card-new:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 25px 50px rgba(249, 115, 22, 0.15);
    border-color: rgba(249, 115, 22, 0.3);
}

.star-rating {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.star {
    color: #FBBF24;
    font-size: 1.5rem;
}

.testimonial-text {
    font-size: 1.25rem;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-avatar {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #F97316, #FBBF24);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0B0B0C;
    margin-bottom: 0.25rem;
}

.author-role {
    color: #6b7280;
    font-size: 0.875rem;
}

.testimonials-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.nav-btn {
    width: 3rem;
    height: 3rem;
    background: transparent;
    border: 2px solid rgba(249, 115, 22, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F97316;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: none;
}

.nav-btn:hover {
    background: linear-gradient(135deg, #F97316, #FBBF24);
    color: white;
    border-color: #F97316;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
}

.testimonials-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.pagination-dot {
    width: 0.75rem;
    height: 0.75rem;
    background: rgba(249, 115, 22, 0.3);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-dot.active {
    background: #F97316;
    transform: scale(1.2);
}

.pagination-dot:hover {
    background: #F97316;
    transform: scale(1.1);
}

/* FAQ Section */
.faq-new {
    background: linear-gradient(135deg, #0B0B0C 0%, #1a1a1a 100%);
}

.faq-container-new {
    display: grid;
    gap: 1rem;
}

.faq-item-new {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item-new:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(249, 115, 22, 0.4);
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.4);
}

.faq-question-new {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    text-align: left;
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question-new:hover {
    color: #FBBF24;
}

.faq-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #F97316;
    transition: transform 0.3s ease;
}

.faq-question-new.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer-new {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-new.open {
    max-height: 300px;
}

.faq-content {
    padding: 0 2rem 1.5rem;
    color: #e5e7eb;
    line-height: 1.6;
}

.faq-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.faq-content li {
    margin-bottom: 0.5rem;
}

.faq-content strong {
    color: #FBBF24;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title-new {
        font-size: 2.5rem;
    }
    
    .hero-buttons-new {
        flex-direction: column;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .section-title,
    .section-title-dark {
        font-size: 2.5rem;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
    
    .cta-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-nav {
        margin-top: 1rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .tc-tilt,
    .floating-orb-new,
    .hero-grid,
    .gradient-text-new,
    .timeline-line,
    .timeline-step {
        animation: none !important;
        transform: none !important;
        transition: none !important;
    }
}

/* Header Logo Styles */
.header-logo-image-only {
    height: 50px;
    width: auto;
}

.mobile-logo-image-only {
    height: 40px;
    width: auto;
}
/* Enhanced Hero Section Styles */

/* Hero Enhanced Container */
.hero-enhanced {
    background: linear-gradient(135deg, #0B0B0C 0%, #1a1a1a 50%, #0B0B0C 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

/* Enhanced Floating Orbs */
.floating-orb-enhanced {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.3), rgba(251, 191, 36, 0.3));
    filter: blur(60px);
    animation: floatOrbEnhanced 10s ease-in-out infinite;
    box-shadow: 0 0 100px rgba(249, 115, 22, 0.2);
}

.orb-1-enhanced {
    width: 400px;
    height: 400px;
    top: 5%;
    left: 3%;
    animation-delay: 0s;
}

.orb-2-enhanced {
    width: 300px;
    height: 300px;
    top: 50%;
    right: 5%;
    animation-delay: 2s;
}

.orb-3-enhanced {
    width: 250px;
    height: 250px;
    bottom: 15%;
    left: 10%;
    animation-delay: 4s;
}

.orb-4-enhanced {
    width: 200px;
    height: 200px;
    top: 25%;
    right: 25%;
    animation-delay: 6s;
}

@keyframes floatOrbEnhanced {
    0%, 100% { 
        transform: translateY(0px) scale(1) rotate(0deg);
        opacity: 0.7;
    }
    25% { 
        transform: translateY(-30px) scale(1.1) rotate(90deg);
        opacity: 0.9;
    }
    50% { 
        transform: translateY(-20px) scale(0.9) rotate(180deg);
        opacity: 0.6;
    }
    75% { 
        transform: translateY(-40px) scale(1.05) rotate(270deg);
        opacity: 0.8;
    }
}

/* Enhanced Grid */
.hero-grid-enhanced {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(249, 115, 22, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(251, 191, 36, 0.15) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMoveEnhanced 25s linear infinite;
    opacity: 0.4;
}

@keyframes gridMoveEnhanced {
    0% { transform: translateY(0px) translateX(0px); }
    50% { transform: translateY(-30px) translateX(15px); }
    100% { transform: translateY(-60px) translateX(0px); }
}

/* Particle System */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(249, 115, 22, 0.8);
    border-radius: 50%;
    animation: particleFloat 8s linear infinite;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-delay: 1s; }
.particle:nth-child(3) { left: 30%; animation-delay: 2s; }
.particle:nth-child(4) { left: 40%; animation-delay: 3s; }
.particle:nth-child(5) { left: 50%; animation-delay: 4s; }
.particle:nth-child(6) { left: 60%; animation-delay: 5s; }
.particle:nth-child(7) { left: 70%; animation-delay: 6s; }
.particle:nth-child(8) { left: 80%; animation-delay: 7s; }

@keyframes particleFloat {
    0% { 
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% { 
        opacity: 1;
    }
    90% { 
        opacity: 1;
    }
    100% { 
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}

/* Geometric Shapes */
.geometric-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    background: linear-gradient(45deg, rgba(249, 115, 22, 0.1), rgba(251, 191, 36, 0.1));
    border: 1px solid rgba(249, 115, 22, 0.2);
}

.shape-1 {
    width: 100px;
    height: 50px;
    top: 20%;
    right: 20%;
    transform: rotate(45deg);
    animation: shapeRotate 15s linear infinite;
}

.shape-2 {
    width: 80px;
    height: 50px;
    bottom: 30%;
    left: 15%;
    border-radius: 50%;
    animation: shapeFloat 12s ease-in-out infinite;
}

.shape-3 {
    width: 60px;
    height: 180px;
    top: 60%;
    right: 10%;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation: shapePulse 8s ease-in-out infinite;
}

@keyframes shapeRotate {
    0% { transform: rotate(45deg); }
    100% { transform: rotate(405deg); }
}

@keyframes shapeFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes shapePulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 0.9; }
}

/* Enhanced Badge */
.hero-badge-enhanced {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background: rgba(249, 115, 22, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    animation: slideInUp 1s ease-out;
}

.badge-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.3), transparent);
    animation: badgeGlow 3s ease-in-out infinite;
}

@keyframes badgeGlow {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

/* Enhanced Title */
.hero-title-enhanced {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 2rem;
    animation: slideInUp 1s ease-out 0.2s both;
}

.title-line-1 {
    display: block;
    margin-bottom: 0.5rem;
    animation: fadeInLeft 1s ease-out 0.4s both;
}

.title-line-2 {
    display: block;
    animation: fadeInRight 1s ease-out 0.6s both;
}

.gradient-text-enhanced {
    background: linear-gradient(135deg, #F97316 0%, #FBBF24 25%, #F97316 50%, #FBBF24 75%, #F97316 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShiftEnhanced 4s ease-in-out infinite;
}

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

.typewriter-text {
    display: inline-block;
    overflow: hidden;
    border-right: 3px solid #F97316;
    white-space: nowrap;
    animation: typewriter 3s steps(40, end) 1s both, blink 1s infinite 4s;
}

@keyframes typewriter {
    0% { width: 0; }
    100% { width: 100%; }
}

@keyframes blink {
    0%, 50% { border-color: #F97316; }
    51%, 100% { border-color: transparent; }
}

/* Enhanced Subtitle */
.hero-subtitle-enhanced {
    font-size: 1.375rem;
    color: #e5e7eb;
    line-height: 1.7;
    max-width: 650px;
    animation: slideInUp 1s ease-out 0.8s both;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Enhanced Buttons */
.hero-buttons-enhanced {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    animation: slideInUp 1s ease-out 1s both;
}

.btn-primary-enhanced {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #F97316, #FBBF24);
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.4);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.btn-primary-enhanced::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-primary-enhanced:hover::before {
    left: 100%;
}

.btn-primary-enhanced:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(249, 115, 22, 0.6);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #F97316, #FBBF24);
    border-radius: 50px;
    opacity: 0;
    filter: blur(20px);
    transition: opacity 0.3s ease;
    z-index: -1;
}

.btn-primary-enhanced:hover .btn-glow {
    opacity: 0.7;
}

.btn-secondary-enhanced {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.btn-secondary-enhanced::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(251, 191, 36, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-secondary-enhanced:hover::before {
    opacity: 1;
}

.btn-secondary-enhanced:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: rgba(249, 115, 22, 0.6);
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.3);
}

/* Enhanced Stats */
.hero-stats-enhanced {
    display: flex;
    gap: 2rem;
    animation: slideInUp 1s ease-out 1.2s both;
}

.stat-item-enhanced {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.stat-item-enhanced:hover {
    transform: translateY(-8px) scale(1.05);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.2);
}

.stat-icon {
    font-size: 2rem;
    animation: bounce 2s ease-in-out infinite;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number-enhanced {
    font-size: 2rem;
    font-weight: 800;
    color: #F97316;
    line-height: 1;
}

.stat-label-enhanced {
    font-size: 0.875rem;
    color: #e5e7eb;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-8px) scale(1.05); }
}

/* Enhanced Form */
.hero-form-enhanced {
    animation: slideInUp 1s ease-out 1.4s both;
}

.form-container-enhanced {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.form-container-enhanced::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #F97316, #FBBF24, #F97316);
    background-size: 200% 100%;
    animation: gradientMove 3s ease-in-out infinite;
}

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

.form-header-enhanced {
    text-align: center;
    margin-bottom: 2rem;
}

.form-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

.form-title-enhanced {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.form-subtitle-enhanced {
    color: #e5e7eb;
    font-size: 1rem;
}

.form-group-enhanced {
    margin-bottom: 1.5rem;
}

.input-container, .select-container, .textarea-container {
    position: relative;
}

.form-input-enhanced, .form-select-enhanced, .form-textarea-enhanced {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-input-enhanced::placeholder, .form-textarea-enhanced::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-input-enhanced:focus, .form-select-enhanced:focus, .form-textarea-enhanced:focus {
    outline: none;
    border-color: #F97316;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.3);
}

.input-glow, .select-glow, .textarea-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #F97316, #FBBF24);
    border-radius: 12px;
    opacity: 0;
    filter: blur(10px);
    transition: opacity 0.3s ease;
    z-index: -1;
}

.form-input-enhanced:focus + .input-glow,
.form-select-enhanced:focus + .select-glow,
.form-textarea-enhanced:focus + .textarea-glow {
    opacity: 0.3;
}

.form-checkbox-enhanced {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.form-checkbox-enhanced input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #F97316;
    margin-top: 0.25rem;
}

.form-checkbox-enhanced label {
    color: #e5e7eb;
    font-size: 0.875rem;
    line-height: 1.5;
}

.link-enhanced {
    color: #F97316;
    text-decoration: none;
    transition: color 0.3s ease;
}

.link-enhanced:hover {
    color: #FBBF24;
}

.btn-submit-enhanced {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #F97316, #FBBF24);
    color: white;
    padding: 1.25rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.125rem;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-submit-enhanced:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.6);
}

.btn-submit-enhanced .btn-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #F97316, #FBBF24);
    border-radius: 12px;
    opacity: 0;
    filter: blur(15px);
    transition: opacity 0.3s ease;
    z-index: -1;
}

.btn-submit-enhanced:hover .btn-glow {
    opacity: 0.7;
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title-enhanced {
        font-size: 3rem;
    }
    
    .hero-stats-enhanced {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .stat-item-enhanced {
        flex: 1;
        min-width: 150px;
    }
}

@media (max-width: 768px) {
    .hero-title-enhanced {
        font-size: 2.5rem;
    }
    
    .hero-buttons-enhanced {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-primary-enhanced, .btn-secondary-enhanced {
        justify-content: center;
    }
    
    .hero-stats-enhanced {
        flex-direction: column;
    }
    
    .form-container-enhanced {
        padding: 1.5rem;
    }
}

@media (max-width: 640px) {
    .hero-title-enhanced {
        font-size: 2rem;
    }
    
    .hero-subtitle-enhanced {
        font-size: 1.125rem;
    }
    
    .floating-orb-enhanced {
        display: none;
    }
}
/* Hero Section Spacing Fixes */

/* Fix main content padding to account for fixed header */
main {
    padding-top: 5rem !important; /* Increased from pt-16 (4rem) to 5rem */
}

/* Enhanced Hero Section - Fixed spacing */
.hero-enhanced {
    min-height: calc(100vh - 5rem); /* Account for header height */
    padding-top: 2rem;
    padding-bottom: 2rem;
}

/* Form container adjustments */
.form-container-enhanced {
    margin-top: 1rem;
    max-width: 100%;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .hero-enhanced {
        min-height: calc(100vh - 4.5rem);
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }
    
    .form-container-enhanced {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    main {
        padding-top: 4.5rem !important;
    }
    
    .hero-enhanced {
        min-height: calc(100vh - 4.5rem);
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
    
    .hero-enhanced .grid {
        gap: 2rem !important;
    }
    
    .form-container-enhanced {
        margin-top: 1.5rem;
        padding: 1.5rem;
    }
}

@media (max-width: 640px) {
    main {
        padding-top: 4rem !important;
    }
    
    .hero-enhanced {
        min-height: calc(100vh - 4rem);
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
    
    .form-container-enhanced {
        margin-top: 1rem;
        padding: 0;
    }
}

/* Ensure proper z-index for form */
.hero-form-enhanced {
    position: relative;
    z-index: 10;
}

/* Fix any potential overlap issues */
.hero-enhanced .max-w-7xl {
    position: relative;
    z-index: 10;
}

/* Adjust floating elements to not interfere with form */
.floating-orb-enhanced {
    z-index: 1;
}

.geometric-shapes {
    z-index: 1;
}

.particles-container {
    z-index: 1;
}

.hero-grid-enhanced {
    z-index: 1;
}
/* Form Size and Positioning Fixes */

/* Make form smaller and better positioned */
.form-container-enhanced {
    max-width: 90%;
    margin: 0 auto;
    padding: 1.5rem;
}

/* Reduce form padding on smaller screens */
@media (max-width: 1024px) {
    .form-container-enhanced {
        padding: 1.25rem;
        max-width: 95%;
    }
}

@media (max-width: 768px) {
    .form-container-enhanced {
        padding: 0;
        max-width: 100%;
    }
    
    .form-title-enhanced {
        font-size: 1.5rem;
    }
    
    .form-subtitle-enhanced {
        font-size: 0.9rem;
    }
}

/* Adjust form inputs for better mobile experience */
.form-input-enhanced, .form-select-enhanced, .form-textarea-enhanced {
    padding: 0.875rem 1.25rem;
    font-size: 0.9rem;
}

/* Reduce button size slightly */
.btn-submit-enhanced {
    padding: 1rem 1.5rem;
    font-size: 1rem;
}

/* Adjust hero content spacing */
.hero-enhanced .space-y-10 > * + * {
    margin-top: 1.5rem;
}

@media (max-width: 768px) {
    .hero-enhanced .space-y-10 > * + * {
        margin-top: 1rem;
    }
}

/* Ensure form doesn't overlap with header */
.hero-form-enhanced {
    margin-top: 1rem;
}

@media (max-width: 1024px) {
    .hero-form-enhanced {
        margin-top: 1.5rem;
    }
}

/* Fix any z-index issues */
.hero-enhanced {
    position: relative;
    z-index: 1;
}

.hero-enhanced .relative.z-10 {
    z-index: 10;
}

/* Ultra Mobile Responsive Improvements */
@media (max-width: 768px) {
    /* Hero Section Container */
    .hero-enhanced {
        min-height: 100vh !important;
        min-height: 100dvh !important; /* Dynamic viewport height for modern browsers */
        padding: 1rem 0.5rem !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
        overflow-x: hidden !important;
    }
    
    /* Mobile Grid - Stack Everything Vertically */
    .hero-enhanced .grid,
    .mobile-hero-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem !important;
        align-items: center !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* Mobile Content Container */
    .hero-enhanced .max-w-7xl {
        max-width: 100% !important;
        padding: 0 1rem !important;
        width: 100% !important;
    }
    
    /* Mobile Badge - Smaller and Centered */
    .hero-badge-enhanced {
        padding: 0.5rem 1rem !important;
        font-size: 0.75rem !important;
        text-align: center !important;
        width: auto !important;
        max-width: 90% !important;
        margin: 0 auto 1rem auto !important;
        border-radius: 25px !important;
    }
    
    /* Mobile Title - Optimized Size */
    .hero-title-enhanced {
        font-size: 1.75rem !important;
        line-height: 1.1 !important;
        text-align: center !important;
        margin-bottom: 1rem !important;
        padding: 0 0.5rem !important;
        max-width: 100% !important;
        word-wrap: break-word !important;
        hyphens: auto !important;
    }
    
    .title-line-1,
    .title-line-2 {
        display: block !important;
        margin-bottom: 0.25rem !important;
    }
    
    /* Mobile Subtitle - Better Readability */
    .hero-subtitle-enhanced {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
        text-align: center !important;
        max-width: 100% !important;
        padding: 0 0.5rem !important;
        margin-bottom: 1.5rem !important;
        color: rgba(229, 231, 235, 0.9) !important;
    }
    
    /* Mobile Buttons - Stack Vertically */
    .hero-buttons-enhanced {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.75rem !important;
        width: 100% !important;
        max-width: 280px !important;
        margin: 0 auto 1.5rem auto !important;
        padding: 0 !important;
    }
    
    .btn-primary-enhanced,
    .btn-secondary-enhanced {
        width: 100% !important;
        justify-content: center !important;
        padding: 0.875rem 1.5rem !important;
        font-size: 0.9rem !important;
        border-radius: 25px !important;
        min-height: 44px !important; /* Touch-friendly */
        display: flex !important;
        align-items: center !important;
        text-align: center !important;
    }
    
    /* Mobile Stats - Simplified Layout */
    .hero-stats-enhanced {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.75rem !important;
        width: 100% !important;
        max-width: 280px !important;
        margin: 0 auto 1.5rem auto !important;
    }
    
    .stat-item-enhanced {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 0.75rem 1rem !important;
        width: 100% !important;
        border-radius: 12px !important;
        background: rgba(255, 255, 255, 0.03) !important;
    }
    
    .stat-icon {
        font-size: 1.25rem !important;
        margin-right: 0.5rem !important;
    }
    
    .stat-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-end !important;
        text-align: right !important;
    }
    
    .stat-number-enhanced {
        font-size: 1.25rem !important;
        line-height: 1 !important;
    }
    
    .stat-label-enhanced {
        font-size: 0.7rem !important;
        margin-top: 0.125rem !important;
    }
    
    /* Mobile Form - Full Width */
    .hero-form-enhanced {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .form-container-enhanced {
        width: 100% !important;
        max-width: 100% !important;
        padding: 1rem !important;
        margin: 0 !important;
        border-radius: 16px !important;
        background: rgba(255, 255, 255, 0.03) !important;
        backdrop-filter: blur(10px) !important;
    }
    
    /* Mobile Form Header */
    .form-header-enhanced {
        text-align: center !important;
        margin-bottom: 1rem !important;
    }
    
    .form-icon {
        font-size: 1.5rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .form-title-enhanced {
        font-size: 1.1rem !important;
        margin-bottom: 0.25rem !important;
        line-height: 1.2 !important;
    }
    
    .form-subtitle-enhanced {
        font-size: 0.8rem !important;
        line-height: 1.3 !important;
    }
    
    /* Mobile Form Inputs */
    .form-group-enhanced {
        margin-bottom: 1rem !important;
    }
    
    .form-input-enhanced,
    .form-select-enhanced,
    .form-textarea-enhanced {
        width: 100% !important;
        padding: 0.75rem !important;
        font-size: 0.9rem !important;
        border-radius: 8px !important;
        min-height: 44px !important; /* Touch-friendly */
        background: rgba(255, 255, 255, 0.05) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        color: white !important;
    }
    
    .form-textarea-enhanced {
        min-height: 80px !important;
        resize: vertical !important;
    }
    
    /* Touch-friendly improvements */
    .btn-primary-enhanced,
    .btn-secondary-enhanced,
    .btn-submit-enhanced {
        -webkit-tap-highlight-color: rgba(249, 115, 22, 0.3) !important;
        touch-action: manipulation !important;
        user-select: none !important;
    }
    
    .btn-primary-enhanced:active,
    .btn-secondary-enhanced:active,
    .btn-submit-enhanced:active {
        transform: scale(0.98) !important;
        transition: transform 0.1s ease !important;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    .hero-enhanced {
        padding: 0.5rem 0.25rem !important;
    }
    
    .hero-title-enhanced {
        font-size: 1.5rem !important;
        padding: 0 0.25rem !important;
    }
    
    .hero-subtitle-enhanced {
        font-size: 0.85rem !important;
        padding: 0 0.25rem !important;
    }
    
    .hero-buttons-enhanced {
        max-width: 260px !important;
    }
    
    .btn-primary-enhanced,
    .btn-secondary-enhanced {
        padding: 0.75rem 1.25rem !important;
        font-size: 0.85rem !important;
    }
}

    }
}

}



/* Clean Responsive Hero Section - Same for Desktop and Mobile */

/* Base hero styles - works for all devices */
.hero-enhanced {
    background: linear-gradient(135deg, #0B0B0C 0%, #1a1a1a 50%, #0B0B0C 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Hero grid - responsive by default */
.hero-enhanced .grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    width: 100%;
}

/* Desktop grid - 2 columns */
@media (min-width: 1024px) {
    .hero-enhanced .grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

/* Hero title - responsive typography */
.hero-title-enhanced {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .hero-title-enhanced {
        font-size: 3.5rem;
        text-align: left;
    }
}

@media (min-width: 1024px) {
    .hero-title-enhanced {
        font-size: 4rem;
    }
}

/* Hero subtitle - responsive typography */
.hero-subtitle-enhanced {
    font-size: 1rem;
    color: #e5e7eb;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .hero-subtitle-enhanced {
        font-size: 1.25rem;
        text-align: left;
    }
}

/* Hero buttons - responsive layout */
.hero-buttons-enhanced {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .hero-buttons-enhanced {
        flex-direction: row;
        gap: 1.5rem;
    }
}

/* Button styles - same for all devices */
.btn-primary-enhanced,
.btn-secondary-enhanced {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    min-height: 44px;
    width: 100%;
}

@media (min-width: 768px) {
    .btn-primary-enhanced,
    .btn-secondary-enhanced {
        width: auto;
    }
}

/* Hero stats - responsive layout */
.hero-stats-enhanced {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .hero-stats-enhanced {
        flex-direction: row;
        gap: 2rem;
    }
}

/* Hero form - responsive */
.hero-form-enhanced {
    width: 100%;
}

.form-container-enhanced {
    width: 100%;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
}

@media (min-width: 768px) {
    .form-container-enhanced {
        padding: 2rem;
    }
}

/* Form inputs - responsive */
.form-input-enhanced,
.form-select-enhanced,
.form-textarea-enhanced {
    width: 100%;
    padding: 0;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    min-height: 44px;
}

/* Hide complex animations on mobile for performance */
@media (max-width: 768px) {
    .floating-orb-enhanced,
    .geometric-shapes,
    .particles-container {
        display: none;
    }
    
    .hero-grid-enhanced {
        opacity: 0.1;
        background-size: 20px 20px;
        animation: none;
    }
}

/* Mobile menu - keep existing functionality */
@media (max-width: 768px) {
    .mobile-menu-button {
        display: block;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .desktop-cta {
        display: none;
    }
}

/* Remove mobile-hero-grid class - not needed */
.mobile-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    width: 100%;
}

@media (min-width: 1024px) {
    .mobile-hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}



/* Fix White Line Below Header */
.header-improved {
    border-bottom: none !important;
    box-shadow: none !important;
}

/* Ensure no gap between header and hero */
main {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* Ensure hero section starts immediately after header */
.hero-enhanced {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Remove any potential white lines from all elements */
* {
    border-bottom: none !important;
}

/* Specifically target header elements */
header,
.header-improved,
.header-bg {
    border-bottom: none !important;
    box-shadow: none !important;
    background: rgba(11, 11, 12, 0.95) !important;
    backdrop-filter: blur(20px) !important;
}

/* Ensure no white space between header and hero */
body {
    margin: 0 !important;
    padding: 0 !important;
}

html {
    margin: 0 !important;
    padding: 0 !important;
}



/* Additional Fix for White Line - Force Hero to Start at Top */
.hero-enhanced {
    margin-top: 0 !important;
    padding-top: 0 !important;
    position: relative !important;
    top: 0 !important;
}

/* Ensure header is properly positioned */
.header-improved {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 50 !important;
    background: rgba(11, 11, 12, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    border-bottom: none !important;
    box-shadow: none !important;
}

/* Remove any default margins/padding that might cause gaps */
body, html {
    margin: 0 !important;
    padding: 0 !important;
}

/* Ensure main content starts immediately after header */
main {
    margin-top: 0 !important;
    padding-top: 0 !important;
}


/* Fix Services Dropdown White Background */
.form-select-enhanced {
    background: rgba(255, 255, 255, 0.05) !important;
    color: white !important;
    border: 2px solid rgba(255, 255, 255, 0.1) !important;
}

/* Style dropdown options */
.form-select-enhanced option {
    background: #1a1a1a !important;
    color: white !important;
    padding: 10px !important;
    border: none !important;
}

/* Style dropdown when open */
.form-select-enhanced:focus {
    background: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
}

/* Ensure dropdown arrow is visible */
.form-select-enhanced {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right 1rem center !important;
    background-size: 1rem !important;
    padding-right: 3rem !important;
}

/* Fix for all select elements in the form */
.hero-form-enhanced select,
.form-container-enhanced select,
select {
    background: rgba(255, 255, 255, 0.05) !important;
    color: white !important;
    border: 2px solid rgba(255, 255, 255, 0.1) !important;
}

.hero-form-enhanced select option,
.form-container-enhanced select option,
select option {
    background: #1a1a1a !important;
    color: white !important;
    padding: 10px !important;
    border: none !important;
}

/* Ensure dropdown is dark themed */
select:focus {
    background: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    outline: none !important;
    border-color: #F97316 !important;
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.3) !important;
}


/* Fix Hero Section Overlapping with Header */
.hero-enhanced {
    padding-top: 80px !important;
    margin-top: 0 !important;
}

/* Ensure header stays on top */
.header-improved {
    z-index: 9999 !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
}

/* Ensure hero section is below header */
.hero-enhanced {
    position: relative !important;
    z-index: 1 !important;
}

/* Add proper spacing for mobile */
@media (max-width: 768px) {
    .hero-enhanced {
        padding-top: 70px !important;
    }
}

/* Ensure main content starts below header */
main {
    padding-top: 0 !important;
    margin-top: 0 !important;
}



/* Make Statistics Smaller and Center Text */
.hero-stats-enhanced {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.stat-item-enhanced {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    min-width: 80px;
    text-align: center;
}

.stat-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.stat-number-enhanced {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.25rem;
    text-align: center;
}

.stat-label-enhanced {
    font-size: 0.75rem;
    color: #e5e7eb;
    text-align: center;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .hero-stats-enhanced {
        flex-direction: row;
        gap: 0.5rem;
        justify-content: center;
    }
    
    .stat-item-enhanced {
        padding: 0.5rem 0.75rem;
        min-width: 70px;
    }
    
    .stat-number-enhanced {
        font-size: 1.25rem;
    }
    
    .stat-label-enhanced {
        font-size: 0.65rem;
    }
}



/* Fix Hero Form Position */
.hero-enhanced .grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .hero-enhanced .grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
    }
}

/* Ensure form is properly positioned */
.hero-form-enhanced {
    width: 100%;
    position: relative;
    z-index: 10;
}

.form-container-enhanced {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Mobile form positioning */
@media (max-width: 768px) {
    .hero-form-enhanced {
        margin-top: 2rem;
    }
    
    .form-container-enhanced {
        padding: 1.5rem;
        margin: 0;
    }
}



/* Fix Hero Section Layout - Form on Right Side */
.hero-enhanced .grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-enhanced .grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
    }
}

/* Left Content - Text and Stats */
.hero-enhanced .space-y-10 {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

/* Right Content - Form */
.hero-form-enhanced {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-container-enhanced {
    width: 100%;
    max-width: 500px;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Mobile Layout */
@media (max-width: 1023px) {
    .hero-enhanced .grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-form-enhanced {
        order: 2;
        margin-top: 2rem;
    }
    
    .space-y-10 {
        order: 1;
    }
}

/* Ensure proper spacing */
.hero-stats-enhanced {
    margin-top: 1rem;
    margin-bottom: 0;
}



/* Hide Typewriter Cursor */
.typewriter-text {
    border-right: none !important;
    animation: typewriter 3s steps(40, end) 1s both !important;
}

/* Remove blink animation */
@keyframes blink {
    0%, 100% { border-color: transparent; }
    50% { border-color: transparent; }
}



/* Fix Hero Section Layout - Form on Right Side */
.hero-enhanced .grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-enhanced .grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
    }
}

/* Left Content - Text and Stats */
.hero-enhanced .space-y-10 {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

/* Right Content - Form */
.hero-form-enhanced {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-container-enhanced {
    width: 100%;
    max-width: 500px;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Mobile Layout */
@media (max-width: 1023px) {
    .hero-enhanced .grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-form-enhanced {
        order: 2;
        margin-top: 2rem;
    }
    
    .space-y-10 {
        order: 1;
    }
}

/* Ensure proper spacing */
.hero-stats-enhanced {
    margin-top: 1rem;
    margin-bottom: 0;
}


/* Improved Consultation Form */
.hero-form-new {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: slideInUp 1s ease-out 1s both;
    position: relative;
    overflow: hidden;
}

.hero-form-new::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #F97316, transparent);
    animation: shimmer 2s infinite;
}

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

/* Form Header */
.form-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.form-header::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #F97316, #FBBF24);
    border-radius: 2px;
}

.form-title-new {
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff, #e5e7eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-subtitle {
    color: #d1d5db;
    font-size: 1rem;
    font-weight: 400;
}

/* Form Groups */
.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

/* Form Inputs */
.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #F97316;
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.15);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

/* Select Dropdown */
.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
    padding-right: 3rem;
}

.form-select option {
    background: #1a1a1a;
    color: white;
    padding: 0;
}

/* Textarea */
.form-textarea {
    resize: vertical;
    min-height: 180px;
    font-family: inherit;
}

/* Checkbox */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #d1d5db;
    font-size: 0.9rem;
    line-height: 1.5;
    cursor: pointer;
    transition: color 0.3s ease;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #F97316;
    margin: 0;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label a {
    color: #F97316;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.checkbox-label a:hover {
    color: #FBBF24;
    text-decoration: underline;
}

/* Submit Button */
.form-submit {
    width: 100%;
    background: linear-gradient(135deg, #F97316, #FBBF24);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.form-submit::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
}

.form-submit:hover::before {
    left: 100%;
}

.form-submit:active {
    transform: translateY(0);
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-form-new {
        padding: 1.5rem;
        margin-top: 2rem;
    }
    
    .form-title-new {
        font-size: 1.5rem;
    }
    
    .form-input,
    .form-select,
    .form-textarea {
        padding: 0.875rem 1rem;
    }
    
    .form-submit {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}


/* Make Form Smaller */
.hero-form-new {
    padding: 1.5rem !important;
    max-width: 400px !important;
    margin: 0 auto !important;
}

.form-title-new {
    font-size: 1.25rem !important;
    margin-bottom: 0.25rem !important;
}

.form-subtitle {
    font-size: 0.875rem !important;
    margin-bottom: 1.5rem !important;
}

.form-group {
    margin-bottom: 1rem !important;
}

.form-input,
.form-select,
.form-textarea {
    padding: 0.75rem 1rem !important;
    font-size: 0.9rem !important;
}

.form-textarea {
    min-height: 80px !important;
}

.form-submit {
    padding: 0.75rem 1.5rem !important;
    font-size: 1rem !important;
}

.checkbox-label {
    font-size: 0.8rem !important;
    gap: 0.5rem !important;
}

.checkbox-label input[type="checkbox"] {
    width: 16px !important;
    height: 16px !important;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .hero-form-new {
        padding: 1rem !important;
        max-width: 100% !important;
    }
    
    .form-title-new {
        font-size: 1.125rem !important;
    }
    
    .form-input,
    .form-select,
    .form-textarea {
        padding: 0.625rem 0.875rem !important;
        font-size: 0.875rem !important;
    }
    
    .form-submit {
        padding: 0.625rem 1.25rem !important;
        font-size: 0.9rem !important;
    }
}



/* Mobile Responsive Header */
.header-improved {
    background: rgba(11, 11, 12, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    transition: all 0.3s ease;
}

/* Header Container */
.header-improved nav {
    padding: 0 1rem;
}

.header-improved .flex {
    height: 180px;
    align-items: center;
}

/* Logo */
.header-logo-image-only {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

/* Desktop Navigation - Hidden on Mobile */
.desktop-nav {
    display: none;
}

.desktop-cta {
    display: none;
}

/* Mobile Menu Button */
.mobile-menu-button {
    display: block;
    background: none;
    border: none;
    color: white;
    padding: 0;
    border-radius: 8px;
    transition: all 0.3s ease;
    z-index: 10001;
}

.mobile-menu-button:hover {
    background: rgba(249, 115, 22, 0.1);
    color: #F97316;
}

.mobile-menu-button:active {
    transform: scale(0.95);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay:not(.hidden) {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu */
.mobile-menu-improved {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(11, 11, 12, 0.98);
    backdrop-filter: blur(20px);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 9999;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mobile-menu-improved:not(.hidden) {
    right: 0;
}

/* Mobile Menu Header */
.mobile-menu-header-improved {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-logo-improved img {
    height: 35px;
    width: auto;
}

.mobile-menu-close-improved {
    background: none;
    border: none;
    color: white;
    padding: 0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-close-improved:hover {
    background: rgba(249, 115, 22, 0.1);
    color: #F97316;
}

/* Mobile Menu Content */
.mobile-menu-content {
    padding: 0;
}

.mobile-nav-links-improved {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-links-improved li {
    margin-bottom: 0.5rem;
}

.mobile-nav-links-improved a {
    display: block;
    padding: 0.75rem 1rem;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.mobile-nav-links-improved a:hover {
    background: rgba(249, 115, 22, 0.1);
    color: #F97316;
    transform: translateX(5px);
}

/* Services Toggle */
.services-toggle-improved {
    width: 100%;
    background: none;
    border: none;
    color: white;
    padding: 0.75rem 1rem;
    text-align: left;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.services-toggle-improved:hover {
    background: rgba(249, 115, 22, 0.1);
    color: #F97316;
}

.services-toggle-arrow-improved {
    transition: transform 0.3s ease;
    font-size: 0.8rem;
}

.services-toggle-improved.active .services-toggle-arrow-improved {
    transform: rotate(180deg);
}

/* Services Submenu */
.mobile-services-submenu-improved {
    margin-left: 1rem;
    margin-top: 0.5rem;
    border-left: 2px solid rgba(249, 115, 22, 0.3);
    padding-left: 1rem;
}

.mobile-services-submenu-improved a {
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
    color: #d1d5db;
}

.mobile-services-submenu-improved a:hover {
    color: #F97316;
    background: rgba(249, 115, 22, 0.05);
}

/* Mobile CTA Section */
.mobile-cta-section {
    margin-top: 2rem;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-header-cta-button {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #F97316, #FBBF24);
    color: white;
    text-align: center;
    padding: 0.875rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.mobile-header-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
}

/* Tablet Responsive */
@media (min-width: 768px) {
    .desktop-nav {
        display: block;
    }
    
    .desktop-cta {
        display: flex;
    }
    
    .mobile-menu-button {
        display: none;
    }
    
    .header-improved .flex {
        height: 64px;
    }
    
    .header-logo-image-only {
        height: 45px;
    }
}

/* Desktop Responsive */
@media (min-width: 1024px) {
    .header-improved nav {
        padding: 0 2rem;
    }
    
    .header-improved .flex {
        height: 70px;
    }
    
    .header-logo-image-only {
        height: 50px;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .mobile-menu-improved {
        width: 100%;
        right: -100%;
    }
    
    .header-improved .flex {
        height: 56px;
    }
    
    .header-logo-image-only {
        height: 35px;
    }
    
    .mobile-menu-button {
        padding: 0.375rem;
    }
}



/* Enhanced Trusted Partners Section */
.partners-enhanced {
    background: linear-gradient(135deg, #0B0B0C 0%, #1a1a1a 50%, #0B0B0C 100%);
    position: relative;
    overflow: hidden;
}

/* Background Elements */
.partners-enhanced::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(251, 191, 36, 0.05) 50%, rgba(249, 115, 22, 0.1) 100%);
    animation: pulse 4s ease-in-out infinite;
}

.partners-enhanced::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(249, 115, 22, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(251, 191, 36, 0.1) 0%, transparent 50%);
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

/* Section Badge */
.partners-enhanced .section-badge {
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    display: inline-block;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.partners-enhanced .section-badge span {
    color: #F97316;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
}

/* Section Title */
.partners-enhanced .section-title {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.partners-enhanced .gradient-text-new {
    background: linear-gradient(135deg, #F97316, #FBBF24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Section Subtitle */
.partners-enhanced .section-subtitle {
    font-size: 1.25rem;
    color: #d1d5db;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

/* Partners Marquee */
.partners-enhanced .partners-marquee-new {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    position: relative;
}

.partners-enhanced .partners-marquee-new::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #F97316, transparent);
    animation: shimmer 3s infinite;
}

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

/* Partners Track */
.partners-enhanced .partners-track-new {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 3rem;
    animation: scroll 20s linear infinite;
}

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

/* Partner Logos */
/* Partner Logos */
.partners-enhanced .partner-logo-new {
    flex-shrink: 0;
    opacity: 1 !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.8)) drop-shadow(0 0 20px rgba(249, 115, 22, 0.3)) !important;
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
}

.partners-enhanced .partner-logo-new:hover {
    opacity: 1 !important;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.9)) !important;
    transform: perspective(1000px) rotateX(5deg) rotateY(5deg) scale(1.15);
}

.partners-enhanced .partner-img-new {
    height: 180px;
    width: auto;
    max-width: 350px;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.8)) drop-shadow(0 0 20px rgba(249, 115, 22, 0.3)) !important;
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
}
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .partners-enhanced {
        padding: 3rem 0;
    }
    
    .partners-enhanced .section-title {
        font-size: 2rem;
    }
    
    .partners-enhanced .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .partners-enhanced .partners-marquee-new {
        padding: 1.5rem;
    }
    
    .partners-enhanced .partners-track-new {
        gap: 2rem;
    }
    
    .partners-enhanced .partner-img-new {
        height: 50px;
        max-width: 260px;
    }
}

/* Tablet Responsive */
@media (min-width: 769px) and (max-width: 1024px) {
    .partners-enhanced .section-title {
        font-size: 2.5rem;
    }
    
    .partners-enhanced .partners-track-new {
        gap: 2.5rem;
    }
    
    .partners-enhanced .partner-img-new {
        height: 50px;
        max-width: 320px;
    }
}

/* Hover Effects */
.partners-enhanced .partners-marquee-new:hover .partners-track-new {
    animation-play-state: paused;
}

/* Accessibility */
.partners-enhanced .partners-marquee-new:focus {
    outline: 2px solid #F97316;
    outline-offset: 2px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .partners-enhanced .partners-track-new {
        animation: none;
    }
    
    .partners-enhanced::before {
        animation: none;
    }
    
    .partners-enhanced .partners-marquee-new::before {
        animation: none;
    }
}



/* Ensure Mobile Menu Works Properly */
.mobile-menu-button {
    display: block !important;
    background: none !important;
    border: none !important;
    color: white !important;
    padding: 0.5rem !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
    z-index: 10001 !important;
    cursor: pointer !important;
}

.mobile-menu-button:hover {
    background: rgba(249, 115, 22, 0.1) !important;
    color: #F97316 !important;
}

.mobile-menu-button:active {
    transform: scale(0.95) !important;
}

.mobile-menu-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: rgba(0, 0, 0, 0.5) !important;
    backdrop-filter: blur(5px) !important;
    z-index: 9998 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.3s ease !important;
}

.mobile-menu-overlay:not(.hidden) {
    opacity: 1 !important;
    visibility: visible !important;
}

.mobile-menu-improved {
    position: fixed !important;
    top: 0 !important;
    right: -100% !important;
    width: 280px !important;
    height: 100vh !important;
    background: rgba(11, 11, 12, 0.98) !important;
    backdrop-filter: blur(20px) !important;
    border-left: 1px solid rgba(255, 255, 255, 0.1) !important;
    z-index: 9999 !important;
    transition: right 0.3s ease !important;
    overflow-y: auto !important;
}

.mobile-menu-improved:not(.hidden) {
    right: 0 !important;
}

.mobile-menu-improved.hidden {
    right: -100% !important;
}

/* Mobile Menu Header */
.mobile-menu-header-improved {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 1rem !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.mobile-menu-close-improved {
    background: none !important;
    border: none !important;
    color: white !important;
    padding: 0.5rem !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
}

.mobile-menu-close-improved:hover {
    background: rgba(249, 115, 22, 0.1) !important;
    color: #F97316 !important;
}

/* Mobile Menu Content */
.mobile-menu-content {
    padding: 1rem !important;
}

.mobile-nav-links-improved {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.mobile-nav-links-improved li {
    margin-bottom: 0.5rem !important;
}

.mobile-nav-links-improved a {
    display: block !important;
    padding: 0.75rem 1rem !important;
    color: white !important;
    text-decoration: none !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
    font-weight: 500 !important;
}

.mobile-nav-links-improved a:hover {
    background: rgba(249, 115, 22, 0.1) !important;
    color: #F97316 !important;
    transform: translateX(5px) !important;
}

/* Services Toggle */
.services-toggle-improved {
    width: 100% !important;
    background: none !important;
    border: none !important;
    color: white !important;
    padding: 0.75rem 1rem !important;
    text-align: left !important;
    border-radius: 8px !important;
    transition: all 0.3s ease !important;
    font-weight: 500 !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    cursor: pointer !important;
}

.services-toggle-improved:hover {
    background: rgba(249, 115, 22, 0.1) !important;
    color: #F97316 !important;
}

.services-toggle-improved.active {
    background: rgba(249, 115, 22, 0.1) !important;
    color: #F97316 !important;
}

/* Services Submenu */
.mobile-services-submenu-improved {
    margin-left: 1rem !important;
    margin-top: 0.5rem !important;
    border-left: 2px solid rgba(249, 115, 22, 0.3) !important;
    padding-left: 1rem !important;
}

.mobile-services-submenu-improved a {
    padding: 0.5rem 0.75rem !important;
    font-size: 0.9rem !important;
    color: #d1d5db !important;
}

.mobile-services-submenu-improved a:hover {
    color: #F97316 !important;
    background: rgba(249, 115, 22, 0.05) !important;
}

/* Mobile CTA Section */
.mobile-cta-section {
    margin-top: 2rem !important;
    padding: 1rem !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.mobile-header-cta-button {
    display: block !important;
    width: 100% !important;
    background: linear-gradient(135deg, #F97316, #FBBF24) !important;
    color: white !important;
    text-align: center !important;
    padding: 0.875rem 1.5rem !important;
    border-radius: 12px !important;
    text-decoration: none !important;
    font-weight: 700 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3) !important;
}

.mobile-header-cta-button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4) !important;
}

/* Ensure proper display on mobile */
@media (max-width: 767px) {
    .mobile-menu-button {
        display: block !important;
    }
    
    .desktop-nav {
        display: none !important;
    }
    
    .desktop-cta {
        display: none !important;
    }
}

@media (min-width: 768px) {
    .mobile-menu-button {
        display: none !important;
    }
    
    .desktop-nav {
        display: block !important;
    }
    
    .desktop-cta {
        display: flex !important;
    }
}



/* Enhanced Premium Services Section */
.services-new {
    background: linear-gradient(135deg, #0B0B0C 0%, #1a1a1a 50%, #0B0B0C 100%);
    position: relative;
    overflow: hidden;
}

.services-new::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(251, 191, 36, 0.05) 50%, rgba(249, 115, 22, 0.1) 100%);
    animation: pulse 6s ease-in-out infinite;
}

.services-new::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(249, 115, 22, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(251, 191, 36, 0.08) 0%, transparent 50%);
}

/* Section Badge */
.section-badge-dark {
    background: rgba(249, 115, 22, 0.15);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 50px;
    padding: 0.75rem 2rem;
    display: inline-block;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.2);
}

.section-badge-dark span {
    color: #F97316;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
}

/* Section Title */
.section-title-dark {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.section-title-dark .gradient-text-new {
    background: linear-gradient(135deg, #F97316, #FBBF24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Section Subtitle */
.section-subtitle-dark {
    font-size: 1.25rem;
    color: #d1d5db;
    max-width: 700px;
    margin: 0 auto 4rem;
    line-height: 1.6;
}

/* Service Cards */
.service-card-new {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card-new::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #F97316, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card-new:hover {
    transform: translateY(-10px);
    border-color: rgba(249, 115, 22, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.service-card-new:hover::before {
    opacity: 1;
}

/* Service Icons */
.service-icon-new {
    width: 80px;
    height: 50px;
    background: linear-gradient(135deg, #F97316, #FBBF24);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-icon-new::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.service-card-new:hover .service-icon-new {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.4);
}

.service-card-new:hover .service-icon-new::before {
    left: 100%;
}

.service-icon-new svg {
    color: white;
    width: 2.5rem;
    height: 2.5rem;
    z-index: 1;
    position: relative;
}

/* Service Titles */
.service-title-new {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.service-card-new:hover .service-title-new {
    color: #F97316;
}

/* Service Descriptions */
.service-description-new {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
    font-size: 1rem;
}

/* Service Links */
.service-link-new {
    display: inline-flex;
    align-items: center;
    color: #F97316;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 0.75rem 1.5rem;
    border: 2px solid rgba(249, 115, 22, 0.3);
    border-radius: 50px;
    background: rgba(249, 115, 22, 0.1);
    backdrop-filter: blur(10px);
    margin-top: auto;
}

.service-link-new:hover {
    background: linear-gradient(135deg, #F97316, #FBBF24);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
    border-color: transparent;
}

.service-link-new svg {
    transition: transform 0.3s ease;
}

.service-link-new:hover svg {
    transform: translateX(5px);
}

/* Grid Layout */
.services-new .grid {
    gap: 2rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .services-new {
        padding: 3rem 0;
    }
    
    .section-title-dark {
        font-size: 2.5rem;
    }
    
    .section-subtitle-dark {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }
    
    .service-card-new {
        padding: 2rem;
    }
    
    .service-icon-new {
        width: 60px;
        height: 180px;
    }
    
    .service-icon-new svg {
        width: 2rem;
        height: 2rem;
    }
    
    .service-title-new {
        font-size: 1.25rem;
    }
}

/* Tablet Responsive */
@media (min-width: 769px) and (max-width: 1024px) {
    .section-title-dark {
        font-size: 3rem;
    }
    
    .service-card-new {
        padding: 2.25rem;
    }
}

/* Hover Effects for Grid */
.services-new .grid:hover .service-card-new:not(:hover) {
    opacity: 0.7;
    transform: scale(0.95);
}

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

.service-card-new {
    animation: fadeInUp 0.6s ease-out;
}

.service-card-new:nth-child(1) { animation-delay: 0.1s; }
.service-card-new:nth-child(2) { animation-delay: 0.2s; }
.service-card-new:nth-child(3) { animation-delay: 0.3s; }
.service-card-new:nth-child(4) { animation-delay: 0.4s; }
.service-card-new:nth-child(5) { animation-delay: 0.5s; }
.service-card-new:nth-child(6) { animation-delay: 0.6s; }



/* Enhanced Our Process Section */
.process-new {
    background: linear-gradient(135deg, #0B0B0C 0%, #1a1a1a 50%, #0B0B0C 100%);
    position: relative;
    overflow: hidden;
}

.process-new::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.08) 0%, rgba(251, 191, 36, 0.04) 50%, rgba(249, 115, 22, 0.08) 100%);
    animation: pulse 8s ease-in-out infinite;
}

.process-new::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 25% 25%, rgba(249, 115, 22, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(251, 191, 36, 0.06) 0%, transparent 50%);
}

/* Section Badge */
.process-new .section-badge {
    background: rgba(249, 115, 22, 0.12);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 50px;
    padding: 0.75rem 2rem;
    display: inline-block;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.2);
}

.process-new .section-badge span {
    color: #F97316;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
}

/* Section Title */
.process-new .section-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.process-new .gradient-text-new {
    background: linear-gradient(135deg, #F97316, #FBBF24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Section Subtitle */
.process-new .section-subtitle {
    font-size: 1.25rem;
    color: #d1d5db;
    max-width: 700px;
    margin: 0 auto 4rem;
    line-height: 1.6;
}

/* Timeline Container */
.timeline-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

/* Timeline Line */
.timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #F97316, #FBBF24, #F97316);
    border-radius: 2px;
    transform: translateY(-50%);
    z-index: 1;
    animation: timelineFlow 3s ease-in-out infinite;
}

@keyframes timelineFlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Timeline Steps */
.timeline-step {
    position: relative;
    text-align: center;
    z-index: 2;
    transition: all 0.4s ease;
}

.timeline-step:hover {
    transform: translateY(-10px);
}

/* Step Circles */
.step-circle {
    width: 80px;
    height: 50px;
    background: linear-gradient(135deg, #F97316, #FBBF24);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
}

.step-circle::before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, #F97316, #FBBF24);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.timeline-step:hover .step-circle {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(249, 115, 22, 0.4);
}

.timeline-step:hover .step-circle::before {
    opacity: 0.3;
}

.step-circle svg {
    color: white;
    width: 2rem;
    height: 2rem;
    transition: transform 0.3s ease;
}

.timeline-step:hover .step-circle svg {
    transform: scale(1.1);
}

/* Step Titles */
.step-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.timeline-step:hover .step-title {
    color: #F97316;
}

/* Step Descriptions */
.step-description {
    color: #d1d5db;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 350px;
    margin: 0 auto;
    transition: color 0.3s ease;
}

.timeline-step:hover .step-description {
    color: #e5e7eb;
}

/* Step Numbers */
.timeline-step::before {
    content: attr(data-step);
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #F97316;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    color: #F97316;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.timeline-step:hover::before {
    background: #F97316;
    color: white;
    transform: scale(1.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .process-new {
        padding: 3rem 0;
    }
    
    .process-new .section-title {
        font-size: 2.5rem;
    }
    
    .process-new .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }
    
    .timeline-line {
        display: none;
    }
    
    .step-circle {
        width: 60px;
        height: 180px;
    }
    
    .step-circle svg {
        width: 1.5rem;
        height: 1.5rem;
    }
    
    .step-title {
        font-size: 1.25rem;
    }
    
    .step-description {
        font-size: 0.9rem;
        max-width: 350px;
    }
    
    .timeline-step::before {
        width: 25px;
        height: 25px;
        font-size: 0.75rem;
    }
}

/* Tablet Responsive */
@media (min-width: 769px) and (max-width: 1024px) {
    .process-new .section-title {
        font-size: 3rem;
    }
    
    .step-circle {
        width: 70px;
        height: 70px;
    }
    
    .step-circle svg {
        width: 1.75rem;
        height: 1.75rem;
    }
}

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

.timeline-step {
    animation: fadeInUp 0.6s ease-out;
}

.timeline-step:nth-child(1) { animation-delay: 0.1s; }
.timeline-step:nth-child(2) { animation-delay: 0.2s; }
.timeline-step:nth-child(3) { animation-delay: 0.3s; }
.timeline-step:nth-child(4) { animation-delay: 0.4s; }
.timeline-step:nth-child(5) { animation-delay: 0.5s; }

/* Hover effects for grid */
.process-new .grid:hover .timeline-step:not(:hover) {
    opacity: 0.6;
    transform: scale(0.95);
}

/* Progress indicator */
.timeline-line::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #FBBF24, #F97316);
    border-radius: 2px;
    animation: progressFill 4s ease-in-out infinite;
}

@keyframes progressFill {
    0% { width: 0%; }
    50% { width: 100%; }
    100% { width: 0%; }
}



/* Enhanced Partner Images Styling */
.partner-img-new {
    width: 100%;
    height: 50px;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
    transition: all 0.3s ease;
    border-radius: 8px;
    padding: 10px;
}

.partner-logo-new:hover .partner-img-new {
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
    transform: scale(1.05);
}

/* Ensure proper aspect ratio for webp images */
.partner-logo-new {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin: 0 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.partner-logo-new:hover {
    background: rgba(249, 115, 22, 0.1);
    border-color: rgba(249, 115, 22, 0.3);
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.4);
}

/* Mobile responsive for partner images */
@media (max-width: 768px) {
    .partner-img-new {
        height: 180px;
        padding: 8px;
    }
    
    .partner-logo-new {
        min-width: 150px;
        height: 50px;
        margin: 0 15px;
    }
}

/* Tablet responsive */
@media (min-width: 769px) and (max-width: 1024px) {
    .partner-img-new {
        height: 70px;
    }
    
    .partner-logo-new {
        min-width: 180px;
        height: 180px;
    }
}



/* Enhanced CTA Section - Stay Ahead in 2025! */
.cta-new {
    background: linear-gradient(135deg, #F97316 0%, #FBBF24 50%, #F97316 100%);
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.cta-new::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(0, 0, 0, 0.1) 100%);
    animation: shimmer 3s ease-in-out infinite;
}

.cta-new::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

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

/* CTA Title */
.cta-title {
    font-size: 4rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: titleGlow 2s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); }
    100% { text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 255, 255, 0.2); }
}

/* CTA Subtitle */
.cta-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Stats Container */
.cta-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

/* Stat Chips */
.stat-chip {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    min-width: 140px;
}

.stat-chip::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.stat-chip:hover::before {
    left: 100%;
}

.stat-chip:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: countUp 2s ease-out;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@keyframes countUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 1.25rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.25rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
    text-shadow: none;
}

.cta-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(0, 0, 0, 0.9);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.cta-button svg {
    transition: transform 0.3s ease;
}

.cta-button:hover svg {
    transform: translateX(5px);
}

/* Floating Elements */
.cta-new .floating-element {
    position: absolute;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.cta-new .floating-element:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.cta-new .floating-element:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.cta-new .floating-element:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cta-new {
        padding: 4rem 0;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
    
    .cta-subtitle {
        font-size: 1.25rem;
        margin-bottom: 2rem;
    }
    
    .cta-stats {
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .stat-chip {
        padding: 1rem 1.5rem;
        min-width: 120px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.875rem;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1.125rem;
    }
}

/* Tablet Responsive */
@media (min-width: 769px) and (max-width: 1024px) {
    .cta-title {
        font-size: 3.5rem;
    }
    
    .cta-stats {
        gap: 1.5rem;
    }
    
    .stat-chip {
        min-width: 130px;
    }
}

/* Pulse animation for the entire section */
.cta-new {
    animation: sectionPulse 4s ease-in-out infinite;
}

@keyframes sectionPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

/* Enhanced glass morphism effect */
.cta-new .max-w-7xl {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 3rem 2rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}



/* Enhanced Testimonials Section */
.testimonials-new {
    background: linear-gradient(135deg, #0B0B0C 0%, #1a1a1a 50%, #0B0B0C 100%);
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.testimonials-new::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.08) 0%, rgba(251, 191, 36, 0.04) 50%, rgba(249, 115, 22, 0.08) 100%);
    animation: pulse 8s ease-in-out infinite;
}

.testimonials-new::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 25% 25%, rgba(249, 115, 22, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(251, 191, 36, 0.06) 0%, transparent 50%);
}

/* Section Badge */
.testimonials-new .section-badge {
    background: rgba(249, 115, 22, 0.12);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 50px;
    padding: 0.75rem 2rem;
    display: inline-block;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.2);
}

.testimonials-new .section-badge span {
    color: #F97316;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
}

/* Section Title */
.testimonials-new .section-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.testimonials-new .gradient-text-new {
    background: linear-gradient(135deg, #F97316, #FBBF24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Section Subtitle */
.testimonials-new .section-subtitle {
    font-size: 1.25rem;
    color: #d1d5db;
    max-width: 700px;
    margin: 0 auto 4rem;
    line-height: 1.6;
}

/* Testimonials Slider */
.testimonials-slider-new {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
}

/* Testimonial Slide */
.testimonial-slide-new {
    min-width: 100%;
    padding: 0 1rem;
}

/* Testimonial Card */
.testimonial-card-new {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-card-new::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.05) 0%, rgba(251, 191, 36, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card-new:hover::before {
    opacity: 1;
}

.testimonial-card-new:hover {
    transform: translateY(-10px);
    border-color: rgba(249, 115, 22, 0.3);
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.2);
}

/* Star Rating */
.star-rating {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 2rem;
}

.star {
    font-size: 1.5rem;
    color: #FBBF24;
    transition: all 0.3s ease;
    animation: starGlow 2s ease-in-out infinite;
}

.star:nth-child(1) { animation-delay: 0s; }
.star:nth-child(2) { animation-delay: 0.2s; }
.star:nth-child(3) { animation-delay: 0.4s; }
.star:nth-child(4) { animation-delay: 0.6s; }
.star:nth-child(5) { animation-delay: 0.8s; }

@keyframes starGlow {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
}

/* Testimonial Text */
.testimonial-text {
    font-size: 1.25rem;
    color: white;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
    z-index: 2;
}

.testimonial-text::before {
    content: """;
    font-size: 4rem;
    color: rgba(249, 115, 22, 0.3);
    position: absolute;
    top: -1rem;
    left: -1rem;
    font-family: serif;
}

.testimonial-text::after {
    content: """;
    font-size: 4rem;
    color: rgba(249, 115, 22, 0.3);
    position: absolute;
    bottom: -2rem;
    right: -1rem;
    font-family: serif;
}

/* Testimonial Author */
.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

/* Author Avatar */
.author-avatar {
    width: 60px;
    height: 180px;
    background: linear-gradient(135deg, #F97316, #FBBF24);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
    transition: all 0.3s ease;
}

.testimonial-card-new:hover .author-avatar {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(249, 115, 22, 0.4);
}

.author-avatar svg {
    color: white;
    width: 2rem;
    height: 2rem;
}

/* Author Info */
.author-info {
    text-align: left;
}

.author-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

.author-role {
    font-size: 0.875rem;
    color: #d1d5db;
    font-weight: 500;
}

/* Navigation */
.testimonials-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.nav-btn {
    width: 50px;
    height: 50px;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F97316;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.nav-btn:hover {
    background: rgba(249, 115, 22, 0.2);
    border-color: rgba(249, 115, 22, 0.5);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
}

.nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Pagination */
.testimonials-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.pagination-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-dot.active {
    background: #F97316;
    transform: scale(1.2);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
}

.pagination-dot:hover {
    background: rgba(249, 115, 22, 0.7);
    transform: scale(1.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .testimonials-new {
        padding: 4rem 0;
    }
    
    .testimonials-new .section-title {
        font-size: 2.5rem;
    }
    
    .testimonials-new .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }
    
    .testimonial-card-new {
        padding: 2rem;
    }
    
    .testimonial-text {
        font-size: 1.125rem;
    }
    
    .testimonial-text::before,
    .testimonial-text::after {
        font-size: 3rem;
    }
    
    .author-avatar {
        width: 50px;
        height: 50px;
    }
    
    .author-avatar svg {
        width: 1.5rem;
        height: 1.5rem;
    }
    
    .author-name {
        font-size: 1rem;
    }
    
    .author-role {
        font-size: 0.8rem;
    }
    
    .nav-btn {
        width: 45px;
        height: 45px;
    }
}

/* Tablet Responsive */
@media (min-width: 769px) and (max-width: 1024px) {
    .testimonials-new .section-title {
        font-size: 3rem;
    }
    
    .testimonial-card-new {
        padding: 2.5rem;
    }
}

/* Auto-play animation */
.testimonials-track {
    animation: autoSlide 15s infinite;
}

@keyframes autoSlide {
    0%, 33.33% { transform: translateX(0); }
    33.34%, 66.66% { transform: translateX(-100%); }
    66.67%, 100% { transform: translateX(-200%); }
}

/* Pause animation on hover */
.testimonials-slider-new:hover .testimonials-track {
    animation-play-state: paused;
}



/* Enhanced FAQ Section */
.faq-new {
    background: linear-gradient(135deg, #0B0B0C 0%, #1a1a1a 50%, #0B0B0C 100%);
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.faq-new::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.08) 0%, rgba(251, 191, 36, 0.04) 50%, rgba(249, 115, 22, 0.08) 100%);
    animation: pulse 8s ease-in-out infinite;
}

.faq-new::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 25% 25%, rgba(249, 115, 22, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(251, 191, 36, 0.06) 0%, transparent 50%);
}

/* Section Badge */
.faq-new .section-badge-dark {
    background: rgba(249, 115, 22, 0.12);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 50px;
    padding: 0.75rem 2rem;
    display: inline-block;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.2);
}

.faq-new .section-badge-dark span {
    color: #F97316;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
}

/* Section Title */
.faq-new .section-title-dark {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.faq-new .gradient-text-new {
    background: linear-gradient(135deg, #F97316, #FBBF24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Section Subtitle */
.faq-new .section-subtitle-dark {
    font-size: 1.25rem;
    color: #d1d5db;
    max-width: 700px;
    margin: 0 auto 4rem;
    line-height: 1.6;
}

/* FAQ Container */
.faq-container-new {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* FAQ Item */
.faq-item-new {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.faq-item-new:hover {
    border-color: rgba(249, 115, 22, 0.3);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.1);
}

.faq-item-new.active {
    border-color: rgba(249, 115, 22, 0.5);
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.2);
}

/* FAQ Question Button */
.faq-question-new {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 2rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.faq-question-new::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.1), transparent);
    transition: left 0.6s ease;
}

.faq-question-new:hover::before {
    left: 100%;
}

.faq-question-new:hover {
    background: rgba(249, 115, 22, 0.05);
}

.faq-question-new span {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    transition: color 0.3s ease;
}

.faq-item-new.active .faq-question-new span {
    color: #F97316;
}

/* FAQ Icon */
.faq-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #F97316;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item-new.active .faq-icon {
    transform: rotate(45deg);
    color: #FBBF24;
}

/* FAQ Answer */
.faq-answer-new {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: rgba(0, 0, 0, 0.2);
}

.faq-item-new.active .faq-answer-new {
    max-height: 500px;
}

.faq-content {
    padding: 0 2rem 2rem;
    color: #d1d5db;
    line-height: 1.7;
}

.faq-content p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.faq-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.faq-content li {
    margin-bottom: 0.5rem;
    position: relative;
}

.faq-content li::before {
    content: "→";
    color: #F97316;
    font-weight: bold;
    position: absolute;
    left: -1.5rem;
}

.faq-content strong {
    color: #F97316;
    font-weight: 700;
}

/* Scrollable FAQ Container */
.faq-container-new {
    max-height: 600px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #F97316 rgba(255, 255, 255, 0.1);
}

.faq-container-new::-webkit-scrollbar {
    width: 8px;
}

.faq-container-new::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.faq-container-new::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #F97316, #FBBF24);
    border-radius: 4px;
}

.faq-container-new::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #FBBF24, #F97316);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .faq-new {
        padding: 4rem 0;
    }
    
    .faq-new .section-title-dark {
        font-size: 2.5rem;
    }
    
    .faq-new .section-subtitle-dark {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }
    
    .faq-question-new {
        padding: 1.25rem 1.5rem;
    }
    
    .faq-question-new span {
        font-size: 1rem;
    }
    
    .faq-content {
        padding: 0 1.5rem 1.5rem;
    }
    
    .faq-content p {
        font-size: 0.9rem;
    }
    
    .faq-container-new {
        max-height: 500px;
    }
}

/* Tablet Responsive */
@media (min-width: 769px) and (max-width: 1024px) {
    .faq-new .section-title-dark {
        font-size: 3rem;
    }
    
    .faq-container-new {
        max-height: 550px;
    }
}

/* Animation for FAQ items */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-item-new {
    animation: slideDown 0.5s ease;
}

.faq-item-new:nth-child(1) { animation-delay: 0.1s; }
.faq-item-new:nth-child(2) { animation-delay: 0.2s; }
.faq-item-new:nth-child(3) { animation-delay: 0.3s; }
.faq-item-new:nth-child(4) { animation-delay: 0.4s; }
.faq-item-new:nth-child(5) { animation-delay: 0.5s; }

/* Hover effects for FAQ items */
.faq-item-new:hover {
    transform: translateY(-2px);
}

.faq-item-new.active:hover {
    transform: translateY(-8px) scale(1.05);
}

/* Enhanced icon animation */
.faq-icon {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item-new.active .faq-icon {
    animation: iconRotate 0.4s ease;
}

@keyframes iconRotate {
    0% { transform: rotate(0deg); }
    50% { transform: rotate(180deg) scale(1.1); }
    100% { transform: rotate(45deg); }
}



/* Enhanced Testimonials Slider Activation */
.testimonials-slider-new {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.testimonial-slide-new {
    min-width: 100%;
    flex-shrink: 0;
    padding: 0 1rem;
}

/* Navigation Buttons */
.nav-btn {
    width: 50px;
    height: 50px;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F97316;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.nav-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.2), transparent);
    transition: left 0.6s ease;
}

.nav-btn:hover::before {
    left: 100%;
}

.nav-btn:hover {
    background: rgba(249, 115, 22, 0.2);
    border-color: rgba(249, 115, 22, 0.5);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
}

.nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.nav-btn:disabled:hover {
    background: rgba(249, 115, 22, 0.1);
    border-color: rgba(249, 115, 22, 0.3);
    box-shadow: none;
}

/* Pagination Dots */
.pagination-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pagination-dot::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(249, 115, 22, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.pagination-dot:hover::before {
    width: 100%;
    height: 100%;
}

.pagination-dot.active {
    background: #F97316;
    transform: scale(1.2);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
}

.pagination-dot:hover {
    background: rgba(249, 115, 22, 0.7);
    transform: scale(1.1);
}

/* Auto-play indicator */
.testimonials-slider-new::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #F97316, #FBBF24);
    border-radius: 2px;
    animation: autoPlayIndicator 5s linear infinite;
}

@keyframes autoPlayIndicator {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* Pause animation on hover */
.testimonials-slider-new:hover::after {
    animation-play-state: paused;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .testimonials-slider-new {
        margin: 0 1rem;
    }
    
    .nav-btn {
        width: 45px;
        height: 45px;
    }
    
    .pagination-dot {
        width: 10px;
        height: 10px;
    }
}

/* Tablet responsive */
@media (min-width: 769px) and (max-width: 1024px) {
    .testimonials-slider-new {
        margin: 0 2rem;
    }
}

/* Smooth transitions for all slider elements */
.testimonial-card-new {
    transition: all 0.3s ease;
}

.testimonials-track:hover .testimonial-card-new:not(:hover) {
    opacity: 0.8;
    transform: scale(0.98);
}

/* Loading state */
.testimonials-slider-new.loading .testimonials-track {
    opacity: 0.5;
}

.testimonials-slider-new.loading::before {
    content: "Loading...";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #F97316;
    font-weight: 600;
    z-index: 10;
}



/* Enhanced Portfolio Section */
.portfolio-new {
    background: linear-gradient(135deg, #0B0B0C 0%, #1a1a1a 50%, #0B0B0C 100%);
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.portfolio-new::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.08) 0%, rgba(251, 191, 36, 0.04) 50%, rgba(249, 115, 22, 0.08) 100%);
    animation: pulse 8s ease-in-out infinite;
}

.portfolio-new::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 25% 25%, rgba(249, 115, 22, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(251, 191, 36, 0.06) 0%, transparent 50%);
}

/* Section Badge */
.portfolio-new .section-badge-dark {
    background: rgba(249, 115, 22, 0.12);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 50px;
    padding: 0.75rem 2rem;
    display: inline-block;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.2);
}

.portfolio-new .section-badge-dark span {
    color: #F97316;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
}

/* Section Title */
.portfolio-new .section-title-dark {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.portfolio-new .gradient-text-new {
    background: linear-gradient(135deg, #F97316, #FBBF24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Section Subtitle */
.portfolio-new .section-subtitle-dark {
    font-size: 1.25rem;
    color: #d1d5db;
    max-width: 700px;
    margin: 0 auto 4rem;
    line-height: 1.6;
}

/* Portfolio Filters */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #d1d5db;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.875rem;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.2), transparent);
    transition: left 0.6s ease;
}

.filter-btn:hover::before {
    left: 100%;
}

.filter-btn:hover {
    color: white;
    border-color: rgba(249, 115, 22, 0.3);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(135deg, #F97316, #FBBF24);
    color: white;
    border-color: transparent;
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
    transform: translateY(-2px);
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Portfolio Item */
.portfolio-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
    animation: fadeInUp 0.6s ease forwards;
}

.portfolio-item.hidden {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
    height: 0;
    margin: 0;
    overflow: hidden;
}

.portfolio-item:nth-child(1) { animation-delay: 0.1s; }
.portfolio-item:nth-child(2) { animation-delay: 0.2s; }
.portfolio-item:nth-child(3) { animation-delay: 0.3s; }
.portfolio-item:nth-child(4) { animation-delay: 0.4s; }
.portfolio-item:nth-child(5) { animation-delay: 0.5s; }
.portfolio-item:nth-child(6) { animation-delay: 0.6s; }

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

/* Portfolio Card */
.portfolio-card-new {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.portfolio-card-new::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.05) 0%, rgba(251, 191, 36, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.portfolio-card-new:hover::before {
    opacity: 1;
}

.portfolio-card-new:hover {
    transform: translateY(-10px);
    border-color: rgba(249, 115, 22, 0.3);
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.2);
}

/* Portfolio Image */
.portfolio-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

/* Portfolio Overlay */
.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(249, 115, 22, 0.8));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
}

.portfolio-card-new:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-category {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.portfolio-view-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.portfolio-view-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* Portfolio Content */
.portfolio-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.portfolio-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.portfolio-description {
    color: #d1d5db;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
}

/* Portfolio Tags */
.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background: rgba(249, 115, 22, 0.1);
    color: #F97316;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(249, 115, 22, 0.2);
    transition: all 0.3s ease;
}

.tag:hover {
    background: rgba(249, 115, 22, 0.2);
    transform: translateY(-1px);
}

/* View More Button */
.btn-primary-new {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #F97316, #FBBF24);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
}

.btn-primary-new::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn-primary-new:hover::before {
    left: 100%;
}

.btn-primary-new:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.4);
}

.btn-primary-new svg {
    transition: transform 0.3s ease;
}

.btn-primary-new:hover svg {
    transform: translateX(5px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .portfolio-new {
        padding: 4rem 0;
    }
    
    .portfolio-new .section-title-dark {
        font-size: 2.5rem;
    }
    
    .portfolio-new .section-subtitle-dark {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }
    
    .portfolio-filters {
        gap: 0.5rem;
        margin-bottom: 2rem;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .portfolio-image {
        height: 200px;
    }
    
    .portfolio-content {
        padding: 1.25rem;
    }
    
    .portfolio-title {
        font-size: 1.125rem;
    }
    
    .portfolio-description {
        font-size: 0.85rem;
    }
}

/* Tablet Responsive */
@media (min-width: 769px) and (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .portfolio-new .section-title-dark {
        font-size: 3rem;
    }
}

/* Hover effects for grid */
.portfolio-grid:hover .portfolio-item:not(:hover) {
    opacity: 0.7;
    transform: scale(0.98);
}

.portfolio-item:hover {
    z-index: 10;
}



/* Updated Testimonials Section - Enhanced */
.testimonials-new {
    background: linear-gradient(135deg, #0B0B0C 0%, #1a1a1a 50%, #0B0B0C 100%);
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.testimonials-new::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.08) 0%, rgba(251, 191, 36, 0.04) 50%, rgba(249, 115, 22, 0.08) 100%);
    animation: pulse 8s ease-in-out infinite;
}

.testimonials-new::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 25% 25%, rgba(249, 115, 22, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(251, 191, 36, 0.06) 0%, transparent 50%);
}

/* Section Badge */
.testimonials-new .section-badge {
    background: rgba(249, 115, 22, 0.12);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 50px;
    padding: 0.75rem 2rem;
    display: inline-block;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.2);
}

.testimonials-new .section-badge span {
    color: #F97316;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
}

/* Section Title */
.testimonials-new .section-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.testimonials-new .gradient-text-new {
    background: linear-gradient(135deg, #F97316, #FBBF24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Section Subtitle */
.testimonials-new .section-subtitle {
    font-size: 1.25rem;
    color: #d1d5db;
    max-width: 700px;
    margin: 0 auto 4rem;
    line-height: 1.6;
}

/* Testimonials Slider */
.testimonials-slider-new {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.testimonial-slide-new {
    min-width: 100%;
    flex-shrink: 0;
    padding: 0 1rem;
}

/* Testimonial Card */
.testimonial-card-new {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-card-new::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.05) 0%, rgba(251, 191, 36, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card-new:hover::before {
    opacity: 1;
}

.testimonial-card-new:hover {
    transform: translateY(-10px);
    border-color: rgba(249, 115, 22, 0.3);
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.2);
}

/* Star Rating */
.star-rating {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 2rem;
}

.star {
    font-size: 1.5rem;
    color: #FBBF24;
    transition: all 0.3s ease;
    animation: starGlow 2s ease-in-out infinite;
}

.star:nth-child(1) { animation-delay: 0s; }
.star:nth-child(2) { animation-delay: 0.2s; }
.star:nth-child(3) { animation-delay: 0.4s; }
.star:nth-child(4) { animation-delay: 0.6s; }
.star:nth-child(5) { animation-delay: 0.8s; }

@keyframes starGlow {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
}

/* Testimonial Text */
.testimonial-text {
    font-size: 1.25rem;
    color: white;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
    z-index: 2;
}

.testimonial-text::before {
    content: """;
    font-size: 4rem;
    color: rgba(249, 115, 22, 0.3);
    position: absolute;
    top: -1rem;
    left: -1rem;
    font-family: serif;
}

.testimonial-text::after {
    content: """;
    font-size: 4rem;
    color: rgba(249, 115, 22, 0.3);
    position: absolute;
    bottom: -2rem;
    right: -1rem;
    font-family: serif;
}

/* Testimonial Author */
.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

/* Author Avatar */
.author-avatar {
    width: 60px;
    height: 180px;
    background: linear-gradient(135deg, #F97316, #FBBF24);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
    transition: all 0.3s ease;
}

.testimonial-card-new:hover .author-avatar {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(249, 115, 22, 0.4);
}

.author-avatar svg {
    color: white;
    width: 2rem;
    height: 2rem;
}

/* Author Info */
.author-info {
    text-align: left;
}

.author-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

.author-role {
    font-size: 0.875rem;
    color: #d1d5db;
    font-weight: 500;
}

/* Navigation */
.testimonials-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.nav-btn {
    width: 50px;
    height: 50px;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F97316;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.nav-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.2), transparent);
    transition: left 0.6s ease;
}

.nav-btn:hover::before {
    left: 100%;
}

.nav-btn:hover {
    background: rgba(249, 115, 22, 0.2);
    border-color: rgba(249, 115, 22, 0.5);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
}

.nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Pagination */
.testimonials-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.pagination-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pagination-dot::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(249, 115, 22, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.pagination-dot:hover::before {
    width: 100%;
    height: 100%;
}

.pagination-dot.active {
    background: #F97316;
    transform: scale(1.2);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
}

.pagination-dot:hover {
    background: rgba(249, 115, 22, 0.7);
    transform: scale(1.1);
}

/* Auto-play indicator */
.testimonials-slider-new::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #F97316, #FBBF24);
    border-radius: 2px;
    animation: autoPlayIndicator 4s linear infinite;
}

@keyframes autoPlayIndicator {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* Pause animation on hover */
.testimonials-slider-new:hover::after {
    animation-play-state: paused;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .testimonials-new {
        padding: 4rem 0;
    }
    
    .testimonials-new .section-title {
        font-size: 2.5rem;
    }
    
    .testimonials-new .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }
    
    .testimonial-card-new {
        padding: 2rem;
    }
    
    .testimonial-text {
        font-size: 1.125rem;
    }
    
    .testimonial-text::before,
    .testimonial-text::after {
        font-size: 3rem;
    }
    
    .author-avatar {
        width: 50px;
        height: 50px;
    }
    
    .author-avatar svg {
        width: 1.5rem;
        height: 1.5rem;
    }
    
    .author-name {
        font-size: 1rem;
    }
    
    .author-role {
        font-size: 0.8rem;
    }
    
    .nav-btn {
        width: 45px;
        height: 45px;
    }
    
    .testimonials-slider-new {
        margin: 0 1rem;
    }
}

/* Tablet Responsive */
@media (min-width: 769px) and (max-width: 1024px) {
    .testimonials-new .section-title {
        font-size: 3rem;
    }
    
    .testimonial-card-new {
        padding: 2.5rem;
    }
}

/* Smooth transitions for all slider elements */
.testimonial-card-new {
    transition: all 0.3s ease;
}

.testimonials-track:hover .testimonial-card-new:not(:hover) {
    opacity: 0.8;
    transform: scale(0.98);
}

/* Loading state */
.testimonials-slider-new.loading .testimonials-track {
    opacity: 0.5;
}

.testimonials-slider-new.loading::before {
    content: "Loading...";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #F97316;
    font-weight: 600;
    z-index: 10;
}



/* Center Hero Text on Mobile */
@media (max-width: 768px) {
    /* Center all hero content on mobile */
    .hero-enhanced {
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
    }
    
    /* Center hero title */
    .hero-title-enhanced {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        max-width: 100% !important;
    }
    
    /* Center hero subtitle */
    .hero-subtitle-enhanced {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        max-width: 100% !important;
    }
    
    /* Center hero buttons */
    .hero-buttons-enhanced {
        justify-content: center !important;
        align-items: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    /* Center hero stats */
    .hero-stats-enhanced {
        justify-content: center !important;
        align-items: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    /* Center hero badge */
    .hero-badge-enhanced {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    /* Center all text content in hero */
    .hero-enhanced .space-y-10 {
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    /* Center grid content */
    .hero-enhanced .grid {
        text-align: center !important;
        justify-items: center !important;
        align-items: center !important;
    }
    
    /* Center max-width container */
    .hero-enhanced .max-w-7xl {
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    /* Center relative z-10 container */
    .hero-enhanced .relative.z-10 {
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    /* Ensure all text elements are centered */
    .hero-enhanced h1,
    .hero-enhanced h2,
    .hero-enhanced h3,
    .hero-enhanced p,
    .hero-enhanced span,
    .hero-enhanced div {
        text-align: center !important;
    }
    
    /* Center gradient text */
    .gradient-text-new,
    .gradient-text-enhanced {
        text-align: center !important;
        display: block !important;
        margin: 0 auto !important;
    }
    
    /* Center typewriter text */
    .typewriter-text {
        text-align: center !important;
        display: block !important;
        margin: 0 auto !important;
    }
    
    /* Center all buttons */
    .btn-primary-enhanced,
    .btn-secondary-enhanced {
        margin-left: auto !important;
        margin-right: auto !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }
    
    /* Center form */
    .hero-form-enhanced {
        margin-left: auto !important;
        margin-right: auto !important;
        text-align: center !important;
    }
    
    .form-container-enhanced {
        margin-left: auto !important;
        margin-right: auto !important;
        text-align: center !important;
    }
    
    /* Center form header */
    .form-header-enhanced {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    /* Center form inputs */
    .form-group-enhanced {
        text-align: center !important;
    }
    
    .form-input-enhanced,
    .form-select-enhanced,
    .form-textarea-enhanced {
        text-align: center !important;
    }
    
    /* Center submit button */
    .btn-submit-enhanced {
        margin-left: auto !important;
        margin-right: auto !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .hero-enhanced {
        text-align: center !important;
        padding: 1rem 0.5rem !important;
    }
    
    .hero-title-enhanced {
        font-size: 1.5rem !important;
        text-align: center !important;
        line-height: 1.2 !important;
    }
    
    .hero-subtitle-enhanced {
        font-size: 0.9rem !important;
        text-align: center !important;
        line-height: 1.4 !important;
    }
    
    .hero-buttons-enhanced {
        flex-direction: column !important;
        gap: 0.75rem !important;
        width: 100% !important;
        max-width: 280px !important;
    }
    
    .btn-primary-enhanced,
    .btn-secondary-enhanced {
        width: 100% !important;
        text-align: center !important;
        justify-content: center !important;
    }
}



/* Updated Testimonials Section - Enhanced */
.testimonials-new {
    background: linear-gradient(135deg, #0B0B0C 0%, #1a1a1a 50%, #0B0B0C 100%);
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.testimonials-new::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.08) 0%, rgba(251, 191, 36, 0.04) 50%, rgba(249, 115, 22, 0.08) 100%);
    animation: pulse 8s ease-in-out infinite;
}

.testimonials-new::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 25% 25%, rgba(249, 115, 22, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(251, 191, 36, 0.06) 0%, transparent 50%);
}

/* Section Badge */
.testimonials-new .section-badge {
    background: rgba(249, 115, 22, 0.12);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 50px;
    padding: 0.75rem 2rem;
    display: inline-block;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.2);
}

.testimonials-new .section-badge span {
    color: #F97316;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
}

/* Section Title */
.testimonials-new .section-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.testimonials-new .gradient-text-new {
    background: linear-gradient(135deg, #F97316, #FBBF24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Section Subtitle */
.testimonials-new .section-subtitle {
    font-size: 1.25rem;
    color: #d1d5db;
    max-width: 700px;
    margin: 0 auto 4rem;
    line-height: 1.6;
}

/* Testimonials Slider */
.testimonials-slider-new {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.testimonial-slide-new {
    min-width: 100%;
    flex-shrink: 0;
    padding: 0 1rem;
}

/* Testimonial Card */
.testimonial-card-new {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-card-new::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.05) 0%, rgba(251, 191, 36, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card-new:hover::before {
    opacity: 1;
}

.testimonial-card-new:hover {
    transform: translateY(-10px);
    border-color: rgba(249, 115, 22, 0.3);
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.2);
}

/* Star Rating */
.star-rating {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 2rem;
}

.star {
    font-size: 1.5rem;
    color: #FBBF24;
    transition: all 0.3s ease;
    animation: starGlow 2s ease-in-out infinite;
}

.star:nth-child(1) { animation-delay: 0s; }
.star:nth-child(2) { animation-delay: 0.2s; }
.star:nth-child(3) { animation-delay: 0.4s; }
.star:nth-child(4) { animation-delay: 0.6s; }
.star:nth-child(5) { animation-delay: 0.8s; }

@keyframes starGlow {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
}

/* Testimonial Text */
.testimonial-text {
    font-size: 1.25rem;
    color: white;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
    z-index: 2;
}

.testimonial-text::before {
    content: """;
    font-size: 4rem;
    color: rgba(249, 115, 22, 0.3);
    position: absolute;
    top: -1rem;
    left: -1rem;
    font-family: serif;
}

.testimonial-text::after {
    content: """;
    font-size: 4rem;
    color: rgba(249, 115, 22, 0.3);
    position: absolute;
    bottom: -2rem;
    right: -1rem;
    font-family: serif;
}

/* Testimonial Author */
.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

/* Author Avatar */
.author-avatar {
    width: 60px;
    height: 180px;
    background: linear-gradient(135deg, #F97316, #FBBF24);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
    transition: all 0.3s ease;
}

.testimonial-card-new:hover .author-avatar {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(249, 115, 22, 0.4);
}

.author-avatar svg {
    color: white;
    width: 2rem;
    height: 2rem;
}

/* Author Info */
.author-info {
    text-align: left;
}

.author-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

.author-role {
    font-size: 0.875rem;
    color: #d1d5db;
    font-weight: 500;
}

/* Navigation */
.testimonials-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.nav-btn {
    width: 50px;
    height: 50px;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F97316;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.nav-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.2), transparent);
    transition: left 0.6s ease;
}

.nav-btn:hover::before {
    left: 100%;
}

.nav-btn:hover {
    background: rgba(249, 115, 22, 0.2);
    border-color: rgba(249, 115, 22, 0.5);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
}

.nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Pagination */
.testimonials-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.pagination-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pagination-dot::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(249, 115, 22, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.pagination-dot:hover::before {
    width: 100%;
    height: 100%;
}

.pagination-dot.active {
    background: #F97316;
    transform: scale(1.2);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
}

.pagination-dot:hover {
    background: rgba(249, 115, 22, 0.7);
    transform: scale(1.1);
}

/* Auto-play indicator */
.testimonials-slider-new::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #F97316, #FBBF24);
    border-radius: 2px;
    animation: autoPlayIndicator 4s linear infinite;
}

@keyframes autoPlayIndicator {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* Pause animation on hover */
.testimonials-slider-new:hover::after {
    animation-play-state: paused;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .testimonials-new {
        padding: 4rem 0;
    }
    
    .testimonials-new .section-title {
        font-size: 2.5rem;
    }
    
    .testimonials-new .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }
    
    .testimonial-card-new {
        padding: 2rem;
    }
    
    .testimonial-text {
        font-size: 1.125rem;
    }
    
    .testimonial-text::before,
    .testimonial-text::after {
        font-size: 3rem;
    }
    
    .author-avatar {
        width: 50px;
        height: 50px;
    }
    
    .author-avatar svg {
        width: 1.5rem;
        height: 1.5rem;
    }
    
    .author-name {
        font-size: 1rem;
    }
    
    .author-role {
        font-size: 0.8rem;
    }
    
    .nav-btn {
        width: 45px;
        height: 45px;
    }
    
    .testimonials-slider-new {
        margin: 0 1rem;
    }
}

/* Tablet Responsive */
@media (min-width: 769px) and (max-width: 1024px) {
    .testimonials-new .section-title {
        font-size: 3rem;
    }
    
    .testimonial-card-new {
        padding: 2.5rem;
    }
}

/* Smooth transitions for all slider elements */
.testimonial-card-new {
    transition: all 0.3s ease;
}

.testimonials-track:hover .testimonial-card-new:not(:hover) {
    opacity: 0.8;
    transform: scale(0.98);
}

/* Loading state */
.testimonials-slider-new.loading .testimonials-track {
    opacity: 0.5;
}

.testimonials-slider-new.loading::before {
    content: "Loading...";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #F97316;
    font-weight: 600;
    z-index: 10;
}



/* Fix Premier Digital Solutions Badge on Mobile */
@media (max-width: 768px) {
    .hero-badge-enhanced {
        display: inline-flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        padding: 0.5rem 1rem !important;
        font-size: 0.75rem !important;
        text-align: center !important;
        width: auto !important;
        max-width: 90% !important;
        margin: 0 auto 1rem auto !important;
        border-radius: 25px !important;
        background: rgba(249, 115, 22, 0.15) !important;
        border: 1px solid rgba(249, 115, 22, 0.3) !important;
        backdrop-filter: blur(10px) !important;
    }
    
    .hero-badge-enhanced span {
        color: #F97316 !important;
        font-weight: 700 !important;
        font-size: 0.75rem !important;
        letter-spacing: 0.1em !important;
        text-transform: uppercase !important;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .hero-badge-enhanced {
        padding: 0.4rem 0.8rem !important;
        font-size: 0.7rem !important;
        margin: 0 auto 0.75rem auto !important;
    }
    
    .hero-badge-enhanced span {
        font-size: 0.7rem !important;
    }
}



/* New Testimonials Section Styles */
.testimonials-section {
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.03) 0%, rgba(251, 191, 36, 0.02) 100%);
    pointer-events: none;
}

/* Testimonial Cards */
.testimonials-section .bg-white {
    position: relative;
    transition: all 0.3s ease;
    border: none;
}

.testimonials-section .bg-white:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(249, 115, 22, 0.2);
}

.testimonials-section .bg-white::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.02) 0%, rgba(251, 191, 36, 0.01) 100%);
    border-radius: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonials-section .bg-white:hover::before {
    opacity: 1;
}

/* Star Rating */
.testimonials-section .text-tcYellow span {
    transition: all 0.3s ease;
}

.testimonials-section .bg-white:hover .text-tcYellow span {
    transform: scale(1.1);
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

/* Quote Styling */
.testimonials-section blockquote {
    position: relative;
    line-height: 1.7;
}

.testimonials-section blockquote::before {
    content: """;
    font-size: 3rem;
    color: rgba(249, 115, 22, 0.1);
    position: absolute;
    top: -1rem;
    left: -0.5rem;
    font-family: serif;
    line-height: 1;
}

.testimonials-section blockquote::after {
    content: """;
    font-size: 3rem;
    color: rgba(249, 115, 22, 0.1);
    position: absolute;
    bottom: -2rem;
    right: -0.5rem;
    font-family: serif;
    line-height: 1;
}

/* Author Avatar */
.testimonials-section .w-12.h-12 {
    background: linear-gradient(135deg, #F97316, #FBBF24);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
    transition: all 0.3s ease;
}

.testimonials-section .bg-white:hover .w-12.h-12 {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}

/* CTA Section */
.testimonials-section .text-center.mt-16 .bg-white {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: none;
    position: relative;
    overflow: hidden;
}

.testimonials-section .text-center.mt-16 .bg-white::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.05), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* CTA Button */
.testimonials-section a.inline-flex {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.testimonials-section a.inline-flex::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.testimonials-section a.inline-flex:hover::before {
    left: 100%;
}

.testimonials-section a.inline-flex:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .testimonials-section .text-4xl {
        font-size: 2.5rem;
    }
    
    .testimonials-section .text-xl {
        font-size: 1.125rem;
    }
    
    .testimonials-section .grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonials-section .bg-white {
        padding: 1.5rem;
    }
    
    .testimonials-section blockquote::before,
    .testimonials-section blockquote::after {
        font-size: 2rem;
    }
}

/* Tablet Responsive */
@media (min-width: 769px) and (max-width: 1024px) {
    .testimonials-section .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}



/* Center Hero Subtitle and Buttons on Mobile */
@media (max-width: 768px) {
    /* Center hero subtitle */
    .hero-subtitle-new {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        max-width: 100% !important;
    }
    
    /* Center hero buttons container */
    .hero-buttons-new {
        justify-content: center !important;
        align-items: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        text-align: center !important;
    }
    
    /* Center individual buttons */
    .btn-primary-new,
    .btn-secondary-new {
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        display: flex !important;
    }
    
    /* Center button text */
    .btn-primary-new span,
    .btn-secondary-new span {
        text-align: center !important;
    }
    
    /* Center all text in hero section */
    .hero-new .space-y-8 {
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    /* Center grid content */
    .hero-new .grid {
        text-align: center !important;
        justify-items: center !important;
        align-items: center !important;
    }
    
    /* Center max-width container */
    .hero-new .max-w-7xl {
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    /* Center relative z-10 container */
    .hero-new .relative.z-10 {
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    /* Ensure all text elements are centered */
    .hero-new h1,
    .hero-new h2,
    .hero-new h3,
    .hero-new p,
    .hero-new span,
    .hero-new div {
        text-align: center !important;
    }
    
    /* Center gradient text */
    .gradient-text-new {
        text-align: center !important;
        display: block !important;
        margin: 0 auto !important;
    }
    
    /* Center button icons */
    .btn-primary-new svg,
    .btn-secondary-new svg {
        margin-left: 0.5rem !important;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .hero-subtitle-new {
        font-size: 1rem !important;
        text-align: center !important;
        line-height: 1.5 !important;
        padding: 0 1rem !important;
    }
    
    .hero-buttons-new {
        flex-direction: column !important;
        gap: 1rem !important;
        width: 100% !important;
        max-width: 300px !important;
        margin: 0 auto !important;
    }
    
    .btn-primary-new,
    .btn-secondary-new {
        width: 100% !important;
        justify-content: center !important;
        text-align: center !important;
        padding: 0.75rem 1.5rem !important;
    }
}



/* Hide Hero Stats on Mobile */
@media (max-width: 768px) {
    .hero-stats {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .hero-stats * {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
    
    /* Also hide any enhanced stats */
    .hero-stats-enhanced {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .hero-stats-enhanced * {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
    
    /* Hide stat items */
    .stat-item,
    .stat-item-enhanced {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
    
    /* Hide stat numbers and labels */
    .stat-number,
    .stat-label,
    .stat-number-enhanced,
    .stat-label-enhanced {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .hero-stats,
    .hero-stats-enhanced {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }
}


/* Mobile Responsive Form Styles */
@media (max-width: 768px) {
    /* Form Container */
    .hero-form-new {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 1.5rem !important;
        background: rgba(255, 255, 255, 0.05) !important;
        backdrop-filter: blur(10px) !important;
        border-radius: 1rem !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
    }
    
    /* Form Header */
    .form-header {
        text-align: center !important;
        margin-bottom: 1.5rem !important;
    }
    
    .form-title-new {
        font-size: 1.5rem !important;
        font-weight: 700 !important;
        color: white !important;
        margin-bottom: 0.5rem !important;
        text-align: center !important;
    }
    
    .form-subtitle {
        font-size: 0.9rem !important;
        color: #d1d5db !important;
        text-align: center !important;
        margin-bottom: 0 !important;
    }
    
    /* Form Groups */
    .form-group {
        margin-bottom: 1rem !important;
        width: 100% !important;
    }
    
    /* Form Inputs */
    .form-input,
    .form-select,
    .form-textarea {
        width: 100% !important;
        padding: 0.75rem 1rem !important;
        font-size: 1rem !important;
        border-radius: 0.5rem !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
        background: rgba(255, 255, 255, 0.1) !important;
        color: white !important;
        backdrop-filter: blur(10px) !important;
        transition: all 0.3s ease !important;
    }
    
    .form-input::placeholder,
    .form-textarea::placeholder {
        color: rgba(255, 255, 255, 0.7) !important;
        font-size: 0.9rem !important;
    }
    
    .form-input:focus,
    .form-select:focus,
    .form-textarea:focus {
        outline: none !important;
        border-color: #F97316 !important;
        box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1) !important;
        background: rgba(255, 255, 255, 0.15) !important;
    }
    
    /* Select Dropdown */
    .form-select {
        appearance: none !important;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e") !important;
        background-repeat: no-repeat !important;
        background-position: right 0.75rem center !important;
        background-size: 1.5em 1.5em !important;
        padding-right: 2.5rem !important;
    }
    
    .form-select option {
        background: #1f2937 !important;
        color: white !important;
        padding: 0.5rem !important;
    }
    
    /* Textarea */
    .form-textarea {
        min-height: 100px !important;
        resize: vertical !important;
        font-family: inherit !important;
    }
    
    /* Checkbox */
    .checkbox-label {
        display: flex !important;
        align-items: flex-start !important;
        gap: 0.75rem !important;
        font-size: 0.85rem !important;
        color: #d1d5db !important;
        line-height: 1.4 !important;
        cursor: pointer !important;
    }
    
    .checkbox-label input[type="checkbox"] {
        width: 18px !important;
        height: 18px !important;
        margin: 0 !important;
        accent-color: #F97316 !important;
        flex-shrink: 0 !important;
        margin-top: 0.1rem !important;
    }
    
    .checkbox-label a {
        color: #F97316 !important;
        text-decoration: underline !important;
        font-weight: 500 !important;
    }
    
    .checkbox-label a:hover {
        color: #FBBF24 !important;
    }
    
    /* Submit Button */
    .form-submit {
        width: 100% !important;
        padding: 0.875rem 1.5rem !important;
        font-size: 1rem !important;
        font-weight: 600 !important;
        background: linear-gradient(135deg, #F97316, #FBBF24) !important;
        color: white !important;
        border: none !important;
        border-radius: 0.5rem !important;
        cursor: pointer !important;
        transition: all 0.3s ease !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0.5rem !important;
    }
    
    .form-submit:hover {
        transform: translateY(-2px) !important;
        box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3) !important;
        background: linear-gradient(135deg, #ea580c, #f59e0b) !important;
    }
    
    .form-submit:active {
        transform: translateY(0) !important;
    }
    
    .form-submit svg {
        width: 1.25rem !important;
        height: 1.25rem !important;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    .hero-form-new {
        padding: 1rem !important;
        margin: 0 0.5rem !important;
    }
    
    .form-title-new {
        font-size: 1.25rem !important;
    }
    
    .form-subtitle {
        font-size: 0.8rem !important;
    }
    
    .form-input,
    .form-select,
    .form-textarea {
        padding: 0.625rem 0.875rem !important;
        font-size: 0.9rem !important;
    }
    
    .form-textarea {
        min-height: 80px !important;
    }
    
    .checkbox-label {
        font-size: 0.8rem !important;
        gap: 0.5rem !important;
    }
    
    .form-submit {
        padding: 0.75rem 1.25rem !important;
        font-size: 0.9rem !important;
    }
}

/* Tablet Responsive */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-form-new {
        max-width: 400px !important;
        margin: 0 auto !important;
    }
}

/* CLIENT SUCCESS & SUPPORT SECTION STYLES */

/* Auto Moving Testimonials Styles */
.testimonials-auto-container {
    position: relative;
    background: linear-gradient(135deg, #F97316 0%, #FBBF24 100%);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.2);
    overflow: hidden;
}

.testimonials-auto-track {
    position: relative;
    height: auto;
    min-height: 300px;
}

.testimonial-auto-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}

.testimonial-auto-card.active {
    opacity: 1;
    transform: translateX(0);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-stars .star {
    color: #F97316;
    font-size: 1.25rem;
}

.testimonial-quote {
    font-size: 1rem;
    line-height: 1.6;
    color: #374151;
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
}

.testimonial-quote::before {
    content: '"';
    font-size: 3rem;
    color: #F97316;
    position: absolute;
    top: -1rem;
    left: -0.5rem;
    opacity: 0.3;
}

.testimonial-author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #F97316, #FBBF24);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-name {
    font-weight: 600;
    color: #111827;
    font-size: 1rem;
}

.author-role {
    color: #6B7280;
    font-size: 0.875rem;
}

/* Progress Indicators */
.testimonials-progress {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.progress-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.progress-dot.active {
    background: white;
    transform: scale(1.2);
}

/* Interactive FAQ Styles */
.faq-interactive-container {
    space-y: 1rem;
}

.faq-interactive-item {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.faq-interactive-item:hover {
    box-shadow: 0 8px 30px rgba(249, 115, 22, 0.15);
    transform: translateY(-2px);
}

.faq-interactive-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #111827;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-interactive-question:hover {
    background: #FFF7ED;
    color: #F97316;
}

.faq-interactive-icon {
    width: 24px;
    height: 24px;
    color: #F97316;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-interactive-icon.rotated {
    transform: rotate(45deg);
}

.faq-interactive-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #FAFAFA;
}

.faq-interactive-answer.open {
    max-height: 500px;
}

.faq-interactive-content {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: #4B5563;
    line-height: 1.6;
}

.faq-interactive-content ul {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
}

.faq-interactive-content ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #E5E7EB;
}

.faq-interactive-content ul li:last-child {
    border-bottom: none;
}

.faq-interactive-content strong {
    color: #F97316;
}

/* Section Header Styles */
.client-support-section h3 {
    color: #111827;
    font-weight: 700;
    margin-bottom: 2rem;
}

/* Responsive Design */
@media (max-width: 1023px) {
    .client-support-section .grid {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
    }
    
    .testimonials-auto-container {
        margin-bottom: 2rem;
    }
}

@media (max-width: 640px) {
    .testimonials-auto-container {
        padding: 1.5rem;
    }
    
    .testimonial-auto-card {
        padding: 1rem;
    }
    
    .testimonial-quote {
        font-size: 0.9rem;
    }
    
    .faq-interactive-question {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .faq-interactive-content {
        padding: 0 1rem 1rem 1rem;
    }
    
    .author-avatar {
        width: 40px;
        height: 40px;
    }
}

/* Animation Keyframes */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(-50px);
    }
}

.testimonial-auto-card.slide-in {
    animation: slideIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.testimonial-auto-card.slide-out {
    animation: slideOut 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* ============================================================ */
/* COMPREHENSIVE MOBILE RESPONSIVE IMPROVEMENTS */
/* ============================================================ */

/* Mobile-First Base Styles */
@media (max-width: 480px) {
  /* Basic Mobile Fixes */
  html {
    font-size: 16px; /* Prevent zoom on input focus */
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
  }
  
  body {
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }
  
  * {
    -webkit-tap-highlight-color: rgba(249, 115, 22, 0.2);
  }
}

/* Hero Section Mobile Improvements */
@media (max-width: 768px) {
  .hero-new {
    min-height: 100vh;
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .hero-new .max-w-7xl {
    padding: 1rem;
    width: 100%;
  }
  
  .hero-new .grid {
    grid-template-columns: 1fr !important;
    gap: 2rem;
    text-align: center;
  }
  
  /* Hero Title Mobile */
  .hero-title-new {
    font-size: 2rem !important;
    line-height: 1.2 !important;
    margin-bottom: 1rem;
    text-align: center;
  }
  
  .hero-subtitle-new {
    font-size: 1rem !important;
    line-height: 1.5 !important;
    margin-bottom: 1.5rem;
    padding: 0 0.5rem;
    text-align: center;
  }
  
  /* Hero Buttons Mobile */
  .hero-buttons-new {
    flex-direction: column !important;
    gap: 0.75rem;
    width: 100%;
    align-items: stretch;
  }
  
  .btn-primary-new,
  .btn-secondary-new {
    width: 100% !important;
    padding: 1rem !important;
    font-size: 1rem !important;
    text-align: center;
    min-height: 48px; /* Touch target */
    border-radius: 8px !important;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Hero Stats Mobile */
  .hero-stats {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1rem;
    margin-top: 1.5rem;
  }
  
  .stat-item {
    padding: 0.75rem 0.5rem;
    text-align: center;
  }
  
  .stat-number {
    font-size: 1.25rem !important;
  }
  
  .stat-label {
    font-size: 0.8rem !important;
  }
}

/* Small Mobile Screens */
@media (max-width: 480px) {
  .hero-title-new {
    font-size: 1.75rem !important;
    line-height: 1.1 !important;
    padding: 0 0.5rem;
  }
  
  .hero-subtitle-new {
    font-size: 0.95rem !important;
    padding: 0 1rem;
  }
  
  .hero-stats {
    grid-template-columns: 1fr !important;
    gap: 0.75rem;
    text-align: center;
  }
  
  .stat-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
  }
}

/* Hero Form Mobile Improvements */
@media (max-width: 768px) {
  .hero-form-new {
    margin-top: 2rem;
    padding: 1.5rem !important;
    border-radius: 12px !important;
    width: 100%;
    max-width: none;
    order: 2;
  }
  
  .form-title-new {
    font-size: 1.25rem !important;
    margin-bottom: 1rem;
    text-align: center;
  }
  
  .form-subtitle {
    font-size: 0.9rem !important;
    margin-bottom: 1.5rem;
    text-align: center;
  }
  
  .form-input,
  .form-select,
  .form-textarea {
    width: 100% !important;
    padding: 0.875rem !important;
    font-size: 16px !important; /* Prevent zoom */
    min-height: 48px; /* Touch target */
    border-radius: 8px !important;
    box-sizing: border-box;
  }
  
  .form-submit {
    width: 100% !important;
    padding: 1rem !important;
    font-size: 1rem !important;
    min-height: 48px;
    margin-top: 1rem;
    border-radius: 8px !important;
  }
  
  .checkbox-label {
    font-size: 0.9rem !important;
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

/* Navigation Mobile Improvements */
@media (max-width: 768px) {
  .header-improved {
    padding: 0 1rem;
    backdrop-filter: blur(20px);
  }
  
  .header-improved .h-16 {
    height: 60px;
  }
  
  /* Logo Mobile */
  .header-logo-image-only,
  .mobile-logo-image-only {
    height: 40px !important;
    width: auto;
  }
  
  /* Mobile Menu Button */
  .mobile-menu-button {
    padding: 0.5rem;
    min-height: 44px;
    min-width: 44px;
    border-radius: 6px;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.3);
  }
  
  .mobile-menu-button svg {
    width: 24px;
    height: 24px;
  }
}

/* Services Section Mobile */
@media (max-width: 768px) {
  .services-new {
    padding: 3rem 0 !important;
  }
  
  .services-new .grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }
  
  .service-card-new {
    padding: 2rem 1.5rem !important;
    text-align: center;
    margin-bottom: 1rem;
    transform: none !important; /* Disable 3D effects */
  }
  
  .service-icon-new {
    margin: 0 auto 1rem;
  }
  
  .service-title-new {
    font-size: 1.25rem !important;
    margin-bottom: 0.75rem;
  }
  
  .service-description-new {
    font-size: 0.95rem !important;
    line-height: 1.5;
    margin-bottom: 1rem;
  }
  
  .service-link-new {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    min-height: 44px;
    border-radius: 6px;
    background: rgba(249, 115, 22, 0.1);
    color: #F97316 !important;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
  }
  
  .service-link-new:hover {
    background: rgba(249, 115, 22, 0.2);
    transform: translateY(-1px);
  }
}

@media (max-width: 480px) {
  .services-new .grid {
    gap: 1rem;
  }
  
  .service-card-new {
    padding: 1.5rem 1rem !important;
  }
}

/* Process Section Mobile */
@media (max-width: 768px) {
  .process-new {
    padding: 3rem 0 !important;
  }
  
  .timeline-container {
    overflow-x: auto;
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
  }
  
  .timeline-container .grid {
    grid-template-columns: repeat(5, minmax(150px, 1fr)) !important;
    gap: 1rem;
    width: max-content;
    min-width: 100%;
  }
  
  .timeline-step {
    text-align: center;
    min-width: 120px;
  }
  
  .step-circle {
    width: 50px !important;
    height: 50px !important;
    margin: 0 auto 1rem;
  }
  
  .step-title {
    font-size: 1rem !important;
    margin-bottom: 0.5rem;
  }
  
  .step-description {
    font-size: 0.85rem !important;
    line-height: 1.4;
  }
}

/* Portfolio Section Mobile */
@media (max-width: 768px) {
  .portfolio-new {
    padding: 3rem 0 !important;
  }
  
  .portfolio-filters {
    flex-wrap: wrap !important;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2rem;
  }
  
  .filter-btn {
    padding: 0.5rem 1rem !important;
    font-size: 0.9rem !important;
    min-height: 40px;
    white-space: nowrap;
    border-radius: 6px;
  }
  
  .portfolio-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }
  
  .portfolio-card-new {
    margin-bottom: 1rem;
    transform: none !important; /* Disable 3D effects */
  }
  
  .portfolio-image {
    height: 200px !important;
  }
  
  .portfolio-overlay {
    backdrop-filter: blur(5px);
  }
  
  .portfolio-view-btn {
    width: 44px !important;
    height: 44px !important;
    border-radius: 50%;
    background: rgba(249, 115, 22, 0.9);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .portfolio-content {
    padding: 1rem !important;
  }
  
  .portfolio-title {
    font-size: 1.1rem !important;
    margin-bottom: 0.5rem;
  }
  
  .portfolio-description {
    font-size: 0.9rem !important;
    margin-bottom: 0.75rem;
  }
  
  .portfolio-tags {
    gap: 0.5rem !important;
    flex-wrap: wrap;
  }
  
  .tag {
    padding: 0.25rem 0.5rem !important;
    font-size: 0.8rem !important;
    background: rgba(249, 115, 22, 0.1);
    color: #F97316;
    border-radius: 4px;
  }
}

@media (max-width: 480px) {
  .portfolio-filters {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  
  .filter-btn {
    font-size: 0.8rem !important;
    padding: 0.375rem 0.5rem !important;
  }
  
  .portfolio-image {
    height: 180px !important;
  }
}

/* FAQ Section Mobile */
@media (max-width: 768px) {
  .faq-section {
    padding: 3rem 0 !important;
  }
  
  .faq-interactive-container {
    gap: 1rem;
  }
  
  .faq-interactive-item {
    margin-bottom: 1rem;
    border-radius: 8px !important;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
  
  .faq-interactive-question {
    padding: 1rem !important;
    font-size: 1rem !important;
    line-height: 1.4;
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .faq-interactive-question span {
    flex: 1;
  }
  
  .faq-interactive-icon {
    width: 20px !important;
    height: 20px !important;
    flex-shrink: 0;
    margin-top: 2px;
  }
  
  .faq-interactive-answer {
    background: rgba(249, 115, 22, 0.05);
  }
  
  .faq-interactive-content {
    padding: 1rem !important;
    font-size: 0.9rem !important;
    line-height: 1.5;
  }
  
  .faq-interactive-content ul {
    margin: 0.75rem 0;
    padding-left: 1rem;
  }
  
  .faq-interactive-content li {
    margin-bottom: 0.375rem;
  }
  
  .faq-interactive-content strong {
    color: #F97316;
    font-weight: 600;
  }
}

/* CTA Section Mobile */
@media (max-width: 768px) {
  .cta-new {
    padding: 2rem 0 !important;
  }
  
  .cta-title {
    font-size: 2rem !important;
    margin-bottom: 1rem;
    text-align: center;
  }
  
  .cta-subtitle {
    font-size: 1rem !important;
    margin-bottom: 2rem;
    text-align: center;
    padding: 0 1rem;
  }
  
  .cta-stats {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  
  .stat-chip {
    padding: 1rem !important;
    border-radius: 8px;
    text-align: center;
  }
  
  .stat-chip .stat-number {
    font-size: 1.25rem !important;
    font-weight: 700;
  }
  
  .stat-chip .stat-label {
    font-size: 0.85rem !important;
  }
  
  .cta-button {
    width: 100% !important;
    max-width: 300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem !important;
    min-height: 48px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
  }
}

@media (max-width: 480px) {
  .cta-title {
    font-size: 1.75rem !important;
  }
  
  .cta-stats {
    grid-template-columns: 1fr !important;
    gap: 0.75rem;
  }
  
  .stat-chip {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem !important;
  }
}

/* Partners Section Mobile */
@media (max-width: 768px) {
  .partners-enhanced {
    padding: 3rem 0 !important;
  }
  
  .partners-marquee-new {
    padding: 1rem 0;
    overflow: hidden;
  }
  
  .partners-track-new {
    gap: 2rem !important;
    animation-duration: 20s; /* Faster on mobile */
  }
  
  .partner-logo-new {
    height: 60px !important;
    opacity: 0.8;
  }
  
  .partner-img-new {
    height: 60px !important;
    width: auto;
    object-fit: contain;
  }
}

@media (max-width: 480px) {
  .partner-logo-new {
    height: 50px !important;
  }
  
  .partner-img-new {
    height: 50px !important;
  }
  
  .partners-track-new {
    gap: 1.5rem !important;
  }
}

/* Footer Mobile */
@media (max-width: 768px) {
  .footer-3d,
  #site-footer {
    padding: 2rem 0 1rem !important;
  }
  
  .footer-3d .grid,
  #site-footer .grid {
    grid-template-columns: 1fr !important;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-brand-3d {
    margin-bottom: 1rem;
  }
  
  .footer-logo-3d {
    font-size: 1.5rem !important;
  }
  
  .footer-tagline-3d,
  #site-footer p {
    font-size: 1rem !important;
    margin-bottom: 1.5rem;
  }
  
  .footer-social-3d,
  #site-footer .flex.space-x-4 {
    justify-content: center !important;
    gap: 1rem;
  }
  
  .footer-social-link-3d,
  #site-footer .flex.space-x-4 a {
    width: 44px !important;
    height: 44px !important;
  }
  
  .footer-title-3d,
  #site-footer h4 {
    font-size: 1.1rem !important;
    margin-bottom: 1rem;
  }
  
  .footer-links-3d,
  #site-footer ul {
    text-align: center;
  }
  
  .footer-links-3d a,
  #site-footer ul a {
    display: block;
    padding: 0.5rem 0 !important;
    font-size: 0.95rem !important;
  }
  
  .footer-policies-3d,
  #site-footer .flex {
    flex-direction: column !important;
    align-items: center;
    gap: 1rem;
    text-align: center;
  }
  
  .footer-copyright-3d,
  #site-footer .text-gray-400 {
    font-size: 0.9rem !important;
    text-align: center;
  }
}

/* Touch and Interaction Improvements */
@media (max-width: 768px) {
  /* Better touch targets */
  button,
  a,
  input,
  select,
  textarea {
    min-height: 44px;
  }
  
  /* Improved scrolling */
  body {
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
  }
  
  /* Better tap highlights */
  * {
    -webkit-tap-highlight-color: rgba(249, 115, 22, 0.2);
  }
  
  /* Form improvements */
  input,
  select,
  textarea {
    font-size: 16px; /* Prevent zoom on focus */
    border-radius: 8px;
    padding: 0.875rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
  
  /* Button improvements */
  .btn-primary-new,
  .btn-secondary-new,
  .form-submit,
  .cta-button,
  .mobile-header-cta-button {
    border-radius: 8px;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.2s ease;
    cursor: pointer;
  }
  
  /* Card hover effects disabled on mobile */
  .service-card-new,
  .portfolio-card-new,
  .tilt-card,
  .tc-tilt {
    transform: none !important;
    transition: none !important;
  }
  
  /* Simplified animations */
  .floating-orb-new,
  .floating-orb-3d,
  .tech-icon-3d,
  .particle,
  .enhanced-particle,
  .floating-shape-modern,
  .orb-1,
  .orb-2,
  .orb-3 {
    display: none !important;
  }
  
  /* Disable 3D effects on mobile */
  .hero-3d::before,
  .hero-3d-grid,
  .starfield-3d,
  .matrix-rain-3d,
  .holographic-scanlines {
    display: none !important;
  }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .hero-new {
    min-height: 100vh;
    padding: 1rem 0;
  }
  
  .hero-new .grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 2rem;
    align-items: center;
  }
  
  .hero-form-new {
    margin-top: 0;
  }
  
  .hero-stats {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

/* Very Small Screens */
@media (max-width: 360px) {
  .hero-title-new {
    font-size: 1.5rem !important;
  }
  
  .hero-subtitle-new {
    font-size: 0.9rem !important;
  }
  
  .hero-buttons-new {
    gap: 0.5rem;
  }
  
  .btn-primary-new,
  .btn-secondary-new {
    padding: 0.875rem !important;
    font-size: 0.95rem !important;
  }
  
  .service-card-new {
    padding: 1.25rem 0.875rem !important;
  }
  
  .faq-interactive-question {
    padding: 0.875rem !important;
    font-size: 0.95rem !important;
  }
  
  .faq-interactive-content {
    padding: 0.875rem !important;
    font-size: 0.85rem !important;
  }
  
  .hero-form-new {
    padding: 1rem !important;
  }
}

/* High DPI Screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .header-logo-image-only,
  .mobile-logo-image-only,
  .partner-img-new {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Focus improvements for mobile */
@media (max-width: 768px) {
  *:focus {
    outline: 2px solid #F97316;
    outline-offset: 2px;
  }
  
  input:focus,
  select:focus,
  textarea:focus,
  button:focus {
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.2);
  }
}

/* Section spacing improvements */
@media (max-width: 768px) {
  .section-badge,
  .section-badge-dark {
    margin-bottom: 1rem;
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }
  
  .section-title,
  .section-title-dark {
    font-size: 2rem !important;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-align: center;
  }
  
  .section-subtitle,
  .section-subtitle-dark {
    font-size: 1rem !important;
    line-height: 1.5;
    text-align: center;
    padding: 0 1rem;
    margin-bottom: 2rem;
  }
  
  .gradient-text-new {
    display: inline-block;
    word-break: break-word;
  }
}

/* Print styles */
@media print {
  .header-improved,
  .mobile-menu-button,
  .mobile-menu-improved,
  .floating-orb-new,
  .cta-new,
  .footer-3d {
    display: none !important;
  }
  
  body {
    background: white !important;
    color: black !important;
  }
  
  .hero-new,
  .services-new,
  .portfolio-new,
  .process-new {
    background: white !important;
    color: black !important;
  }
}

/* ========================================= */
/* NEW PARTNERS MARQUEE DESIGN - 2024 */
/* ========================================= */

.partners-marquee-container {
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(249, 115, 22, 0.1);
  padding: 2rem 0;
}

.partners-marquee-track {
  display: inline-flex;
  align-items: center;
  animation: partnersMarquee 30s linear infinite;
  gap: 3rem;
}

.partner-marquee-item {
  flex-shrink: 0;
  display: inline-block;
}

.partner-marquee-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 120px;
}

.partner-marquee-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(249, 115, 22, 0.3);
  box-shadow: 0 10px 30px rgba(249, 115, 22, 0.2);
}

.partner-marquee-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.8);
  transition: all 0.3s ease;
}

.partner-marquee-card:hover .partner-marquee-img {
  filter: grayscale(0%) brightness(1);
}

/* Marquee Animation */
@keyframes partnersMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Pause on Hover */
.partners-marquee-container:hover .partners-marquee-track {
  animation-play-state: paused;
}

/* Trust Indicators */
.trust-indicators-new {
  margin-top: 4rem;
}

.trust-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.trust-stat-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.trust-stat-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(249, 115, 22, 0.3);
}

.trust-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #F97316, #FBBF24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.trust-label {
  color: #e5e7eb;
  font-size: 1rem;
  font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .partners-marquee-container {
    padding: 1.5rem 0;
  }
  
  .partners-marquee-track {
    gap: 2rem;
    animation-duration: 25s;
  }
  
  .partner-marquee-card {
    width: 150px;
    height: 100px;
    padding: 1rem;
  }
  
  .trust-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .trust-stat-item {
    padding: 1rem;
  }
  
  .trust-number {
    font-size: 2rem;
  }
  
  .trust-label {
    font-size: 0.875rem;
  }
}

@media (max-width: 480px) {
  .partners-marquee-track {
    gap: 1.5rem;
    animation-duration: 20s;
  }
  
  .partner-marquee-card {
    width: 120px;
    height: 80px;
    padding: 0.75rem;
  }
  
  .trust-stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .trust-number {
    font-size: 1.75rem;
  }
}


/* ========================================= */
/* TRUSTED PARTNERS GRID - CLEAN & SIMPLE */
/* ========================================= */

.partners-grid-container {
  position: relative;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(249, 115, 22, 0.2);
  transition: all 0.3s ease;
}

.partners-grid-container:hover {
  border-color: rgba(249, 115, 22, 0.4);
  box-shadow: 0 10px 30px rgba(249, 115, 22, 0.1);
}

.partner-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  min-height: 120px;
}

.partner-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(249, 115, 22, 0.3);
  box-shadow: 0 15px 35px rgba(249, 115, 22, 0.2);
}

.partner-card-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-logo {
  max-width: 100%;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.7);
  transition: all 0.3s ease;
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
  .partners-grid-container {
    padding: 1.5rem;
  }
  
  .partner-card {
    padding: 1rem;
    min-height: 100px;
  }
  
  .partner-logo {
    max-height: 60px;
  }
}

@media (max-width: 480px) {
  .partners-grid-container {
    padding: 1rem;
  }
  
  .partner-card {
    padding: 0.75rem;
    min-height: 80px;
  }
  
  .partner-logo {
    max-height: 50px;
  }
}


/* ========================================= */
/* TESTIMONIALS SIMPLE CARDS - CLEAN & WORKING */
/* ========================================= */

.testimonials-cards-container {
  position: relative;
  max-height: 600px;
  overflow-y: auto;
  padding-right: 1rem;
}

.testimonials-cards-container::-webkit-scrollbar {
  width: 6px;
}

.testimonials-cards-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

.testimonials-cards-container::-webkit-scrollbar-thumb {
  background: rgba(249, 115, 22, 0.5);
  border-radius: 3px;
}

.testimonials-cards-container::-webkit-scrollbar-thumb:hover {
  background: rgba(249, 115, 22, 0.7);
}

.testimonials-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.testimonial-card-simple {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: slideInUp 0.6s ease forwards;
}

.testimonial-card-simple:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card-simple:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card-simple:nth-child(3) { animation-delay: 0.3s; }

.testimonial-card-simple:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(249, 115, 22, 0.3);
  box-shadow: 0 15px 35px rgba(249, 115, 22, 0.2);
}

.testimonial-content-simple {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial-quote-simple {
  position: relative;
  padding-left: 3rem;
}

.quote-icon-simple {
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  color: rgba(249, 115, 22, 0.6);
}

.testimonial-text-simple {
  color: #e5e7eb;
  font-size: 0.95rem;
  line-height: 1.6;
  font-style: italic;
  margin: 0;
}

.testimonial-author-simple {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.author-avatar-simple {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, #F97316, #FBBF24);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.avatar-initials-simple {
  color: white;
  font-weight: 600;
  font-size: 0.875rem;
}

.author-info-simple {
  flex: 1;
}

.author-name-simple {
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.author-position-simple {
  color: #9ca3af;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}

.author-rating-simple {
  display: flex;
  align-items: center;
}

.stars-simple {
  color: #FBBF24;
  font-size: 0.875rem;
  letter-spacing: 0.1rem;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .testimonials-cards-container {
    max-height: 500px;
    padding-right: 0.5rem;
  }
  
  .testimonial-card-simple {
    padding: 1.25rem;
  }
  
  .testimonial-quote-simple {
    padding-left: 2.5rem;
  }
  
  .quote-icon-simple {
    width: 1.5rem;
    height: 1.5rem;
  }
  
  .testimonial-text-simple {
    font-size: 0.875rem;
  }
  
  .author-avatar-simple {
    width: 2.5rem;
    height: 2.5rem;
  }
  
  .avatar-initials-simple {
    font-size: 0.75rem;
  }
  
  .author-name-simple {
    font-size: 0.85rem;
  }
  
  .author-position-simple {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .testimonials-cards-container {
    max-height: 400px;
  }
  
  .testimonial-card-simple {
    padding: 1rem;
  }
  
  .testimonials-grid {
    gap: 1rem;
  }
}


/* ========================================= */
/* PARTNERS MARQUEE ANIMATION - WORKING */
/* ========================================= */

.partners-marquee-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.partners-marquee-track {
  display: flex;
  align-items: center;
  animation: marqueeScroll 30s linear infinite;
  gap: 3rem;
  width: max-content;
}

.partner-marquee-slide {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 1.5rem;
  padding: 2rem;
  transition: all 0.4s ease;
  width: 220px;
  height: 140px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 
              0 4px 10px rgba(249, 115, 22, 0.1),
              inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.partner-marquee-slide:hover {
  transform: translateY(-8px) rotateX(5deg) rotateY(2deg) scale(1.05);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(249, 115, 22, 0.4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 
              0 10px 25px rgba(249, 115, 22, 0.3),
              inset 0 2px 0 rgba(255, 255, 255, 0.3),
              0 0 30px rgba(249, 115, 22, 0.2);
}

.partner-marquee-logo {
  max-width: 120%;
  max-height: 120%;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.7) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
  transition: all 0.4s ease;
  transform: translateZ(20px);
}

.partner-marquee-slide:hover .partner-marquee-logo {
  filter: grayscale(0%) brightness(1.1) drop-shadow(0 8px 15px rgba(249, 115, 22, 0.4));
  transform: translateZ(40px) scale(1.1) rotateY(5deg);
}

/* Marquee Animation */
@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Pause on hover */
.partners-marquee-wrapper:hover .partners-marquee-track {
  animation-play-state: paused;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .partners-marquee-track {
    gap: 2rem;
    animation-duration: 25s;
  }
  
  .partner-marquee-slide {
    width: 160px;
    height: 120px;
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .partners-marquee-track {
    gap: 1.5rem;
    animation-duration: 20s;
  }
  
  .partner-marquee-slide {
    width: 140px;
    height: 100px;
    padding: 1rem;
  }
}


/* ========================================= */
/* TESTIMONIALS MARQUEE ANIMATION - VERTICAL */
/* ========================================= */

.testimonials-marquee-wrapper {
  position: relative;
  height: 600px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(5px);
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonials-marquee-track {
  display: flex;
  flex-direction: column;
  animation: testimonialsVerticalScroll 25s linear infinite;
  gap: 2rem;
  height: max-content;
}

.testimonial-marquee-slide {
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
  min-height: 200px;
  width: 100%;
}

.testimonial-marquee-slide:hover {
  transform: translateX(-5px) scale(1.02);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(249, 115, 22, 0.3);
  box-shadow: 0 15px 35px rgba(249, 115, 22, 0.2);
}

.testimonial-content-marquee {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
}

.testimonial-quote-marquee {
  position: relative;
  padding-left: 3rem;
  flex: 1;
}

.quote-icon-marquee {
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  color: rgba(249, 115, 22, 0.6);
}

.testimonial-text-marquee {
  color: #e5e7eb;
  font-size: 0.95rem;
  line-height: 1.6;
  font-style: italic;
  margin: 0;
}

.testimonial-author-marquee {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.author-avatar-marquee {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, #F97316, #FBBF24);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.avatar-initials-marquee {
  color: white;
  font-weight: 600;
  font-size: 0.875rem;
}

.author-info-marquee {
  flex: 1;
}

.author-name-marquee {
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.author-position-marquee {
  color: #9ca3af;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}

.author-rating-marquee {
  display: flex;
  align-items: center;
}

.stars-marquee {
  color: #FBBF24;
  font-size: 0.875rem;
  letter-spacing: 0.1rem;
}

/* Vertical Marquee Animation */
@keyframes testimonialsVerticalScroll {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

/* Pause on hover */
.testimonials-marquee-wrapper:hover .testimonials-marquee-track {
  animation-play-state: paused;
}

/* Fade edges */
.testimonials-marquee-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: linear-gradient(to bottom, rgba(11, 11, 12, 0.8), transparent);
  z-index: 10;
  pointer-events: none;
}

.testimonials-marquee-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: linear-gradient(to top, rgba(11, 11, 12, 0.8), transparent);
  z-index: 10;
  pointer-events: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .testimonials-marquee-wrapper {
    height: 500px;
  }
  
  .testimonials-marquee-track {
    animation-duration: 20s;
    gap: 1.5rem;
  }
  
  .testimonial-marquee-slide {
    padding: 1.25rem;
    min-height: 180px;
  }
  
  .testimonial-quote-marquee {
    padding-left: 2.5rem;
  }
  
  .quote-icon-marquee {
    width: 1.5rem;
    height: 1.5rem;
  }
  
  .testimonial-text-marquee {
    font-size: 0.875rem;
  }
  
  .author-avatar-marquee {
    width: 2.5rem;
    height: 2.5rem;
  }
  
  .avatar-initials-marquee {
    font-size: 0.75rem;
  }
  
  .author-name-marquee {
    font-size: 0.85rem;
  }
  
  .author-position-marquee {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .testimonials-marquee-wrapper {
    height: 400px;
  }
  
  .testimonials-marquee-track {
    animation-duration: 18s;
    gap: 1rem;
  }
  
  .testimonial-marquee-slide {
    padding: 1rem;
    min-height: 160px;
  }
}


/* ========================================= */
/* TRUST INDICATORS - FIXED ONE LINE LAYOUT */
/* ========================================= */

.trust-indicators-new {
  margin-top: 4rem;
  width: 100%;
}

.trust-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
}

.trust-stat-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  transition: all 0.3s ease;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.trust-stat-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(249, 115, 22, 0.3);
  box-shadow: 0 15px 35px rgba(249, 115, 22, 0.2);
}

.trust-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #F97316, #FBBF24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.trust-label {
  color: #e5e7eb;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
}

/* Mobile Responsive - Stack on smaller screens */
@media (max-width: 768px) {
  .trust-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .trust-stat-item {
    padding: 1.25rem;
    min-height: 100px;
  }
  
  .trust-number {
    font-size: 2rem;
  }
  
  .trust-label {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .trust-stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 300px;
  }
  
  .trust-stat-item {
    padding: 1rem;
    min-height: 80px;
  }
  
  .trust-number {
    font-size: 1.75rem;
  }
  
  .trust-label {
    font-size: 0.85rem;
  }
}

/* Desktop - Force single row */
@media (min-width: 769px) {
  .trust-stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}


/* ========================================= */
/* FAQ SECTION COLOR FIXES */
/* ========================================= */

/* Fix FAQ section text colors */
.faq-section {
  background: linear-gradient(135deg, #0B0B0C 0%, #1a1a1a 50%, #0B0B0C 100%);
}

.faq-interactive-item {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(249, 115, 22, 0.2) !important;
}

.faq-interactive-item:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(249, 115, 22, 0.4) !important;
  box-shadow: 0 15px 35px rgba(249, 115, 22, 0.2) !important;
}

.faq-interactive-question {
  color: #ffffff !important;
}

.faq-interactive-question:hover {
  color: #ffffff !important;
  background: transparent !important;
}

.faq-interactive-question span {
  color: #ffffff !important;
}

.faq-interactive-question:hover span {
  color: #F97316 !important;
}

.faq-interactive-icon {
  color: #F97316 !important;
}

.faq-interactive-content {
  background: rgba(0, 0, 0, 0.3) !important;
  color: #e5e7eb !important;
}

.faq-interactive-content p {
  color: #e5e7eb !important;
}

.faq-interactive-content .prose {
  color: #e5e7eb !important;
}

.faq-interactive-content .prose p {
  color: #e5e7eb !important;
}

.faq-interactive-content .font-semibold {
  color: #ffffff !important;
}

.faq-interactive-content .text-gray-300 {
  color: #d1d5db !important;
}

.faq-interactive-content .text-gray-400 {
  color: #9ca3af !important;
}

/* Fix specific content colors */
.faq-interactive-content .bg-white\/10 {
  background: rgba(255, 255, 255, 0.1) !important;
}

.faq-interactive-content .text-white {
  color: #ffffff !important;
}

.faq-interactive-content .text-green-400 {
  color: #4ade80 !important;
}

.faq-interactive-content .text-yellow-400 {
  color: #facc15 !important;
}

.faq-interactive-content .text-blue-400 {
  color: #60a5fa !important;
}

.faq-interactive-content .text-red-400 {
  color: #f87171 !important;
}

.faq-interactive-content .text-orange-400 {
  color: #fb923c !important;
}

.faq-interactive-content .text-purple-400 {
  color: #c084fc !important;
}

.faq-interactive-content .text-indigo-400 {
  color: #818cf8 !important;
}

/* Fix CTA buttons in FAQ */
.faq-section .btn-primary-new {
  background: linear-gradient(135deg, #F97316, #FBBF24) !important;
  color: #ffffff !important;
  border: none !important;
}

.faq-section .btn-primary-new:hover {
  background: linear-gradient(135deg, #ea580c, #f59e0b) !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 25px rgba(249, 115, 22, 0.4) !important;
}

.faq-section .btn-secondary-new {
  background: transparent !important;
  color: #F97316 !important;
  border: 2px solid #F97316 !important;
}

.faq-section .btn-secondary-new:hover {
  background: #F97316 !important;
  color: #ffffff !important;
  border-color: #F97316 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3) !important;
}

/* Fix contact CTA section */
.faq-section .bg-white\/10 {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(249, 115, 22, 0.2) !important;
}

.faq-section .text-xl {
  color: #ffffff !important;
}

.faq-section .text-gray-300 {
  color: #d1d5db !important;
}

/* Interactive Intro Section Styles */
.intro-active-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* Intro Background Orbs */
.intro-orb {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, #F97316, #FBBF24);
  opacity: 0.1;
  animation: introFloat 8s ease-in-out infinite;
}

.intro-orb-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.intro-orb-2 {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.intro-orb-3 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  left: 60%;
  animation-delay: 4s;
}

@keyframes introFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

/* Interactive Service Cards */
.intro-service-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.intro-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #F97316/10, #FBBF24/10);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.intro-service-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: #F97316;
  box-shadow: 0 20px 40px rgba(249, 115, 22, 0.3);
}

.intro-service-card:hover::before {
  opacity: 1;
}

.intro-service-card.active {
  transform: translateY(-15px) scale(1.05);
  border-color: #F97316;
  background: rgba(249, 115, 22, 0.1);
  box-shadow: 0 25px 50px rgba(249, 115, 22, 0.4);
}

.intro-service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #F97316, #FBBF24);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: white;
  transition: all 0.3s ease;
}

.intro-service-card:hover .intro-service-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 30px rgba(249, 115, 22, 0.5);
}

.intro-service-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.intro-service-card:hover .intro-service-title {
  color: #F97316;
}

.intro-service-description {
  color: #D1D5DB;
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.intro-service-connections {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.connection-tag {
  background: rgba(249, 115, 22, 0.2);
  color: #F97316;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid rgba(249, 115, 22, 0.3);
  transition: all 0.3s ease;
}

.intro-service-card:hover .connection-tag {
  background: rgba(249, 115, 22, 0.3);
  border-color: #F97316;
  transform: scale(1.05);
}

/* Dynamic Content Area */
.intro-dynamic-content {
  margin-top: 3rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s ease;
}

.intro-dynamic-content.show {
  opacity: 1;
  transform: translateY(0);
}

.intro-content-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 25px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.intro-content-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #F97316, #FBBF24);
}

.intro-content-header {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.intro-content-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #F97316, #FBBF24);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.intro-content-body {
  position: relative;
  z-index: 1;
}

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

.intro-content-features li {
  color: #D1D5DB;
  padding: 0.5rem 0;
  padding-left: 2rem;
  position: relative;
}

.intro-content-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0.5rem;
  color: #10B981;
  font-weight: bold;
  width: 1.5rem;
  height: 1.5rem;
  background: rgba(16, 185, 129, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.intro-content-connections {
  margin-top: 2rem;
}

.intro-content-connections-list .connection-tag {
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  background: rgba(251, 191, 36, 0.2);
  color: #FBBF24;
  border-color: rgba(251, 191, 36, 0.3);
}

.intro-content-actions {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Connection Visualization Canvas */
.intro-connections-viz {
  margin-top: 3rem;
  position: relative;
}

#intro-connections-canvas {
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.02);
}

/* Service Category Highlighting */
.intro-service-card[data-category="branding"].highlight {
  border-color: #8B5CF6;
  background: rgba(139, 92, 246, 0.1);
}

.intro-service-card[data-category="web"].highlight {
  border-color: #06B6D4;
  background: rgba(6, 182, 212, 0.1);
}

.intro-service-card[data-category="mobile"].highlight {
  border-color: #10B981;
  background: rgba(16, 185, 129, 0.1);
}

.intro-service-card[data-category="marketing"].highlight {
  border-color: #F59E0B;
  background: rgba(245, 158, 11, 0.1);
}

.intro-service-card[data-category="ai"].highlight {
  border-color: #EF4444;
  background: rgba(239, 68, 68, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .intro-service-card {
    padding: 1.5rem;
  }
  
  .intro-content-card {
    padding: 2rem;
  }
  
  .intro-content-header {
    flex-direction: column;
    text-align: center;
  }
  
  .intro-content-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto;
  }
  
  .intro-content-actions {
    justify-content: center;
  }
}

/* Animation for service connections */
@keyframes connectionPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}

.connection-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, #F97316, #FBBF24);
  animation: connectionPulse 2s ease-in-out infinite;
  z-index: 1;
}

/* Loading animation for dynamic content */
.intro-content-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
}

.intro-loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(249, 115, 22, 0.3);
  border-top: 3px solid #F97316;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


/* Enhanced Button Styles */
.btn-primary-new {
  background: linear-gradient(135deg, #F97316, #FBBF24);
  color: white;
  padding: 0.875rem 2rem;
  border-radius: 1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary-new:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
  background: linear-gradient(135deg, #ea580c, #f59e0b);
}

.btn-primary-new:active {
  transform: translateY(0);
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.btn-secondary-new {
  background: transparent;
  color: #F97316;
  padding: 0.875rem 2rem;
  border: 2px solid #F97316;
  border-radius: 1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-secondary-new:hover {
  background: #F97316;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
}

.btn-secondary-new:active {
  transform: translateY(0);
}

/* Featured Portfolio Button Enhancements */
.featured-project-card {
  transition: all 0.3s ease;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.featured-project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Portfolio Filter Button Enhancements */
.portfolio-filter-btn-dark {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.portfolio-filter-btn-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.portfolio-filter-btn-dark.active {
  background: linear-gradient(135deg, #F97316, #FBBF24);
  color: white;
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

/* Button Animation Effects */
@keyframes buttonPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.btn-primary-new:focus,
.btn-secondary-new:focus {
  animation: buttonPulse 0.6s ease-in-out;
  outline: none;
}

/* Ripple Effect */
.btn-primary-new::before,
.btn-secondary-new::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-primary-new:active::before,
.btn-secondary-new:active::before {
  width: 300px;
  height: 300px;
}

/* Enhanced Portfolio Cards */
.portfolio-card-dark {
  transition: all 0.3s ease;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.portfolio-card-dark:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Logo Card Enhancements */
.logo-card {
  transition: all 0.3s ease;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Branding Card Enhancements */
.branding-card {
  transition: all 0.3s ease;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.branding-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Button Loading State */
.btn-loading {
  position: relative;
  color: transparent;
}

.btn-loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Success State */
.btn-success {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
}

.btn-success:hover {
  background: linear-gradient(135deg, #059669, #047857);
}

/* Error State */
.btn-error {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
}

.btn-error:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
}

/* Pulse Animation for Featured Cards */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.featured-project-card.pulse {
  animation: pulse 0.6s ease-in-out;
}

/* Enhanced Button States */
.btn-primary-new:focus,
.btn-secondary-new:focus {
  outline: 2px solid #F97316;
  outline-offset: 2px;
}

/* Button Disabled State */
.btn-primary-new:disabled,
.btn-secondary-new:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

/* Success Animation */
@keyframes successBounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

.btn-success-animation {
  animation: successBounce 1s ease-in-out;
}

/* Loading Spinner */
.btn-loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Enhanced Hover Effects */
.featured-project-card:hover .group-hover\\:scale-105 {
  transform: scale(1.05);
}

.featured-project-card:hover .group-hover\\:opacity-100 {
  opacity: 1;
}

/* Button Group Styling */
.flex.flex-col.sm\\:flex-row.gap-4 {
  gap: 1rem;
}

@media (max-width: 640px) {
  .flex.flex-col.sm\\:flex-row.gap-4 {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .flex.flex-col.sm\\:flex-row.gap-4 .btn-primary-new,
  .flex.flex-col.sm\\:flex-row.gap-4 .btn-secondary-new {
    width: 100%;
    justify-content: center;
  }
}
