/* Quick Fix - Ensure all content is visible */section, .service-card, .benefit-card, .feature, .workflow-step, .tech-feature, .faq-item, .stat-item, main {  opacity: 1 !important;  transform: none !important;}:root {  /* Modern Color Palette */  --primary-color: #4361ee;
  --primary-dark: #3a56d4;
  --primary-light: #e6e9ff;
  --secondary-color: #4cc9f0;
  --accent-color: #7209b7;
  --success-color: #4bb543;
  --warning-color: #f9c74f;
  --danger-color: #ef476f;
  --light-color: #f8f9ff;
  --dark-color: #1a1a2e;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;
    --text-color: #545353;  --body-bg: #fafbfc;  --card-bg: #ffffff;
  --header-bg: rgba(255, 255, 255, 0.95);
  --border-color: #e9ecef;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-full: 9999px;
}

/* Utility Classes */
.text-center {
  text-align: center !important;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

/* Spacing Utilities */
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 0.5rem !important; }
.mt-2 { margin-top: 1rem !important; }
.mt-3 { margin-top: 1.5rem !important; }
.mt-4 { margin-top: 2rem !important; }
.mt-5 { margin-top: 3rem !important; }
.mt-6 { margin-top: 4rem !important; }

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.5rem !important; }
.mb-2 { margin-bottom: 1rem !important; }
.mb-3 { margin-bottom: 1.5rem !important; }
.mb-4 { margin-bottom: 2rem !important; }
.mb-5 { margin-bottom: 3rem !important; }
.mb-6 { margin-bottom: 4rem !important; }

.pt-0 { padding-top: 0 !important; }
.pt-1 { padding-top: 0.5rem !important; }
.pt-2 { padding-top: 1rem !important; }
.pt-3 { padding-top: 1.5rem !important; }
.pt-4 { padding-top: 2rem !important; }
.pt-5 { padding-top: 3rem !important; }
.pt-6 { padding-top: 4rem !important; }

.pb-0 { padding-bottom: 0 !important; }
.pb-1 { padding-bottom: 0.5rem !important; }
.pb-2 { padding-bottom: 1rem !important; }
.pb-3 { padding-bottom: 1.5rem !important; }
.pb-4 { padding-bottom: 2rem !important; }
.pb-5 { padding-bottom: 3rem !important; }
.pb-6 { padding-bottom: 4rem !important; }

/* Flex Utilities */
.d-flex {
  display: flex !important;
}

.flex-column {
  flex-direction: column !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.align-items-center {
  align-items: center !important;
}

/* Display Utilities */
.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.d-inline-block {
  display: inline-block !important;
}

/* Text Utilities */
.font-weight-bold {
  font-weight: 700 !important;
}

.font-weight-medium {
  font-weight: 500 !important;
}

.text-muted {
  color: var(--gray-600) !important;
}

/* Background Utilities */
.bg-light {
  background-color: var(--light-color) !important;
}

.bg-white {
  background-color: white !important;
}

/* Border Utilities */
.rounded {
  border-radius: var(--radius-md) !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

/* Animation Utilities */
.fade-in {
  animation: fadeIn 0.6s ease-out forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Section */
section {
  padding: 6rem 0;
  position: relative;
}

section.bg-light {
  background-color: var(--light-color);
}

section.bg-white {
  background-color: white;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {  font-family: 'Inter', system-ui, -apple-system, sans-serif;  line-height: 1.7;  color: var(--text-color);  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);  overflow-x: hidden;  scroll-behavior: smooth;  text-rendering: optimizeSpeed;  min-height: 100vh;}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #003d7a;
  text-decoration: underline;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

img {
  max-width: 100%;
  height: auto;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark-color);
  letter-spacing: -0.02em;
}

h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
}

h2 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  position: relative;
  display: inline-block;
  margin-bottom: 3rem;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -0.75rem;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  border-radius: 2px;
}

h3 {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.3;
}

h4 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
}

h5 {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5;
}

h6 {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.6;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

p {
  margin-top: 0;
  margin-bottom: 1.5rem;
  color: var(--gray-700);
  line-height: 1.8;
  font-weight: 400;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
  font-weight: 500;
}

a:hover {
  color: var(--accent-color);
  text-decoration: none;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header p {
  font-size: 1.25rem;
  color: var(--gray-600);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.text-primary {
  color: var(--primary-color) !important;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  border: 2px solid transparent;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: var(--radius-full);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: var(--shadow-md);
  transform: translateY(0);
}

.btn i {
  margin-right: 0rem;
  font-size: 1.1em;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-100%) skewX(-15deg);
  transition: var(--transition);
  z-index: -1;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
}

.btn:active {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn:hover::before {
  animation: shine 1.5s ease-in-out infinite;
}

@keyframes shine {
  100% {
    transform: translateX(100%) skewX(-15deg);
  }
}

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border: none;
  box-shadow: 0 4px 15px rgba(67, 97, 238, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--accent-color));
  color: white;
  box-shadow: 0 8px 20px rgba(67, 97, 238, 0.4);
}

.btn-secondary {
  color: var(--primary-color);
  background-color: white;
  border: 2px solid var(--primary-color);
  box-shadow: none;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: var(--primary-light);
  color: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(67, 97, 238, 0.2);
}

/* Modern Floating Back to Top Button */
.btn-float {
  position: fixed !important;
  bottom: 2rem !important;
  right: 2rem !important;
  width: 55px !important;
  height: 55px !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%) !important;
  color: white !important;
  border: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.25rem !important;
  text-decoration: none !important;
  box-shadow: 0 8px 25px rgba(67, 97, 238, 0.3) !important;
  z-index: 1000 !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  opacity: 0;
  transform: translateY(20px);
  visibility: hidden;
  cursor: pointer !important;
  padding: 0 !important;
  min-width: auto !important;
  margin: 0 !important;
}

.btn-float.visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
  visibility: visible !important;
}

.btn-float:hover {
  transform: translateY(-3px) scale(1.1) !important;
  box-shadow: 0 12px 35px rgba(67, 97, 238, 0.4) !important;
  text-decoration: none !important;
  color: white !important;
}

.btn-float:active {
  transform: translateY(-1px) scale(1.05) !important;
}

/* Test için - geçici görünürlük */
.btn-float {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}

.btn-float i {
  font-size: 1.2rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Pulse animation on hover */
.btn-float::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.3s ease;
}

.btn-float:hover::before {
  transform: translate(-50%, -50%) scale(1.5);
  opacity: 0;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .btn-float {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
    font-size: 1.1rem;
  }
  
  .btn-float i {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .btn-float {
    bottom: 1rem;
    right: 1rem;
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }
  
  .btn-float i {
    font-size: 1rem;
  }
}

/* Header & Navigation */
header {  position: fixed;  top: 0;  left: 0;  right: 0;  z-index: 1000;  background: rgba(255, 255, 255, 0.95);  backdrop-filter: blur(20px);  -webkit-backdrop-filter: blur(20px);  box-shadow: 0 2px 20px rgba(102, 126, 234, 0.08);  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);  border-bottom: 1px solid rgba(102, 126, 234, 0.1);}

header.scrolled {
  padding: 0.5rem 0;
  box-shadow: var(--shadow-md);
}

header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  transition: var(--transition);
}

.logo-img {
  height: 40px;
  transition: var(--transition);
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--gray-800);
  font-weight: 500;
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--primary-color);
  background-color: var(--primary-light);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0.75rem;
  right: 0.75rem;
  height: 2px;
  background-color: var(--primary-color);
  transform: scaleX(0);
  transform-origin: center;
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a:focus::after {
  transform: scaleX(1);
}

header .logo {
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

header .logo-img {
  height: 45px;
  width: auto;
  transition: all 0.3s ease;
}

header.scrolled .logo-img {
  height: 40px;
}

header .nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

header .nav-links li {
  margin-left: 2rem;
  position: relative;
}

header .nav-links a {
  color: var(--text-color);
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
  position: relative;
  font-size: 1.05rem;
}

header .nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
  transition: width 0.3s ease;
}

header .nav-links a:hover {
  color: var(--primary-color);
  text-decoration: none;
}

header .nav-links a:hover::after {
  width: 100%;
}

