/**
 * Industrial Services Pro - Main Stylesheet
 * Imports theme and provides additional styling
 */

/* Import theme configuration */
@import 'theme.css';

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem; /* Offset for fixed header */
}

body {
  font-family: var(--font-body);
  color: var(--color-dark);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.font-bold {
  font-weight: 700;
}

.font-medium {
  font-weight: 500;
}

.rounded {
  border-radius: var(--border-radius-md);
}

.rounded-lg {
  border-radius: var(--border-radius-lg);
}

.rounded-full {
  border-radius: var(--border-radius-full);
}

.shadow {
  box-shadow: var(--shadow-md);
}

.shadow-lg {
  box-shadow: var(--shadow-lg);
}

.overflow-hidden {
  overflow: hidden;
}

/* Layout */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

/* Section Styles */
.section {
  padding: 5rem 1rem;
  position: relative;
  overflow: hidden;
}

.section-sm {
  padding: 3rem 1rem;
}

.section-title {
  position: relative;
  margin-bottom: 3rem;
  text-align: center;
}

.section-title::after {
  content: '';
  display: block;
  width: 6rem;
  height: 0.25rem;
  background: var(--accent-color);
  margin: 1rem auto;
}

.section::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: var(--gradient-primary);
  opacity: 0.02;
  pointer-events: none;
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.btn-primary {
  background-color: var(--accent-color);
  color: white;
}

.btn-primary:hover {
  background-color: var(--accent-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid white;
  color: white;
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.btn::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: var(--transition-smooth);
}

.btn:hover::after {
  opacity: 1;
}

/* Card Styles */
.card {
  background-color: var(--bg-white);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Form Styles */
.form-control {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--bg-gray);
  border-radius: 0.5rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--accent-color);
  outline: none;
}

/* Responsive Containers */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Media Queries */
@media (max-width: 768px) {
  .section {
    padding: 3rem 1rem;
  }
  
  .hidden-mobile {
    display: none;
  }
}

/* Header Styles */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: var(--transition-default);
}

.header.scrolled {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Mobile Menu */
@media (max-width: 1024px) {
  #mobile-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    padding: 1rem 0;
    z-index: 30;
  }
  
  #mobile-menu.hidden {
    display: none;
  }
  
  #mobile-menu li:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
}

/* Hero Section */
#hero {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  background: var(--gradient-primary);
}

#hero::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url('/images/dots.svg');
  opacity: 0.1;
}

/* Service Cards */
.service-card {
  transition: var(--transition-default);
}

.service-card:hover {
  transform: translateY(-5px);
}

/* Image Effects */
.hover-zoom {
  overflow: hidden;
}

.hover-zoom img {
  transition: transform 0.5s ease;
}

.hover-zoom:hover img {
  transform: scale(1.05);
}

/* Form Styling */
form input,
form select,
form textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.375rem;
  background-color: white;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-dark);
}

form input:focus,
form select:focus,
form textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(245, 101, 101, 0.2);
}

form textarea {
  min-height: 150px;
  resize: vertical;
}

/* Footer */
#footer {
  margin-top: auto;
  background-color: var(--color-primary);
  color: white;
}

/* Back to top button animation */
#back-to-top {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Custom Animation Classes */
.fade-in-down {
  animation: fadeInDown 1s ease-in-out;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Pulse Animation for Map Pin */
.pulse-animation {
  animation: pulse-ring 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  80%, 100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* Before/After Slider Component */
.before-after-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.before-image,
.after-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.after-image {
  width: 50%;
  background-color: var(--color-primary);
  border-right: 3px solid white;
}

.slider-control {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: white;
  cursor: ew-resize;
  transform: translateX(-50%);
}

.slider-control::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

/* Testimonial Card */
.testimonial-card {
  transition: var(--transition-default);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

/* Video Modal */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.video-modal.active {
  opacity: 1;
  visibility: visible;
}

.video-container {
  position: relative;
  width: 80%;
  max-width: 900px;
  background: white;
  border-radius: var(--border-radius-md);
  overflow: hidden;
}

.video-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 5;
  background: white;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.video-close:hover {
  background: var(--color-accent);
  color: white;
}

/**
 * Industrial Services Pro - Main Styles
 * Additional custom styles beyond theme configuration
 */

/* Additional utility classes */
.pb-9\/16 {
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio for video containers */
}

/* Custom animations */
.pulse-animation {
  animation: pulse-dot 1.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
}

@keyframes pulse-dot {
  0% {
    transform: scale(0.8);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(0.8);
    opacity: 0.8;
  }
}

/* Before/After Slider Styles */
.before-after-slider {
  position: relative;
  overflow: hidden;
}

.slider-control {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4px;
  background: white;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  cursor: ew-resize;
}

.slider-control::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.slider-control::after {
  content: '↔';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--color-primary);
  font-size: 20px;
  font-weight: bold;
}

.after-image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
  overflow: hidden;
}

/* Video Modal */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 1rem;
}