header .nav-links a.active {
  color: var(--primary-color);
  font-weight: 600;
}

header .nav-links a.active::after {
  width: 100%;
}

/* Mobile Navigation */.mobile-nav-toggle {  display: none;  background: none;  border: none;  font-size: 1.5rem;  cursor: pointer;  color: var(--text-color);  transition: all 0.3s ease;  width: 40px;  height: 40px;  border-radius: 50%;  align-items: center;  justify-content: center;}

.mobile-nav-toggle:hover {
  background-color: rgba(0, 0, 0, 0.05);
  color: var(--primary-color);
}

/* Hero Section */
/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  color: white;
  padding: 12rem 0 8rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.5;
  z-index: 0;
}

/* Hero section styles moved to hero.css */

/* Animation keyframes */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Section Styles */
section {
  padding: 4rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--secondary-color);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* About Section */
.about-section {
  background-color: #f8f9fa;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.about-text {
  flex: 1;
}

.about-image {  flex: 1;  text-align: center;}.features {  display: grid;  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));  gap: 2rem;  margin-top: 3rem;}.feature {  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);  padding: 2rem;  border-radius: 16px;  text-align: center;  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);  border: 1px solid rgba(255, 255, 255, 0.2);  position: relative;  overflow: hidden;}.feature::before {  content: '';  position: absolute;  top: 0;  left: 0;  width: 100%;  height: 100%;  background: linear-gradient(135deg, rgba(67, 97, 238, 0.05) 0%, rgba(114, 9, 183, 0.05) 100%);  opacity: 0;  transition: opacity 0.4s ease;  z-index: -1;}.feature:hover {  transform: translateY(-10px) scale(1.02);  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);  border-color: rgba(67, 97, 238, 0.2);}.feature:hover::before {  opacity: 1;}.feature i {  font-size: 2.5rem;  color: var(--primary-color);  margin-bottom: 1.5rem;  display: inline-block;  background: linear-gradient(135deg, rgba(67, 97, 238, 0.1) 0%, rgba(114, 9, 183, 0.1) 100%);  width: 70px;  height: 70px;  line-height: 70px;  text-align: center;  border-radius: 50%;  transition: all 0.3s ease;}.feature:hover i {  transform: scale(1.1) rotate(5deg);  background: linear-gradient(135deg, rgba(67, 97, 238, 0.2) 0%, rgba(114, 9, 183, 0.2) 100%);  color: var(--accent-color);}.feature h4 {  margin-bottom: 1rem;  color: var(--dark-color);  font-size: 1.25rem;  font-weight: 600;  transition: color 0.3s ease;}.feature:hover h4 {  color: var(--primary-color);}.feature p {  color: var(--gray-600);  line-height: 1.6;  margin: 0;}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.service-card {  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);  border-radius: 24px;  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 8px 25px rgba(0, 0, 0, 0.04);  padding: 3rem 2.5rem;  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);  position: relative;  z-index: 1;  overflow: hidden;  border: 1px solid rgba(255, 255, 255, 0.2);  backdrop-filter: blur(10px);}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 86, 179, 0.05) 0%, rgba(0, 160, 233, 0.05) 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover {  transform: translateY(-15px) scale(1.05);  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.15), 0 15px 40px rgba(0, 0, 0, 0.08);  border-color: rgba(102, 126, 234, 0.3);}

.service-card:hover::after {
  opacity: 1;
}

.service-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  display: inline-block;
  background: linear-gradient(135deg, rgba(0, 86, 179, 0.1) 0%, rgba(0, 160, 233, 0.1) 100%);
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, rgba(0, 86, 179, 0.2) 0%, rgba(0, 160, 233, 0.2) 100%);
}

.service-card h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.service-card:hover h3 {
  color: var(--primary-color);
}

.service-card p {
  color: var(--secondary-color);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  margin-top: 1.5rem;
}

.service-features li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.service-features li:hover {
  transform: translateX(5px);
}

.service-features li i {
  color: var(--success-color);
  margin-right: 0.75rem;
  font-size: 1.1rem;
}

/* Technology Section */
.technology-section {
  background-color: #f8f9fa;
  position: relative;
  overflow: hidden;
}

.technology-section::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 160, 233, 0.1) 0%, rgba(0, 160, 233, 0) 70%);
  z-index: 1;
}

.technology-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 86, 179, 0.1) 0%, rgba(0, 86, 179, 0) 70%);
  z-index: 1;
}

.technology-section .container {
  position: relative;
  z-index: 2;
}

.tech-workflow {
  margin: 4rem 0;
}

.workflow-steps {
  position: relative;
}

.workflow-steps::before {
  content: '';
  position: absolute;
  top: 25px;
  left: 25px;
  height: calc(100% - 50px);
  width: 2px;
  background: linear-gradient(to bottom, var(--primary-color) 0%, var(--accent-color) 100%);
  z-index: 1;
}

.workflow-step {
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateX(-20px);
  animation: fadeInRight 0.5s ease forwards;
  animation-delay: calc(var(--step-index, 0) * 0.2s);
}

.workflow-step:nth-child(1) {
  --step-index: 1;
}

.workflow-step:nth-child(2) {
  --step-index: 2;
}

.workflow-step:nth-child(3) {
  --step-index: 3;
}

.workflow-step:nth-child(4) {
  --step-index: 4;
}

@keyframes fadeInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin-right: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.workflow-step:hover .step-number {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.tech-diagram {
  text-align: center;
  margin: 4rem 0;
  position: relative;
  padding: 2rem;
  background-color: white;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transform: translateY(20px);
  opacity: 0;
  animation: fadeInUp 1s ease forwards 0.5s;
}

.tech-diagram img {
  max-width: 100%;
  height: auto;
  transition: all 0.5s ease;
}

.tech-diagram:hover img {
  transform: scale(1.02);
}

.tech-features {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.tech-feature {
  background-color: white;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.tech-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 86, 179, 0.1);
}

.tech-feature i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  display: inline-block;
  transition: all 0.3s ease;
}

.tech-feature:hover i {
  transform: scale(1.1) rotate(10deg);
  color: var(--accent-color);
}

/* Benefits Section */
.benefits-section {
  background-color: white;
  position: relative;
  overflow: hidden;
}

.benefits-section::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, rgba(0, 86, 179, 0.03) 0%, rgba(0, 160, 233, 0.03) 100%);
  border-radius: 50%;
  top: -150px;
  left: -150px;
  z-index: 0;
}

.benefits-section::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, rgba(0, 160, 233, 0.03) 0%, rgba(0, 86, 179, 0.03) 100%);
  border-radius: 50%;
  bottom: -150px;
  right: -150px;
  z-index: 0;
}

.benefits-section .container {
  position: relative;
  z-index: 1;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.benefit-card {
  background-color: white;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.benefit-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, rgba(0, 86, 179, 0.1) 0%, rgba(0, 160, 233, 0.1) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.benefit-icon i {
  font-size: 2.5rem;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, rgba(0, 86, 179, 0.2) 0%, rgba(0, 160, 233, 0.2) 100%);
}

.benefit-card:hover .benefit-icon i {
  transform: scale(1.1);
  color: var(--accent-color);
}

.benefit-card h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.benefit-card:hover h3 {
  color: var(--primary-color);
}

.benefit-card p {
  color: var(--secondary-color);
  line-height: 1.6;
}

/* Ultra Modern CTA Section - 2024 Design */.cta {  background: #0c0c0c;  position: relative;  overflow: hidden;  margin: 8rem 0 0;  padding: 0;  min-height: 80vh;  display: flex;  align-items: center;}/* Dynamic gradient background */.cta::before {  content: '';  position: absolute;  top: 0;  left: 0;  right: 0;  bottom: 0;  background:     linear-gradient(135deg, #667eea 0%, #764ba2 30%, #f093fb 60%, #f5576c 100%);  opacity: 0.95;  z-index: 1;}/* Animated mesh gradient overlay */.cta::after {  content: '';  position: absolute;  top: 0;  left: 0;  right: 0;  bottom: 0;  background:     radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.4) 0%, transparent 50%),    radial-gradient(circle at 80% 20%, rgba(245, 87, 108, 0.3) 0%, transparent 50%),    radial-gradient(circle at 40% 80%, rgba(240, 147, 251, 0.3) 0%, transparent 50%);  animation: ctaMeshAnimation 12s ease-in-out infinite alternate;  z-index: 2;}@keyframes ctaMeshAnimation {  0% {    transform: translateX(0) translateY(0) scale(1);    opacity: 0.8;  }  100% {    transform: translateX(20px) translateY(-20px) scale(1.1);    opacity: 1;  }}.cta .container {  position: relative;  z-index: 3;  padding: 8rem 0;  width: 100%;}/* Modern glassmorphism card */.cta-hero {  background: rgba(255, 255, 255, 0.1);  backdrop-filter: blur(30px);  -webkit-backdrop-filter: blur(30px);  border: 1px solid rgba(255, 255, 255, 0.15);  border-radius: 40px;  padding: 5rem 4rem;  max-width: 900px;  margin: 0 auto;  text-align: center;  box-shadow:     0 40px 80px rgba(0, 0, 0, 0.25),    inset 0 1px 0 rgba(255, 255, 255, 0.2);  position: relative;  overflow: hidden;}/* Animated border effect */.cta-hero::before {  content: '';  position: absolute;  top: -3px;  left: -3px;  right: -3px;  bottom: -3px;  background: linear-gradient(45deg,     #ff6b6b, #4ecdc4, #45b7d1, #f9ca24,     #f0932b, #eb4d4b, #6c5ce7, #a29bfe);  border-radius: 40px;  z-index: -1;  opacity: 0;  transition: opacity 0.6s ease;  animation: ctaBorderFlow 8s linear infinite;  background-size: 400% 400%;}@keyframes ctaBorderFlow {  0% { background-position: 0% 50%; }  50% { background-position: 100% 50%; }  100% { background-position: 0% 50%; }}.cta-hero:hover::before {  opacity: 0.8;}/* Premium status badge */.cta-status {  display: inline-block;  background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.1));  color: white;  padding: 0.8rem 2rem;  border-radius: 50px;  font-size: 0.9rem;  font-weight: 700;  margin-bottom: 2.5rem;  border: 1px solid rgba(255, 255, 255, 0.3);  backdrop-filter: blur(10px);  text-transform: uppercase;  letter-spacing: 1.5px;  position: relative;  overflow: hidden;}.cta-status::before {  content: '';  position: absolute;  top: 0;  left: -100%;  width: 100%;  height: 100%;  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);  animation: ctaStatusShine 3s infinite;}@keyframes ctaStatusShine {  0% { left: -100%; }  100% { left: 100%; }}/* Bold futuristic typography */.cta h2 {  font-size: 4.5rem;  font-weight: 900;  margin-bottom: 2rem;  line-height: 1.1;  color: white;  letter-spacing: -0.04em;  position: relative;  background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 50%, #e6e9ff 100%);  -webkit-background-clip: text;  -webkit-text-fill-color: transparent;  background-clip: text;}.cta h2::after {  content: '';  position: absolute;  bottom: -15px;  left: 50%;  transform: translateX(-50%);  width: 120px;  height: 6px;  background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #f9ca24);  border-radius: 3px;  animation: ctaUnderlineGlow 2s ease-in-out infinite alternate;}@keyframes ctaUnderlineGlow {  0% {    box-shadow: 0 0 20px rgba(255, 107, 107, 0.5);    transform: translateX(-50%) scale(1);  }  100% {    box-shadow: 0 0 40px rgba(78, 205, 196, 0.8);    transform: translateX(-50%) scale(1.1);  }}.cta p {  font-size: 1.4rem;  line-height: 1.8;  margin-bottom: 3.5rem;  color: rgba(255, 255, 255, 0.95);  font-weight: 400;  max-width: 650px;  margin-left: auto;  margin-right: auto;  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);}/* Next-gen button system */.cta-actions {  display: flex;  justify-content: center;  gap: 2rem;  flex-wrap: wrap;  margin-bottom: 4rem;}.cta .btn {  padding: 1.4rem 3rem;  font-size: 1.15rem;  font-weight: 700;  border-radius: 20px;  border: none;  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);  position: relative;  overflow: hidden;  text-decoration: none;  display: inline-flex;  align-items: center;  justify-content: center;  min-width: 220px;  text-transform: uppercase;  letter-spacing: 1px;}/* Revolutionary primary button */.cta .btn-primary {  background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);  color: #1a1a2e;  box-shadow: 0 10px 40px rgba(255, 255, 255, 0.4);  position: relative;  z-index: 1;}.cta .btn-primary::before {  content: '';  position: absolute;  top: 0;  left: 0;  right: 0;  bottom: 0;  background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);  opacity: 0;  transition: opacity 0.4s ease;  border-radius: 20px;  z-index: -1;}.cta .btn-primary::after {  content: '';  position: absolute;  top: 2px;  left: 2px;  right: 2px;  bottom: 2px;  background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);  border-radius: 18px;  z-index: -1;  transition: all 0.4s ease;}.cta .btn-primary:hover {  transform: translateY(-6px) scale(1.08);  box-shadow: 0 20px 60px rgba(255, 255, 255, 0.6);  text-decoration: none;}.cta .btn-primary:hover::before {  opacity: 1;}.cta .btn-primary:hover::after {  opacity: 0;}.cta .btn-primary:hover {  color: white;}/* Futuristic secondary button */.cta .btn-secondary {  background: rgba(255, 255, 255, 0.1);  color: white;  border: 2px solid rgba(255, 255, 255, 0.4);  backdrop-filter: blur(15px);  position: relative;}.cta .btn-secondary::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 .btn-secondary:hover {  background: rgba(255, 255, 255, 0.2);  color: white;  border-color: rgba(255, 255, 255, 0.8);  transform: translateY(-6px) scale(1.08);  box-shadow: 0 20px 60px rgba(255, 255, 255, 0.3);  text-decoration: none;}.cta .btn-secondary:hover::before {  left: 100%;}/* Futuristic stats grid */.cta-metrics {  display: grid;  grid-template-columns: repeat(3, 1fr);  gap: 2rem;  border-top: 1px solid rgba(255, 255, 255, 0.2);  padding-top: 3rem;}.cta-metric {  text-align: center;  padding: 2rem 1.5rem;  border-radius: 25px;  background: rgba(255, 255, 255, 0.08);  backdrop-filter: blur(15px);  border: 1px solid rgba(255, 255, 255, 0.1);  transition: all 0.4s ease;  position: relative;  overflow: hidden;}.cta-metric::before {  content: '';  position: absolute;  top: 0;  left: 0;  right: 0;  bottom: 0;  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);  opacity: 0;  transition: opacity 0.4s ease;}.cta-metric:hover {  transform: translateY(-8px) scale(1.05);  background: rgba(255, 255, 255, 0.15);  border-color: rgba(255, 255, 255, 0.3);}.cta-metric:hover::before {  opacity: 1;}.cta-metric-number {  font-size: 2.8rem;  font-weight: 900;  color: white;  display: block;  margin-bottom: 0.5rem;  background: linear-gradient(135deg, #ff6b6b, #4ecdc4, #f9ca24);  -webkit-background-clip: text;  -webkit-text-fill-color: transparent;  background-clip: text;  line-height: 1;}.cta-metric-label {  font-size: 1rem;  opacity: 0.9;  color: white;  font-weight: 600;  text-transform: uppercase;  letter-spacing: 0.5px;}/* Responsive design */@media (max-width: 768px) {  .cta {    min-height: 70vh;  }    .cta .container {    padding: 6rem 0;  }    .cta-hero {    padding: 3.5rem 2.5rem;    border-radius: 30px;  }    .cta h2 {    font-size: 3rem;  }    .cta p {    font-size: 1.2rem;  }    .cta-actions {    flex-direction: column;    align-items: center;    gap: 1.5rem;  }    .cta .btn {    width: 100%;    max-width: 300px;  }    .cta-metrics {    grid-template-columns: 1fr;    gap: 1.5rem;  }}@media (max-width: 480px) {  .cta .container {    padding: 5rem 0;  }    .cta-hero {    padding: 2.5rem 1.5rem;    border-radius: 25px;  }    .cta h2 {    font-size: 2.5rem;  }    .cta p {    font-size: 1.1rem;  }}

/* FAQ Section */
.faq-section {
  background-color: #f8f9fa;
  position: relative;
  overflow: hidden;
}

.faq-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 160, 233, 0.05) 0%, rgba(0, 160, 233, 0) 70%);
}