.video-modal-content {
  position: relative;
  max-width: 56rem;
  width: 100%;
  background: white;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.video-modal-close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  z-index: 10;
  background: white;
  border-radius: 50%;
  padding: 0.25rem;
  cursor: pointer;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Mobile Menu Overrides */
@media (max-width: 768px) {
  .mobile-menu-open {
    overflow: hidden;
  }
  
  .mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background-color: var(--color-primary-dark);
    opacity: 0.95;
    z-index: 40;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
  }
  
  .mobile-menu-overlay.open {
    transform: translateX(0);
  }
  
  .mobile-nav-items {
    padding: 2rem 1rem;
  }
  
  .mobile-nav-items a {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 1.25rem;
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
  }
  
  .mobile-nav-items a:hover {
    background: rgba(255, 255, 255, 0.1);
  }
}

/* Hover Effects */
.service-card {
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
}

.feature-icon {
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

/* Contact Form */
.form-input:focus {
  box-shadow: 0 0 0 3px rgba(245, 101, 101, 0.3);
}

/* Accessibility */
:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Print styles */
@media print {
  header, footer, .no-print {
    display: none;
  }
  
  body {
    color: black;
    background: white;
  }
  
  a {
    text-decoration: underline;
    color: #2E4053;
  }
  
  .container {
    max-width: 100%;
    width: 100%;
  }
}

/* Root Variables */
:root {
  --gradient-primary: linear-gradient(135deg, #2E4053 0%, #354A5F 100%);
  --gradient-accent: linear-gradient(135deg, #F56565 0%, #F43F3F 100%);
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.1);
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius-sm: 0.375rem;
  --border-radius-md: 0.5rem;
  --border-radius-lg: 1rem;
  --border-radius-xl: 1.5rem;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-default: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Floating Animation */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

/* Loading Effects */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.6s ease forwards;
}

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

/* Modern Defaults */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
}

/* Modern Button Interactions */
.btn {
  position: relative;
  overflow: hidden;
  transition: var(--transition-default);
  border-radius: var(--border-radius-md);
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: var(--transition-default);
}

.btn:hover::after {
  opacity: 1;
  transform: translateY(-20%);
}

/* Modern Card Styles */
.card {
  border-radius: var(--border-radius-lg);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-default);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

/* Modern Background Patterns */
.pattern-grid {
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239C92AC' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.pattern-dots {
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%239C92AC' fill-opacity='0.05' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
}

/* Modern Animations */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

@keyframes shine {
  to {
    background-position: 200% center;
  }
}

.animate-shine {
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  background-size: 200% 100%;
  animation: shine 8s ease-in-out infinite;
}

/* Spacing Utilities */
.section {
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.container {
  padding-left: clamp(1rem, 5vw, 2rem);
  padding-right: clamp(1rem, 5vw, 2rem);
}

/* Timeline Animations */
.timeline-progress {
    transition: height 1s ease-out;
    background: linear-gradient(to bottom, var(--color-accent), var(--color-accent-light));
}

[data-aos="fade-right"] {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-left"] {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

/* Timeline Card Hover Effects */
.timeline-card {
    transform: translateY(0);
    transition: all 0.3s ease;
}

.timeline-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Timeline Dots Animation */
.timeline-dot {
    transition: all 0.3s ease;
}

.group:hover .timeline-dot {
    transform: scale(1.5);
    box-shadow: 0 0 0 4px rgba(245, 101, 101, 0.2);
}

[data-aos] {
    opacity: 0;
    transition-property: transform, opacity;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

[data-aos="fade-right"] {
    transform: translateX(-50px);
}

[data-aos="fade-left"] {
    transform: translateX(50px);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

.timeline-progress {
    transition: height 1s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Ensure mobile animations are smooth */
@media (max-width: 768px) {
    [data-aos] {
        transform: translateY(30px) !important;
    }
    
    [data-aos].aos-animate {
        transform: translateY(0) !important;
    }
}

[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos="fade-right"] {
    transform: translateX(-50px);
}

[data-aos="fade-left"] {
    transform: translateX(50px);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

.timeline-progress {
    transition: height 0.6s ease-out;
    background: linear-gradient(to bottom, var(--color-accent), var(--color-accent-light));
}

.timeline-section .group {
    transition: opacity 0.3s ease-in-out;
}

.timeline-section .group:hover {
    opacity: 1;
}

/* Timeline Specific Styles */
.timeline-section .space-y-12 {
    margin-top: 2rem;
}

.timeline-section .space-y-12.md\:space-y-24 {
    --tw-space-y-reverse: 0;
    margin-top: calc(1.5rem * (1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
}

.timeline-section .relative.md\:grid {
    margin-bottom: 1rem;
}

.timeline-section .bg-white {
    padding: 1rem;
}

.timeline-section .absolute.-top-4 {
    top: -0.5rem;
}

.timeline-section [data-aos] {
    transition-duration: 400ms;
}

.timeline-section .group {
    transition: transform 0.3s ease;
}

.timeline-section .group:hover {
    transform: translateY(-2px);
}

@media (min-width: 768px) {
    .timeline-section .mb-16 {
        margin-bottom: 2rem;
    }
    
    .timeline-section .space-y-12.md\:space-y-24 {
        --tw-space-y-reverse: 0;
        margin-top: calc(1rem * (1 - var(--tw-space-y-reverse)));
        margin-bottom: calc(1rem * var(--tw-space-y-reverse));
    }
}

/* Testimonials Section */
.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.swiper-container {
    overflow: hidden;
}

.swiper-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.swiper-slide {
    flex: 0 0 100%;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.testimonial-dot {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-dot:hover {
    transform: scale(1.2);
}

.client-logo {
    transition: transform 0.3s ease;
}

.client-logo:hover {
    transform: translateY(-10px);
}

/* Enhanced animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

/* Testimonials Section Styles */
.testimonials-slider .swiper-slide {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.testimonials-slider blockquote {
    font-family: 'Georgia', serif;
    font-size: 1.125rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.9);
}

.testimonials-slider .client-name {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
}

.testimonials-slider .client-title {
    color: rgba(255, 255, 255, 0.7);
}

.testimonial-dot.active {
    background-color: var(--accent-color);
    opacity: 0.9;
}

/* Enhanced Typography */
.text-gray-50 {
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: -0.025em;
}

.text-gray-300 {
    color: rgba(255, 255, 255, 0.8);
}

.text-accent\/90 {
    color: var(--accent-light);
    opacity: 0.9;
}

/* Footer Mobile Styles */
.footer-section-toggle svg {
  transition: transform 0.3s ease;
}

.footer-section {
  transition: height 0.3s ease-in-out;
}

@media (max-width: 1024px) {
  .footer-section:not(.hidden) {
    padding-top: 0.5rem;
    padding-bottom: 1.5rem;
  }
  
  .footer-section-toggle {
    padding: 1rem 0;
  }
}

/* Particle Animation */
#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

/* Modern Hero Styles */
.hero-gradient {
  background: linear-gradient(135deg, rgba(46, 64, 83, 0.95) 0%, rgba(53, 74, 95, 0.90) 100%);
}

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

.feature-card {
  transform: translateY(0);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.1);
}

.hero-button {
  position: relative;
  overflow: hidden;
}

.hero-button::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 100%;
  background: linear-gradient(115deg, transparent 0%, transparent 40%, rgba(255, 255, 255, 0.2) 50%, transparent 60%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-button:hover::after {
  transform: translateX(0);
}

.scroll-indicator {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Particles Container Styles */
#particles-js-testimonials {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}

#testimonials {
  position: relative;
  isolation: isolate;
}

#testimonials > .container {
  position: relative;
  z-index: 2;
}

/* Hero Carousel Styles */
.hero-slide {
  opacity: 0;
  transition: opacity 1s ease-in-out;
  position: absolute;
  inset: 0;
}
.hero-slide.active {
  opacity: 1;
}
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(46, 64, 83, 0.7), rgba(46, 64, 83, 0.8));
}