.faq-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 86, 179, 0.05) 0%, rgba(0, 86, 179, 0) 70%);
}

.faq-container {
  max-width: 800px;
  margin: 3rem auto 0;
  position: relative;
  z-index: 1;
}

.faq-item {
  margin-bottom: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  overflow: hidden;
  background-color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 86, 179, 0.1);
}

.faq-question {
  padding: 1.75rem;
  background-color: white;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.faq-toggle {
  width: 30px;
  height: 30px;
  background-color: rgba(0, 86, 179, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.faq-toggle i {
  color: var(--primary-color);
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question {
  background-color: rgba(0, 86, 179, 0.03);
}

.faq-item.active .faq-question h3 {
  color: var(--primary-color);
}

.faq-item.active .faq-toggle {
  background-color: var(--primary-color);
}

.faq-item.active .faq-toggle i {
  transform: rotate(45deg);
  color: white;
}

.faq-answer {
  padding: 0 1.75rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0;
}

.faq-item.active .faq-answer {
  padding: 0 1.75rem 1.75rem;
  max-height: 500px;
  opacity: 1;
}

.faq-answer p {
  color: var(--secondary-color);
  line-height: 1.6;
  margin: 0;
}

/* Professional Contact Section */
.contact-page {
  background: #ffffff;
  position: relative;
}

.contact-page .container {
  position: relative;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

/* Clean Contact Info */
.contact-info {
  padding: 0;
}

.contact-info h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 1.5rem;
}

.contact-info > p {
  font-size: 1.1rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 3rem;
}

.contact-details {
  margin-top: 0;
}

.contact-item {
  background: #ffffff;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-start;
}

.contact-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-color: #d1d5db;
}

.contact-item-icon {
  width: 50px;
  height: 50px;
  background: #f3f4f6;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  transition: all 0.3s ease;
}

.contact-item:hover .contact-item-icon {
  background: var(--primary-color);
}

.contact-item-icon i {
  font-size: 1.5rem;
  color: var(--gray-600);
  transition: color 0.3s ease;
}

.contact-item:hover .contact-item-icon i {
  color: white;
}

.contact-item-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 0.25rem;
}

.contact-item-content p {
  color: var(--gray-600);
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
}

/* Clean Social Media Section */
.social-media {
  background: #f9fafb;
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
  text-align: center;
}

.social-media h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 1.5rem;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-icon {
  width: 45px;
  height: 45px;
  border-radius: 8px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
  font-size: 1.3rem;
  transition: all 0.3s ease;
  text-decoration: none;
  border: 1px solid #e5e7eb;
}

.social-icon i {
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-style: normal;
  text-align: center;
  vertical-align: middle;
  margin: 0;
  padding: 0;
}

.social-icon:hover {
  transform: translateY(-2px);
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
  color: var(--primary-color);
}

/* Professional Contact Form */
.contact-form {
  background: #ffffff;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
}

.contact-form h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 2rem;
  text-align: center;
}

/* Clean Form Styles */
.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--dark-color);
  font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
  background: #ffffff;
  transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(67, 97, 238, 0.08);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: #d1d5db;
}

/* Checkbox styling */
.form-group.checkbox {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2.5rem;
}

.form-group.checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-right: 0.75rem;
  margin-top: 0.2rem;
  border-radius: 4px;
  appearance: none;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  transition: all 0.2s ease;
  position: relative;
  flex-shrink: 0;
}

.form-group.checkbox input[type="checkbox"]:checked {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-color: var(--primary-color);
}

.form-group.checkbox input[type="checkbox"]:checked::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 12px;
  font-weight: bold;
}

.form-group.checkbox label {
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--gray-600);
}

.form-group.checkbox label a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

.form-group.checkbox label a:hover {
  text-decoration: underline;
}

/* Form validation states */
.form-group input.is-invalid,
.form-group select.is-invalid,
.form-group textarea.is-invalid {
  border-color: var(--danger-color);
  box-shadow: 0 0 0 4px rgba(239, 71, 111, 0.1);
}

.invalid-feedback {
  color: var(--danger-color);
  font-size: 0.875rem;
  margin-top: 0.5rem;
  font-weight: 500;
}

/* Modern form actions */
.form-actions {
  margin-top: 3rem;
  text-align: center;
}

.form-actions .btn {
  padding: 1.2rem 3rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  min-width: 200px;
}

/* Professional Map Container */
.map-container {
  margin-top: 4rem;
  background: #ffffff;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
}

.map-container h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 2rem;
  text-align: center;
}

.map {
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.map:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.map-placeholder {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  color: var(--gray-500);
  position: relative;
  overflow: hidden;
}

.map-placeholder::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 30% 30%, rgba(67, 97, 238, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(114, 9, 183, 0.1) 0%, transparent 50%);
  animation: mapAnimation 8s ease-in-out infinite alternate;
}

@keyframes mapAnimation {
  0% {
    transform: scale(1) rotate(0deg);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.05) rotate(2deg);
    opacity: 0.8;
  }
}

.map-placeholder i {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  z-index: 1;
  position: relative;
}

.map-placeholder p {
  font-size: 1.2rem;
  font-weight: 600;
  z-index: 1;
  position: relative;
  margin: 0;
}

/* Modern Premium Footer */footer {  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);  color: white;  padding: 6rem 0 2rem;  position: relative;  overflow: hidden;  margin-top: 4rem;}footer::before {  content: '';  position: absolute;  top: 0;  left: 0;  width: 100%;  height: 6px;  background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 50%, #4cc9f0 100%);  box-shadow: 0 2px 10px rgba(67, 97, 238, 0.3);}footer::after {  content: '';  position: absolute;  top: -2px;  left: 0;  width: 100%;  height: 100%;  background:     radial-gradient(circle at 25% 75%, rgba(67, 97, 238, 0.1) 0%, transparent 50%),    radial-gradient(circle at 75% 25%, rgba(114, 9, 183, 0.1) 0%, transparent 50%),    radial-gradient(circle at 50% 50%, rgba(76, 201, 240, 0.05) 0%, transparent 50%);  pointer-events: none;  z-index: 0;}/* Animated particles background */footer .container {  position: relative;  z-index: 2;}

.footer-content {  display: grid;  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;  gap: 4rem;  align-items: start;}.footer-logo {  margin-bottom: 2rem;  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);}.footer-logo:hover {  transform: translateY(-8px) scale(1.02);}.footer-logo-img {  height: 55px;  width: auto;  filter: brightness(0) invert(1);  transition: all 0.4s ease;  margin-bottom: 1rem;}.footer-logo:hover .footer-logo-img {  filter: brightness(0) invert(1) drop-shadow(0 4px 12px rgba(67, 97, 238, 0.4));  transform: scale(1.05);}.footer-logo p {  font-size: 0.95rem;  color: rgba(255, 255, 255, 0.8);  margin: 0;  line-height: 1.6;  font-weight: 400;}

.footer-links h3 {  font-size: 1.35rem;  margin-bottom: 2rem;  position: relative;  font-weight: 700;  color: rgba(255, 255, 255, 0.95);  letter-spacing: -0.02em;}.footer-links h3::after {  content: '';  position: absolute;  left: 0;  bottom: -0.8rem;  width: 50px;  height: 3px;  background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);  border-radius: 3px;  box-shadow: 0 2px 8px rgba(67, 97, 238, 0.3);}.footer-links h3::before {  content: '';  position: absolute;  left: 0;  bottom: -0.8rem;  width: 50px;  height: 3px;  background: rgba(255, 255, 255, 0.1);  border-radius: 3px;  z-index: -1;}

.footer-links ul {  list-style: none;  padding: 0;  margin: 0;}.footer-links li {  margin-bottom: 1.2rem;  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);  position: relative;}.footer-links li::before {  content: '';  position: absolute;  left: -8px;  top: 50%;  transform: translateY(-50%);  width: 3px;  height: 0;  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));  border-radius: 2px;  transition: height 0.3s ease;}.footer-links li:hover::before {  height: 100%;}.footer-links li:hover {  transform: translateX(12px);  color: rgba(255, 255, 255, 0.95);}.footer-links a {  color: rgba(255, 255, 255, 0.75);  transition: all 0.3s ease;  display: inline-block;  font-weight: 400;  line-height: 1.6;  text-decoration: none;}.footer-links a:hover {  color: rgba(255, 255, 255, 0.95);  text-decoration: none;  text-shadow: 0 0 8px rgba(67, 97, 238, 0.3);}.footer-links li i {  margin-right: 12px;  color: rgba(255, 255, 255, 0.6);  width: 18px;  transition: all 0.3s ease;}.footer-links li:hover i {  color: var(--primary-color);  transform: scale(1.1);}

.social-icons {  display: flex;  gap: 1.2rem;  margin-top: 2rem;}.social-icon {  width: 45px;  height: 45px;  border-radius: 50%;  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);  display: flex;  align-items: center;  justify-content: center;  color: rgb(63 61 61 / 80%);  font-size: 1.3rem;  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);  text-decoration: none;  position: relative;  overflow: hidden;  border: 1px solid rgba(255, 255, 255, 0.1);  backdrop-filter: blur(10px);}.social-icon::before {  content: '';  position: absolute;  top: 0;  left: 0;  width: 100%;  height: 100%;  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);  transform: scale(0);  transition: transform 0.4s ease;  border-radius: 50%;  z-index: -1;}.social-icon:hover {  transform: translateY(-8px) scale(1.1);  color: white;  text-decoration: none;  box-shadow: 0 12px 25px rgba(67, 97, 238, 0.3);  border-color: rgba(67, 97, 238, 0.3);}.social-icon:hover::before {  transform: scale(1);}.social-icon:nth-child(1):hover { /* LinkedIn */  box-shadow: 0 12px 25px rgba(0, 119, 181, 0.4);}.social-icon:nth-child(2):hover { /* Twitter */  box-shadow: 0 12px 25px rgba(29, 161, 242, 0.4);}.social-icon:nth-child(3):hover { /* Facebook */  box-shadow: 0 12px 25px rgba(24, 119, 242, 0.4);}.social-icon:nth-child(4):hover { /* Instagram */  box-shadow: 0 12px 25px rgba(225, 48, 108, 0.4);}

.footer-bottom {  margin-top: 5rem;  padding-top: 2.5rem;  border-top: 1px solid rgba(255, 255, 255, 0.08);  text-align: center;  font-size: 0.92rem;  color: rgba(255, 255, 255, 0.6);  position: relative;}.footer-bottom::before {  content: '';  position: absolute;  top: 0;  left: 50%;  transform: translateX(-50%);  width: 60px;  height: 1px;  background: linear-gradient(90deg, transparent 0%, var(--primary-color) 50%, transparent 100%);}.footer-bottom p {  margin-bottom: 0;  font-weight: 400;  letter-spacing: 0.02em;}/* Responsive footer adjustments */@media (max-width: 1024px) {  .footer-content {    grid-template-columns: 1fr 1fr;    gap: 3rem;  }}@media (max-width: 768px) {  footer {    padding: 4rem 0 2rem;  }    .footer-content {    grid-template-columns: 1fr;    gap: 2.5rem;    text-align: center;  }    .footer-links li::before {    display: none;  }    .footer-links li:hover {    transform: translateY(-3px);  }    .social-icons {    justify-content: center;  }}@media (max-width: 480px) {  footer {    padding: 3rem 0 1.5rem;  }    .footer-content {    gap: 2rem;  }    .footer-links h3 {    font-size: 1.2rem;  }    .social-icon {    width: 40px;    height: 40px;    font-size: 1.2rem;  }}

/* Modern Page Header */.page-header {  position: relative;  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #9c88ff 100%);  color: white;  padding: 8rem 0 6rem;  text-align: center;  overflow: hidden;  margin-top: 80px;  min-height: 60vh;  display: flex;  align-items: center;  justify-content: center;}.page-header::before {  content: '';  position: absolute;  top: 0;  left: 0;  right: 0;  bottom: 0;  background:     radial-gradient(circle at 25% 75%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),    radial-gradient(circle at 75% 25%, rgba(120, 219, 255, 0.3) 0%, transparent 50%),    radial-gradient(circle at 50% 50%, rgba(67, 97, 238, 0.2) 0%, transparent 50%);  animation: pageHeaderAnimation 12s ease-in-out infinite alternate;  z-index: 1;}.page-header::after {  content: '';  position: absolute;  top: 0;  left: 0;  right: 0;  bottom: 0;  background: 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='%23ffffff' fill-opacity='0.08'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3Ccircle cx='10' cy='10' r='1'/%3E%3Ccircle cx='50' cy='50' r='1'/%3E%3Ccircle cx='50' cy='10' r='1'/%3E%3Ccircle cx='10' cy='50' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");  animation: float 8s ease-in-out infinite;  z-index: 0;}@keyframes pageHeaderAnimation {  0% {    transform: translateX(-3px) translateY(-3px);  }  100% {    transform: translateX(3px) translateY(3px);  }}.page-header .container {  position: relative;  z-index: 3;  max-width: 1000px;}.page-header h1 {  font-size: 3.5rem;  font-weight: 800;  margin-bottom: 1.5rem;  line-height: 1.2;  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);  animation: pageHeaderFadeIn 1s ease-out;  background: linear-gradient(45deg, #ffffff, #f0f8ff);  -webkit-background-clip: text;  -webkit-text-fill-color: transparent;  background-clip: text;}.page-header p { color:aliceblue;  font-size: 1.4rem;  opacity: 0.95;  margin-bottom: 2rem;  line-height: 1.6;  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);  animation: pageHeaderFadeIn 1s ease-out 0.3s both;  font-weight: 400;  max-width: 800px;  margin-left: auto;  margin-right: auto;}@keyframes pageHeaderFadeIn {  from {    opacity: 0;    transform: translateY(30px) scale(0.95);  }  to {    opacity: 1;    transform: translateY(0) scale(1);  }}/* Services specific page header */.page-header.services-header {  background: linear-gradient(135deg, #4361ee 0%, #7209b7 50%, #4cc9f0 100%);}.page-header.services-header::before {  background:     radial-gradient(circle at 20% 80%, rgba(67, 97, 238, 0.4) 0%, transparent 50%),    radial-gradient(circle at 80% 20%, rgba(114, 9, 183, 0.4) 0%, transparent 50%),    radial-gradient(circle at 40% 60%, rgba(76, 201, 240, 0.3) 0%, transparent 50%);}/* Breadcrumb style navigation */.page-header .breadcrumb {  background: rgba(255, 255, 255, 0.1);  backdrop-filter: blur(10px);  border-radius: 50px;  padding: 0.75rem 1.5rem;  display: inline-flex;  align-items: center;  margin-bottom: 2rem;  border: 1px solid rgba(255, 255, 255, 0.2);  animation: pageHeaderFadeIn 1s ease-out 0.6s both;}.page-header .breadcrumb a {  color: rgba(255, 255, 255, 0.8);  text-decoration: none;  transition: color 0.3s ease;}.page-header .breadcrumb a:hover {  color: white;}.page-header .breadcrumb .separator {  margin: 0 0.75rem;  color: rgba(255, 255, 255, 0.6);}.page-header .breadcrumb .current {  color: white;  font-weight: 600;}/* Responsive adjustments */@media (max-width: 768px) {  .page-header {    padding: 6rem 0 4rem;    min-height: 50vh;  }    .page-header h1 {    font-size: 2.5rem;  }    .page-header p {    font-size: 1.1rem;  }}@media (max-width: 480px) {  .page-header h1 {    font-size: 2rem;  }    .page-header p {    font-size: 1rem;  }}

/* About Page */
.about-page {
  padding: 4rem 0;
}

.about-page .about-content {
  margin-bottom: 4rem;
}

.team-section {
  text-align: center;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
  list-style: none;
  padding: 0;
}

.team-member {
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08), 0 5px 15px rgba(0, 0, 0, 0.04);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.team-member::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(67, 97, 238, 0.05) 0%, rgba(114, 9, 183, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.team-member:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), 0 15px 30px rgba(0, 0, 0, 0.08);
  border-color: rgba(67, 97, 238, 0.3);
}

.team-member:hover::before {
  opacity: 1;
}

.member-image {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, rgba(67, 97, 238, 0.15) 0%, rgba(114, 9, 183, 0.15) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.member-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(67, 97, 238, 0.1) 0%, rgba(114, 9, 183, 0.1) 100%);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.4s ease;
}

.team-member:hover .member-image {
  transform: scale(1.1) rotate(10deg);
  background: linear-gradient(135deg, rgba(67, 97, 238, 0.25) 0%, rgba(114, 9, 183, 0.25) 100%);
  box-shadow: 0 8px 20px rgba(67, 97, 238, 0.2);
}

.team-member:hover .member-image::after {
  transform: scale(1);
}

.member-image i {
  font-size: 3rem;
  color: var(--primary-color);
  transition: all 0.3s ease;
  z-index: 2;
  position: relative;
}

.team-member:hover .member-image i {
  color: var(--accent-color);
  transform: scale(1.1);
}

.member-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
  line-height: 1.3;
}

.team-member:hover .member-name {
  color: var(--primary-color);
}

.member-position {
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.team-member:hover .member-position {
  color: var(--gray-700);
}

/* Staggered animation effect for team */
.team-member:nth-child(1) { animation-delay: 0.1s; }
.team-member:nth-child(2) { animation-delay: 0.2s; }
.team-member:nth-child(3) { animation-delay: 0.3s; }
.team-member:nth-child(4) { animation-delay: 0.4s; }

/* Responsive adjustments for team */
@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
  
  .team-member {
    padding: 2rem 1.5rem;
  }
  
  .member-image {
    width: 100px;
    height: 100px;
  }
  
  .member-image i {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .team-member {
    padding: 1.5rem 1rem;
  }
}

/* Services Page */
.services-page {
  padding: 4rem 0;
}

.services-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.service-card.detailed {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card.detailed h3 {
  margin-top: 0.5rem;
}

/* Technology Page */
.technology-page {
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.technology-page::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 160, 233, 0.03) 0%, rgba(0, 160, 233, 0) 70%);
  z-index: 0;
}

.technology-page::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 86, 179, 0.03) 0%, rgba(0, 86, 179, 0) 70%);
  z-index: 0;
}

.technology-page .container {
  position: relative;
  z-index: 1;
}

.tech-overview {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.tech-workflow {
  margin-bottom: 4rem;
}

.workflow-steps {
  margin-top: 2rem;
}

.workflow-step {
  display: flex;
  margin-bottom: 2rem;
}

.step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.tech-diagram-section {
  margin-bottom: 4rem;
}

.diagram-explanation {
  margin-top: 2rem;
}

/* Modern Tech Features Cards */.tech-features {  display: grid;  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));  gap: 2rem;  margin-top: 2.5rem;  list-style: none;  padding: 0;}.tech-feature-card {  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);  border-radius: 20px;  padding: 2.5rem 2rem;  text-align: center;  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08), 0 5px 15px rgba(0, 0, 0, 0.04);  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);  position: relative;  overflow: hidden;  border: 1px solid rgba(255, 255, 255, 0.2);  backdrop-filter: blur(10px);}.tech-feature-card::before {  content: '';  position: absolute;  top: 0;  left: 0;  width: 100%;  height: 100%;  background: linear-gradient(135deg, rgba(67, 97, 238, 0.05) 0%, rgba(114, 9, 183, 0.05) 100%);  opacity: 0;  transition: opacity 0.4s ease;  z-index: -1;}.tech-feature-card:hover {  transform: translateY(-15px) scale(1.03);  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), 0 15px 30px rgba(0, 0, 0, 0.08);  border-color: rgba(67, 97, 238, 0.3);}.tech-feature-card:hover::before {  opacity: 1;}.tech-feature-icon {  width: 80px;  height: 80px;  background: linear-gradient(135deg, rgba(67, 97, 238, 0.15) 0%, rgba(114, 9, 183, 0.15) 100%);  border-radius: 50%;  display: flex;  align-items: center;  justify-content: center;  margin: 0 auto 1.5rem;  transition: all 0.4s ease;  position: relative;  overflow: hidden;}.tech-feature-icon::after {  content: '';  position: absolute;  top: 0;  left: 0;  width: 100%;  height: 100%;  background: linear-gradient(135deg, rgba(67, 97, 238, 0.1) 0%, rgba(114, 9, 183, 0.1) 100%);  border-radius: 50%;  transform: scale(0);  transition: transform 0.4s ease;}.tech-feature-card:hover .tech-feature-icon {  transform: scale(1.1) rotate(10deg);  background: linear-gradient(135deg, rgba(67, 97, 238, 0.25) 0%, rgba(114, 9, 183, 0.25) 100%);  box-shadow: 0 8px 20px rgba(67, 97, 238, 0.2);}.tech-feature-card:hover .tech-feature-icon::after {  transform: scale(1);}.tech-feature-icon i {  font-size: 2.2rem;  color: var(--primary-color);  transition: all 0.3s ease;  z-index: 2;  position: relative;}.tech-feature-card:hover .tech-feature-icon i {  color: var(--accent-color);  transform: scale(1.1);}.tech-feature-title {  font-size: 1.25rem;  font-weight: 700;  color: var(--dark-color);  margin-bottom: 0.75rem;  transition: color 0.3s ease;  line-height: 1.3;}.tech-feature-card:hover .tech-feature-title {  color: var(--primary-color);}.tech-feature-desc {  color: var(--gray-600);  line-height: 1.6;  margin: 0;  font-size: 0.95rem;  transition: color 0.3s ease;}.tech-feature-card:hover .tech-feature-desc {  color: var(--gray-700);}/* Staggered animation effect */.tech-feature-card:nth-child(1) {   animation-delay: 0.1s; }.tech-feature-card:nth-child(2) {   animation-delay: 0.2s; }.tech-feature-card:nth-child(3) {   animation-delay: 0.3s; }.tech-feature-card:nth-child(4) {   animation-delay: 0.4s; }/* Responsive adjustments for tech features */@media (max-width: 768px) {  .tech-features {    grid-template-columns: 1fr;    gap: 1.5rem;  }    .tech-feature-card {    padding: 2rem 1.5rem;  }    .tech-feature-icon {    width: 70px;    height: 70px;  }    .tech-feature-icon i {    font-size: 2rem;  }}@media (max-width: 480px) {  .tech-feature-card {    padding: 1.5rem 1rem;  }}

.tech-advantages {
  margin-bottom: 4rem;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.advantage-card {
  background-color: white;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.advantage-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 86, 179, 0.03) 0%, rgba(0, 160, 233, 0.03) 100%);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s ease;
}

.advantage-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 86, 179, 0.1);
}

.advantage-card:hover::before {
  opacity: 1;
}

.advantage-card i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  display: inline-block;
  background: linear-gradient(135deg, rgba(0, 86, 179, 0.1) 0%, rgba(0, 160, 233, 0.1) 100%);
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.advantage-card:hover i {
  transform: scale(1.1) rotate(10deg);
  background: linear-gradient(135deg, rgba(0, 86, 179, 0.2) 0%, rgba(0, 160, 233, 0.2) 100%);
  color: var(--accent-color);
}

.advantage-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.advantage-card:hover h3 {
  color: var(--primary-color);
}

.advantage-card p {
  color: var(--secondary-color);
  line-height: 1.6;
}

/* Ultra Modern Technology CTA Section */.tech-cta {  background: #0a0a0a;  position: relative;  overflow: hidden;  margin: 6rem 0;  padding: 0;  min-height: 70vh;  display: flex;  align-items: center;}/* Dynamic tech gradient */.tech-cta::before {  content: '';  position: absolute;  top: 0;  left: 0;  right: 0;  bottom: 0;  background: linear-gradient(135deg,     #667eea 0%,     #764ba2 25%,     #4c63d2 50%,     #845ec2 75%,     #ff6b95 100%);  opacity: 0.92;  z-index: 1;}/* Advanced tech pattern */.tech-cta::after {  content: '';  position: absolute;  top: 0;  left: 0;  right: 0;  bottom: 0;  background:     radial-gradient(circle at 30% 40%, rgba(76, 99, 210, 0.4) 0%, transparent 50%),    radial-gradient(circle at 70% 60%, rgba(132, 94, 194, 0.3) 0%, transparent 50%),    radial-gradient(circle at 20% 80%, rgba(255, 107, 149, 0.3) 0%, transparent 50%);  animation: techCtaAnimation 10s ease-in-out infinite alternate;  z-index: 2;}@keyframes techCtaAnimation {  0% {    transform: translate(0, 0) scale(1);    opacity: 0.7;  }  100% {    transform: translate(15px, -15px) scale(1.08);    opacity: 1;  }}.tech-cta .container {  position: relative;  z-index: 3;  padding: 7rem 0;}/* Tech glassmorphism card */.tech-cta-hero {  background: rgba(255, 255, 255, 0.12);  backdrop-filter: blur(25px);  -webkit-backdrop-filter: blur(25px);  border: 1px solid rgba(255, 255, 255, 0.18);  border-radius: 35px;  padding: 4rem 3.5rem;  max-width: 800px;  margin: 0 auto;  text-align: center;  box-shadow:     0 35px 70px rgba(0, 0, 0, 0.3),    inset 0 1px 0 rgba(255, 255, 255, 0.15);  position: relative;  overflow: hidden;}/* Tech border glow */.tech-cta-hero::before {  content: '';  position: absolute;  top: -2px;  left: -2px;  right: -2px;  bottom: -2px;  background: linear-gradient(45deg,     #667eea, #764ba2, #4c63d2, #845ec2, #ff6b95);  border-radius: 35px;  z-index: -1;  opacity: 0;  transition: opacity 0.5s ease;  animation: techBorderFlow 6s linear infinite;  background-size: 300% 300%;}@keyframes techBorderFlow {  0% { background-position: 0% 50%; }  50% { background-position: 100% 50%; }  100% { background-position: 0% 50%; }}.tech-cta-hero:hover::before {  opacity: 0.9;}/* Tech status badge */.tech-status {  display: inline-block;  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.15));  color: white;  padding: 0.75rem 1.8rem;  border-radius: 50px;  font-size: 0.85rem;  font-weight: 700;  margin-bottom: 2rem;  border: 1px solid rgba(255, 255, 255, 0.25);  backdrop-filter: blur(15px);  text-transform: uppercase;  letter-spacing: 1.2px;  position: relative;  overflow: hidden;}.tech-status::before {  content: '';  position: absolute;  top: 0;  left: -100%;  width: 100%;  height: 100%;  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);  animation: techStatusGlow 2.5s infinite;}@keyframes techStatusGlow {  0% { left: -100%; }  100% { left: 100%; }}/* Tech typography */.tech-cta h2 {  font-size: 3.8rem;  font-weight: 900;  margin-bottom: 1.8rem;  line-height: 1.1;  color: white;  letter-spacing: -0.03em;  position: relative;  background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 50%, #e8f4fd 100%);  -webkit-background-clip: text;  -webkit-text-fill-color: transparent;  background-clip: text;}.tech-cta h2::after {  content: '';  position: absolute;  bottom: -12px;  left: 50%;  transform: translateX(-50%);  width: 100px;  height: 5px;  background: linear-gradient(90deg, #667eea, #ff6b95, #4c63d2);  border-radius: 3px;  animation: techUnderlineShift 3s ease-in-out infinite alternate;}@keyframes techUnderlineShift {  0% {    box-shadow: 0 0 25px rgba(102, 126, 234, 0.6);    transform: translateX(-50%) scale(1);  }  100% {    box-shadow: 0 0 45px rgba(255, 107, 149, 0.8);    transform: translateX(-50%) scale(1.15);  }}.tech-cta p {  font-size: 1.3rem;  line-height: 1.7;  margin-bottom: 3rem;  color: rgba(255, 255, 255, 0.93);  font-weight: 400;  max-width: 600px;  margin-left: auto;  margin-right: auto;  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);}/* Revolutionary tech button */.tech-cta .btn {  padding: 1.3rem 2.8rem;  font-size: 1.1rem;  font-weight: 700;  border-radius: 18px;  border: none;  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);  position: relative;  overflow: hidden;  text-decoration: none;  display: inline-flex;  align-items: center;  justify-content: center;  min-width: 200px;  text-transform: uppercase;  letter-spacing: 0.8px;  background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);  color: #1a1a2e;  box-shadow: 0 8px 35px rgba(255, 255, 255, 0.35);}.tech-cta .btn::before {  content: '';  position: absolute;  top: 0;  left: 0;  right: 0;  bottom: 0;  background: linear-gradient(135deg, #667eea, #764ba2, #ff6b95);  opacity: 0;  transition: opacity 0.4s ease;  border-radius: 18px;  z-index: -1;}.tech-cta .btn::after {  content: '';  position: absolute;  top: 2px;  left: 2px;  right: 2px;  bottom: 2px;  background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);  border-radius: 16px;  z-index: -1;  transition: all 0.4s ease;}.tech-cta .btn:hover {  transform: translateY(-5px) scale(1.06);  box-shadow: 0 18px 55px rgba(255, 255, 255, 0.5);  text-decoration: none;}.tech-cta .btn:hover::before {  opacity: 1;}.tech-cta .btn:hover::after {  opacity: 0;}.tech-cta .btn:hover {  color: white;}/* Responsive tech CTA */@media (max-width: 768px) {  .tech-cta {    min-height: 60vh;    padding: 0;  }    .tech-cta .container {    padding: 5rem 0;  }    .tech-cta-hero {    padding: 3rem 2rem;    border-radius: 25px;  }    .tech-cta h2 {    font-size: 2.8rem;  }    .tech-cta p {    font-size: 1.15rem;  }    .tech-cta .btn {    width: 100%;    max-width: 280px;  }}@media (max-width: 480px) {  .tech-cta .container {    padding: 4rem 0;  }    .tech-cta-hero {    padding: 2.5rem 1.5rem;    border-radius: 20px;  }    .tech-cta h2 {    font-size: 2.2rem;  }    .tech-cta p {    font-size: 1rem;  }}

/* FAQ Page */
.faq-page {
  padding: 4rem 0;
}

.more-questions {
  text-align: center;
  margin-top: 4rem;
  padding: 2rem;
  background-color: #f8f9fa;
  border-radius: 8px;
}

/* Contact Page */
.contact-page {
  padding: 4rem 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .about-content {
    flex-direction: column;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .contact-info {
    padding: 0;
  }
  
  .contact-form {
    padding: 2.5rem;
  }
  
  .map-container {
    padding: 2.5rem;
    margin-top: 4rem;
  }
  
  .map {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .contact-container {
    gap: 2rem;
  }
  
  .contact-info h2 {
    font-size: 2.2rem;
  }
  
  .contact-form h2 {
    font-size: 2rem;
  }
  
  .contact-form {
    padding: 2rem;
    border-radius: 25px;
  }
  
  .map-container {
    padding: 2rem;
    border-radius: 25px;
  }
  
  .map-container h2 {
    font-size: 1.8rem;
  }
  
  .contact-item {
    padding: 1.5rem;
    border-radius: 15px;
    flex-direction: column;
    text-align: center;
  }
  
  .contact-item-icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  .social-media {
    padding: 2rem;
    border-radius: 20px;
  }
  
  .social-icons {
    gap: 1rem;
  }
  
  .social-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
}

@media (max-width: 576px) {
  .contact-form {
    padding: 1.5rem;
    border-radius: 20px;
  }
  
  .contact-info h2 {
    font-size: 1.8rem;
  }
  
  .contact-form h2 {
    font-size: 1.8rem;
  }
  
  .map-container {
    padding: 1.5rem;
    border-radius: 20px;
  }
  
  .map-container h2 {
    font-size: 1.6rem;
  }
  
  .map {
    height: 300px;
    border-radius: 15px;
  }
  
  .contact-item {
    padding: 1.2rem;
  }
  
  .contact-item-icon {
    width: 50px;
    height: 50px;
  }
  
  .contact-item-icon i {
    font-size: 1.5rem;
  }
  
  .social-media {
    padding: 1.5rem;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 1rem 1.2rem;
    border-radius: 12px;
  }
}

@media (max-width: 768px) {  .mobile-nav-toggle {    display: flex;  }
  
  header .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
  }
  
  header .nav-links.show {
    display: flex;
  }
  
  header .nav-links li {
    margin: 0;
    padding: 0.5rem 1.5rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    color: aliceblue;
    font-size: 1.1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-buttons .btn {
    margin-bottom: 1rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .section-header h2 {
    font-size: 1.75rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
}

/* Modern CSS Animations and Effects *//* Simplified animations - no opacity problems */.animate-on-scroll {  opacity: 1;  transform: translateY(0);  transition: all 0.6s ease-out;}.animate-in {  opacity: 1;  transform: translateY(0);}

/* Stagger animations for cards */
.service-card:nth-child(1) { transition-delay: 0.1s; }
.service-card:nth-child(2) { transition-delay: 0.2s; }
.service-card:nth-child(3) { transition-delay: 0.3s; }
.service-card:nth-child(4) { transition-delay: 0.4s; }

.benefit-card:nth-child(1) { transition-delay: 0.1s; }
.benefit-card:nth-child(2) { transition-delay: 0.2s; }
.benefit-card:nth-child(3) { transition-delay: 0.3s; }
.benefit-card:nth-child(4) { transition-delay: 0.4s; }

/* Ripple effect for cards */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(67, 97, 238, 0.3);
  transform: scale(0);
  animation: ripple-animation 1s linear;
  pointer-events: none;
}

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Loading states */
body.loading * {
  animation-play-state: paused;
}

body.loaded .hero h1,
body.loaded .hero p,
body.loaded .hero-buttons {
  animation-play-state: running;
}

/* Enhanced form styles */
.form-group {
  position: relative;
  margin-bottom: 1.5rem;
}

.form-group.focused label {
  color: var(--primary-color);
  transform: translateY(-25px) scale(0.85);
}

.form-group label {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  color: var(--gray-500);
  transition: all 0.3s ease;
  pointer-events: none;
  background: white;
  padding: 0 0.25rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  background: white;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.1);
}

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
  border-color: var(--danger-color);
  box-shadow: 0 0 0 3px rgba(239, 71, 111, 0.1);
}

.error-message {
  color: var(--danger-color);
  font-size: 0.875rem;
  margin-top: 0.5rem;
  display: block;
}

/* Enhanced header scroll effects */
header {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

header.scrolled {
  padding: 0.5rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(25px);
}

/* Mobile navigation improvements */
.mobile-nav-toggle.is-active {
  transform: rotate(90deg);
}

/* Enhanced floating button interactions - already defined above */

/* Enhanced section backgrounds */
.about-section,
.technology-section,
.faq-section {
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(67, 97, 238, 0.02) 50%, transparent 70%);
  animation: section-background 20s linear infinite;
  z-index: 0;
}

@keyframes section-background {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Enhanced workflow steps */
.workflow-step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 3rem;
  padding: 2rem;
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.workflow-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(67, 97, 238, 0.05) 0%, rgba(114, 9, 183, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.workflow-step:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(67, 97, 238, 0.2);
}

.workflow-step:hover::before {
  opacity: 1;
}

.step-content {
  flex: 1;
  margin-left: 1.5rem;
}

.step-content h3 {
  margin-bottom: 0.75rem;
  color: var(--dark-color);
  font-size: 1.5rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.workflow-step:hover .step-content h3 {
  color: var(--primary-color);
}

.step-content p {
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
}

/* Enhanced tech diagram */
.tech-diagram {
  position: relative;
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

/* Statistics counters */
.stats-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  color: white;
  padding: 5rem 0;
  margin: 4rem 0;
  position: relative;
  overflow: hidden;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.stat-item {
  text-align: center;
  padding: 2rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.5rem;
  display: block;
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
  font-weight: 500;
}

/* Feature cards in about section enhancement */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature {
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(67, 97, 238, 0.05) 0%, rgba(114, 9, 183, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.feature:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(67, 97, 238, 0.2);
}

.feature:hover::before {
  opacity: 1;
}

.feature i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  display: inline-block;
  background: linear-gradient(135deg, rgba(67, 97, 238, 0.1) 0%, rgba(114, 9, 183, 0.1) 100%);
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.feature:hover i {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, rgba(67, 97, 238, 0.2) 0%, rgba(114, 9, 183, 0.2) 100%);
  color: var(--accent-color);
}

.feature h4 {
  margin-bottom: 1rem;
  color: var(--dark-color);
  font-size: 1.25rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.feature:hover h4 {
  color: var(--primary-color);
}

.feature p {
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
}

/* Responsive animations */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Dark mode support (optional) */
@media (prefers-color-scheme: dark) {
  :root {
    --body-bg: #0a0a0a;
    --card-bg: #1a1a1a;
    --text-color: #545353;
    --border-color: #333;
  }
}

/* Alert Styles for Contact Form */
.alert {
  padding: 1rem 1.5rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 0.95rem;
  line-height: 1.5;
}

.alert i {
  font-size: 1.2rem;
}

.alert-success {
  background: linear-gradient(135deg, #d1edcc 0%, #e8f5e8 100%);
  color: #0f5132;
  border: 1px solid rgba(25, 135, 84, 0.2);
}

.alert-success i {
  color: #198754;
}

.alert-danger {
  background: linear-gradient(135deg, #f8d7da 0%, #f5c2c7 100%);
  color: #721c24;
  border: 1px solid rgba(220, 53, 69, 0.2);
}

.alert-danger i {
  color: #dc3545;
}

.alert:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Form validation styles */
.text-danger {
  color: #dc3545 !important;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  display: block;
}

.form-control.is-invalid {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-control:invalid {
  border-color: #dc3545;
}

.form-control:valid {
  border-color: #198754;
}

/* Companies Carousel Section */
.companies-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
  position: relative;
  overflow: hidden;
  margin: 2rem 0;
}

.companies-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 25% 75%, rgba(67, 97, 238, 0.02) 0%, transparent 50%),
    radial-gradient(circle at 75% 25%, rgba(114, 9, 183, 0.02) 0%, transparent 50%);
  pointer-events: none;
}

.companies-section .section-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.companies-section .section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.companies-section .section-header p {
  font-size: 1.2rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.companies-carousel {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 3rem 0;
  margin: 0 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.carousel-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  align-items: center;
  transition: transform 0.5s ease;
  will-change: transform;
}

.company-logo {
  flex: 0 0 20%; /* 5 logos visible (100% / 5 = 20%) */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.company-logo img {
  max-width: 120px;
  max-height: 80px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.7);
  transition: all 0.4s ease;
  border-radius: 8px;
}

.company-logo:hover img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}

/* Responsive design for carousel */
@media (max-width: 1200px) {
  .company-logo {
    flex: 0 0 25%; /* 4 logos visible */
  }
  
  .company-logo img {
    max-width: 120px;
    max-height: 80px;
  }
}

@media (max-width: 768px) {
  .companies-section {
    padding: 3rem 0;
  }
  
  .companies-carousel {
    margin: 0 1rem;
    padding: 2rem 0;
  }
  
  .company-logo {
    flex: 0 0 33.333%; /* 3 logos visible */
  }
  
  .company-logo img {
    max-width: 80px;
    max-height: 60px;
  }
  
  .companies-section .section-header h2 {
    font-size: 2rem;
  }
  
  .companies-section .section-header p {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .companies-section {
    padding: 2rem 0;
  }
  
  .companies-carousel {
    margin: 0 0.5rem;
    padding: 1.5rem 0;
  }
  
  .company-logo {
    flex: 0 0 50%; /* 2 logos visible */
    padding: 1rem;
  }
  
  .company-logo img {
    max-width: 70px;
    max-height: 50px;
  }
  
  .companies-section .section-header h2 {
    font-size: 1.8rem;
  }
  
  .companies-section .section-header p {
    font-size: 1rem;
  }
}
