:root {
  --background: #ffffff;
  --foreground: #0f172a;
  --primary: #667eea;
  --secondary: #764ba2;
  --background-start: #f8fafc;
  --background-end: #e0e7ff;
  --text-heading: #0f172a;
  --text-body: #475569;
  --border-light: #e2e8f0;
  --background-light: #f1f5f9;
}

/* Dark theme variables */
:root[data-theme="dark"] {
  --background: #0a0a0f;
  --foreground: #e8e9ed;
  --primary: #667eea;
  --secondary: #764ba2;
  --background-start: #12121a;
  --background-end: #1a1a24;
  --text-heading: #ffffff;
  --text-body: #b4b6c0;
  --border-light: #2a2a35;
  --background-light: #1a1a24;
}

/* Tailwind directives removed for static HTML */

/* Page Loader Styles */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.loader-logo {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  backdrop-filter: blur(10px);
  animation: pulse 2s ease-in-out infinite;
}

.loader-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top: 4px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.loader-text {
  color: white;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeInOut 2s ease-in-out infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes pulse {
  0%, 100% { 
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  50% { 
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }
}

@keyframes fadeInOut {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* Loading Spinner Styles (for inline use) */
.loading-spinner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #667eea;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Contact Form Styles */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* Responsive form layout */
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  .contact-form {
    gap: 1.25rem;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px; /* Prevents zoom on iOS */
  }
  
  .submit-button {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 600;
  color: #374151;
  font-size: 0.875rem;
}

.dark .form-group label {
  color: #d1d5db;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem;
  border: 2px solid #e5e7eb;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: white;
}

.dark .form-group input,
.dark .form-group select,
.dark .form-group textarea {
  background: #1f2937;
  border-color: #374151;
  color: #f9fafb;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group input:disabled,
.form-group select:disabled,
.form-group textarea:disabled {
  background-color: #f9fafb;
  cursor: not-allowed;
}

.dark .form-group input:disabled,
.dark .form-group select:disabled,
.dark .form-group textarea:disabled {
  background-color: #374151;
}

.error-message {
  background-color: #fef2f2;
  color: #dc2626;
  padding: 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid #fecaca;
  font-size: 0.875rem;
}

.dark .error-message {
  background-color: #7f1d1d;
  color: #fca5a5;
  border-color: #991b1b;
}

.submit-button {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.submit-button:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.submit-button:disabled {
  background: #9ca3af;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Service and Portfolio Styles */
.service-pricing {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0;
}

.pricing-text {
  font-size: 16px;
  color: #667eea;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

:root[data-theme="dark"] .pricing-text {
  color: #8b5cf6;
}

.service-card:hover .pricing-text {
  gap: 15px;
  color: #764ba2;
}

:root[data-theme="dark"] .service-card:hover .pricing-text {
  color: #a78bfa;
}

.project-technologies {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.tech-tag {
  background: #f3f4f6;
  color: #374151;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 500;
}

.dark .tech-tag {
  background: #374151;
  color: #d1d5db;
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--background);
  color: var(--foreground);
  overflow-x: hidden;
  line-height: 1.6;
  transition: background-color 300ms ease, color 300ms ease;
}

/* Theme Toggle Styles */
.theme-toggle {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  background: var(--background);
  color: var(--text-body);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.theme-toggle:hover {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

.theme-toggle-content {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

/* Custom utility classes */
.gradient-text {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Text color utilities */
.text-primary-500 {
  color: #667eea;
}

.text-slate-900 {
  color: #0f172a;
}

.text-slate-600 {
  color: #475569;
}

.text-white\/90 {
  color: rgba(255, 255, 255, 0.9);
}

.text-white\/95 {
  color: rgba(255, 255, 255, 0.95);
}

.text-white {
  color: white;
}

/* Background utilities */
.bg-white\/10 {
  background-color: rgba(255, 255, 255, 0.1);
}

.bg-white\/15 {
  background-color: rgba(255, 255, 255, 0.15);
}

.bg-white {
  background-color: white;
}

.hover\:bg-slate-50:hover {
  background-color: #f8fafc;
}

.bg-primary-500 {
  background-color: #667eea;
}

.w-\[300px\] {
  width: 300px;
}

.h-\[300px\] {
  height: 300px;
}

.-top-\[100px\] {
  top: -100px;
}

.-right-\[100px\] {
  right: -100px;
}

/* Border utilities */
.border-white\/20 {
  border-color: rgba(255, 255, 255, 0.2);
}

/* Backdrop utilities */
.backdrop-blur-md {
  backdrop-filter: blur(12px);
}

/* Additional positioning utilities */
.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.overflow-hidden {
  overflow: hidden;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.top-1\/4 {
  top: 25%;
}

.left-1\/4 {
  left: 25%;
}

.bottom-1\/4 {
  bottom: 25%;
}

.right-1\/4 {
  right: 25%;
}

.top-1\/2 {
  top: 50%;
}

.right-1\/4 {
  right: 25%;
}

/* Z-index utilities */
.z-1 {
  z-index: 1;
}

.z-10 {
  z-index: 10;
}

/* Width and height utilities */
.w-24 {
  width: 6rem;
}

.h-24 {
  height: 6rem;
}

.w-16 {
  width: 4rem;
}

.w-20 {
  width: 5rem;
}

.w-5 {
  width: 1.25rem;
}

.w-10 {
  width: 2.5rem;
}

.w-8 {
  width: 2rem;
}

.h-16 {
  height: 4rem;
}

.h-20 {
  height: 5rem;
}

.h-5 {
  height: 1.25rem;
}

.h-10 {
  height: 2.5rem;
}

.h-8 {
  height: 2rem;
}

.min-h-screen {
  min-height: 100vh;
}

.w-12 {
  width: 3rem;
}

.h-12 {
  height: 3rem;
}

.w-3 {
  width: 0.75rem;
}

.h-0\.5 {
  height: 0.125rem;
}

/* Transform utilities */
.-translate-y-1\/2 {
  transform: translateY(-50%);
}

/* Border radius utilities */
.rounded-full {
  border-radius: 9999px;
}

.rounded-2xl {
  border-radius: 1rem;
}

.rounded-3xl {
  border-radius: 1.5rem;
}

.rounded-xl {
  border-radius: 0.75rem;
}

/* Additional text utilities */
.text-5xl {
  font-size: 3rem;
  line-height: 1;
}

.text-6xl {
  font-size: 3.75rem;
  line-height: 1;
}

.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

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

.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

/* Responsive text utilities */
.lg\:text-6xl {
  font-size: 3.75rem;
  line-height: 1;
}

.lg\:text-5xl {
  font-size: 3rem;
  line-height: 1;
}

@media (min-width: 1024px) {
  .lg\:text-6xl {
    font-size: 3.75rem;
    line-height: 1;
  }
  
  .lg\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }
}

.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

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

.font-semibold {
  font-weight: 600;
}

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

.tracking-tight {
  letter-spacing: -0.025em;
}

.tracking-wider {
  letter-spacing: 0.05em;
}

.leading-relaxed {
  line-height: 1.625;
}

.uppercase {
  text-transform: uppercase;
}

/* Flexbox utilities */
.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.flex-wrap {
  flex-wrap: wrap;
}

/* Space utilities */
.space-y-2 > * + * {
  margin-top: 0.5rem;
}

.space-y-3 > * + * {
  margin-top: 0.75rem;
}

/* Spacing utilities */
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-5 {
  margin-bottom: 1.25rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-7 {
  margin-bottom: 1.75rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-10 {
  margin-bottom: 2.5rem;
}

.mb-16 {
  margin-bottom: 4rem;
}

.pl-5 {
  padding-left: 1.25rem;
}

.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.py-24 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.pt-32 {
  padding-top: 8rem;
}

.pb-20 {
  padding-bottom: 5rem;
}

.p-8 {
  padding: 2rem;
}

.p-10 {
  padding: 2.5rem;
}

.p-12 {
  padding: 3rem;
}

.p-16 {
  padding: 4rem;
}

.lg\:p-20 {
  padding: 5rem;
}

.p-20 {
  padding: 5rem;
}

/* Gap utilities */
.gap-5 {
  gap: 1.25rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-10 {
  gap: 2.5rem;
}

.gap-16 {
  gap: 4rem;
}

.gap-20 {
  gap: 5rem;
}

/* Grid utilities */
.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.md\:grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (min-width: 768px) {
  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Responsive Grid Utility Classes */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.founder-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 80rem;
  margin: 0 auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .blog-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (min-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.tech-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .tech-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (min-width: 1024px) {
  .tech-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

/* Width and height utilities */
.w-28 {
  width: 7rem;
}

.h-28 {
  height: 7rem;
}

/* Max width utilities */
.max-w-2xl {
  max-width: 42rem;
}

.max-w-3xl {
  max-width: 48rem;
}

.max-w-4xl {
  max-width: 56rem;
}

.max-w-5xl {
  max-width: 64rem;
}

.max-w-7xl {
  max-width: 80rem;
}

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

/* Animation delays */
.animate-delay-200 {
  animation-delay: 0.2s;
}

.animate-delay-400 {
  animation-delay: 0.4s;
}

/* Transform utilities */
.-translate-y-2 {
  transform: translateY(-0.5rem);
}

.-translate-y-8 {
  transform: translateY(-2rem);
}

.hover\:-translate-y-2:hover {
  transform: translateY(-0.5rem);
}

.hover\:-translate-y-8:hover {
  transform: translateY(-2rem);
}

/* Scale utilities */
.scale-x-0 {
  transform: scaleX(0);
}

.hover\:-translate-y-2:hover {
  transform: translateY(-0.5rem);
}

.group:hover .group-hover\:scale-x-100 {
  transform: scaleX(1);
}

.origin-left {
  transform-origin: left;
}

/* Transition utilities */
.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.duration-300 {
  transition-duration: 300ms;
}

.transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.duration-500 {
  transition-duration: 500ms;
}

.animation-delay-2000 {
  animation-delay: 2s;
}

.animation-delay-3000 {
  animation-delay: 3s;
}

.animation-delay-4000 {
  animation-delay: 4s;
}

/* About page specific animations */
@keyframes float {
  0%, 100% { 
    transform: translate(0, 0) scale(1); 
  }
  50% { 
    transform: translate(30px, -30px) scale(1.1); 
  }
}

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

@keyframes shine {
  100% {
    transform: translateX(100%);
  }
}

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

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

/* Hero decorations */
.hero-decoration {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea, #764ba2);
  opacity: 0.05;
  animation: float 20s infinite ease-in-out;
}

.hero-decoration.decoration-1 {
  top: -150px;
  left: -100px;
}

.hero-decoration.decoration-2 {
  bottom: -150px;
  right: -100px;
  animation-delay: 5s;
}

/* Gradient backgrounds */
.bg-gradient-hero {
  background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
}

.bg-gradient-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Gradient utilities with opacity */
.bg-gradient-primary\/10 {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
}

/* Group hover utilities */
.group:hover .group-hover\:bg-gradient-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.group:hover .group-hover\:scale-110 {
  transform: scale(1.1);
}

.group:hover .group-hover\:text-white {
  color: white;
}

.group:hover .group-hover\:rotate-\[5deg\] {
  transform: rotate(5deg);
}

/* Shadow utilities */
.shadow-soft {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.shadow-medium {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

/* Additional shadow utilities for hover states */
.hover\:shadow-medium:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.hover\:shadow-xl:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Timeline specific styles */
.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #e2e8f0;
  transform: translateX(-50%);
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 30px;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 0 0 4px #e2e8f0;
  z-index: 1;
}

/* Modern Header Styles */
.modern-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
}

/* Ensure header has background on mobile from the start */
@media (max-width: 768px) {
  .modern-header {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    transform: translateY(0) !important;
  }
  
  :root[data-theme="dark"] .modern-header {
    background: rgba(10, 10, 15, 0.98) !important;
    border-bottom: 1px solid rgba(42, 42, 53, 0.3);
  }
  
  /* Prevent body from shifting */
  body {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
  
  /* Ensure first section accounts for fixed header */
  .hero-section {
    scroll-margin-top: 70px;
  }
}

/* Dark mode header styles */
:root[data-theme="dark"] .modern-header {
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(42, 42, 53, 0.3);
}

.header-scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(102, 126, 234, 0.1);
}

:root[data-theme="dark"] .header-scrolled {
  background: rgba(10, 10, 15, 0.98);
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(102, 126, 234, 0.2);
}

.header-transparent {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* Enhanced Logo Styles */
.modern-logo-container {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.modern-logo-container:hover {
  transform: translateY(-2px);
}

.modern-logo-icon {
  position: relative;
  z-index: 1;
}

.logo-gradient-bg {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
  transition: all 0.3s ease;
}

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

.modern-logo-container:hover .logo-gradient-bg::before {
  left: 100%;
}

.logo-text {
  color: white;
  font-weight: 800;
  font-size: 1.8rem;
  letter-spacing: -0.5px;
  position: relative;
  z-index: 1;
}

.logo-shine {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
  transform: translateX(-100%);
  animation: logoShine 3s infinite;
}

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

.logo-text-container {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo-brand {
  font-size: 1.6rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.5px;
  line-height: 1;
  transition: color 0.3s ease;
}

:root[data-theme="dark"] .logo-brand {
  color: #ffffff;
}

.logo-tagline {
  font-size: 0.75rem;
  font-weight: 500;
  color: #667eea;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1;
}

/* Enhanced Navigation Styles */
.modern-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-item-wrapper {
  position: relative;
}

.modern-nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 20px;
  color: #475569;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
  position: relative;
  overflow: hidden;
}

:root[data-theme="dark"] .modern-nav-link {
  color: #b4b6c0;
}

.modern-nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 12px;
}

.modern-nav-link:hover::before {
  opacity: 1;
}

.modern-nav-link:hover {
  color: #667eea;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

.modern-nav-link.active {
  color: #667eea;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.1);
}

.nav-link-text {
  position: relative;
  z-index: 1;
}

.nav-link-underline {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  transition: width 0.3s ease;
  border-radius: 1px;
}

.modern-nav-link:hover .nav-link-underline {
  width: 60%;
}

/* Enhanced Dropdown Styles */
.modern-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(102, 126, 234, 0.1);
  overflow: hidden;
  z-index: 100;
}

.dropdown-content {
  padding: 8px;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: #475569;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.dropdown-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 12px;
}

.dropdown-item:hover::before {
  opacity: 1;
}

.dropdown-item:hover {
  color: #667eea;
  transform: translateX(4px);
}

.dropdown-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.dropdown-item:hover .dropdown-icon {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  transform: scale(1.1);
}

.dropdown-item:hover .dropdown-icon svg {
  color: white;
}

.dropdown-arrow {
  margin-left: auto;
  font-size: 0.8rem;
  color: #cbd5e1;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.dropdown-item:hover .dropdown-arrow {
  color: #667eea;
  transform: translateX(4px);
}

/* Dark mode dropdown styles */
:root[data-theme="dark"] .modern-dropdown {
  background: #1a1a24;
  border-color: #2a2a35;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

:root[data-theme="dark"] .dropdown-item {
  color: #b4b6c0;
}

:root[data-theme="dark"] .dropdown-item::before {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
}

:root[data-theme="dark"] .dropdown-item:hover {
  color: #667eea;
}

:root[data-theme="dark"] .dropdown-icon {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
}

:root[data-theme="dark"] .dropdown-arrow {
  color: #64748b;
}

:root[data-theme="dark"] .dropdown-item:hover .dropdown-arrow {
  color: #667eea;
}

/* All Services dropdown styles */
.all-services-item {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
  border: 1px solid rgba(102, 126, 234, 0.2);
  margin-bottom: 4px;
}

.all-services-item:hover {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  border-color: rgba(102, 126, 234, 0.3);
}

.dropdown-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(102, 126, 234, 0.2) 50%, transparent 100%);
  margin: 4px 0;
}

/* Mobile All Services styles */
.all-services-mobile {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
  border: 1px solid rgba(102, 126, 234, 0.2);
  margin-bottom: 4px;
}

.all-services-mobile:hover {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  border-color: rgba(102, 126, 234, 0.3);
}

.mobile-dropdown-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(102, 126, 234, 0.2) 50%, transparent 100%);
  margin: 4px 0;
}

/* Dark mode All Services styles */
:root[data-theme="dark"] .all-services-item {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  border-color: rgba(102, 126, 234, 0.3);
}

:root[data-theme="dark"] .all-services-item:hover {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
  border-color: rgba(102, 126, 234, 0.4);
}

:root[data-theme="dark"] .dropdown-divider {
  background: linear-gradient(90deg, transparent 0%, rgba(102, 126, 234, 0.3) 50%, transparent 100%);
}

:root[data-theme="dark"] .all-services-mobile {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  border-color: rgba(102, 126, 234, 0.3);
}

:root[data-theme="dark"] .all-services-mobile:hover {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
  border-color: rgba(102, 126, 234, 0.4);
}

:root[data-theme="dark"] .mobile-dropdown-divider {
  background: linear-gradient(90deg, transparent 0%, rgba(102, 126, 234, 0.3) 50%, transparent 100%);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.modern-cta-btn {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
  transition: all 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

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

.modern-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

/* Enhanced Mobile Toggle */
.modern-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px;
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.modern-mobile-toggle::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 12px;
}

.modern-mobile-toggle:hover::before {
  opacity: 1;
}

.hamburger-line {
  display: block;
  width: 28px;
  height: 3px;
  background: #0f172a;
  border-radius: 3px;
  transition: all 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
  position: relative;
  z-index: 1;
}

.modern-mobile-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
  background: #667eea;
}

.modern-mobile-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.modern-mobile-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
  background: #667eea;
}

/* Enhanced Mobile Menu */
.modern-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  z-index: 60;
  overflow-y: auto;
}

:root[data-theme="dark"] .modern-mobile-menu {
  background: rgba(10, 10, 15, 0.98);
}

.mobile-menu-content {
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(102, 126, 234, 0.1);
}

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

.mobile-logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.mobile-logo span {
  font-size: 1.3rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
}

:root[data-theme="dark"] .mobile-logo span {
  color: #ffffff;
}

.mobile-close-btn {
  width: 44px;
  height: 44px;
  background: rgba(102, 126, 234, 0.1);
  border: none;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #667eea;
}

.mobile-close-btn:hover {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  transform: scale(1.1);
}

.mobile-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav-item {
  width: 100%;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  padding: 16px 20px;
  color: #475569;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  min-height: 52px;
}

:root[data-theme="dark"] .mobile-nav-link {
  color: #b4b6c0;
}

.mobile-nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 12px;
}

.mobile-nav-link:hover::before {
  opacity: 1;
}

.mobile-nav-link:hover {
  color: #667eea;
  transform: translateX(8px);
}

.mobile-nav-link.active {
  color: #667eea;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.1);
}

.mobile-dropdown {
  margin-left: 20px;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mobile-dropdown-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: #64748b;
  text-decoration: none;
  font-size: 0.9rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mobile-dropdown-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(102, 126, 234, 0.05);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 8px;
}

.mobile-dropdown-link:hover::before {
  opacity: 1;
}

.mobile-dropdown-link:hover {
  color: #667eea;
  transform: translateX(8px);
}

.mobile-cta-section {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(102, 126, 234, 0.1);
}

.mobile-cta-btn {
  width: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
  transition: all 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  padding: 16px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  text-align: center;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

.mobile-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

/* Footer Styles */
.footer-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: white;
  padding: 80px 20px 0;
  margin-top: 100px;
}

:root[data-theme="dark"] .footer-section {
  background: linear-gradient(135deg, #000000 0%, #0a0a0f 100%);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-column {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.footer-column:nth-child(1) { animation-delay: 0.1s; }
.footer-column:nth-child(2) { animation-delay: 0.2s; }
.footer-column:nth-child(3) { animation-delay: 0.3s; }
.footer-column:nth-child(4) { animation-delay: 0.4s; }

.footer-brand {
  max-width: 400px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.footer-logo .logo-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 1.3rem;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-logo .logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  letter-spacing: -0.5px;
  line-height: 1;
}

.footer-tagline {
  font-size: 0.75rem;
  font-weight: 500;
  color: #cbd5e1;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1;
}

.footer-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #cbd5e1;
  margin-bottom: 32px;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-link {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.social-link:hover {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  transform: translateY(-3px);
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: white;
}

.footer-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: white !important;
  margin-bottom: 24px;
  letter-spacing: -0.3px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
}

.footer-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  transition: width 0.3s ease;
}

.footer-link:hover {
  color: white;
  padding-left: 16px;
}

.footer-link:hover::before {
  width: 12px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #000000;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.contact-item:hover {
  color: #333333;
  transform: translateX(4px);
}

.contact-item .contact-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: rgba(102, 126, 234, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.contact-item .contact-icon svg {
  width: 16px;
  height: 16px;
  fill: white;
  transition: fill 0.3s ease;
}

.contact-item:hover .contact-icon svg {
  fill: white;
}

.contact-item a {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #333333;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 32px 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.copyright {
  color: #94a3b8;
  font-size: 0.9rem;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-link {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-bottom-link:hover {
  color: #667eea;
}

/* Responsive Design for Modern Header */
@media (max-width: 1024px) {
  .modern-nav {
    display: none;
  }
  
  .header-actions {
    display: none;
  }
  
  .modern-mobile-toggle {
    display: flex;
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 0 20px;
  }
  
  .header-content {
    height: 70px;
  }
  
  .logo-gradient-bg {
    width: 32px;
    height: 32px;
  }
  
  .logo-text {
    font-size: 1.4rem;
  }
  
  .logo-brand {
    font-size: 1.4rem;
  }
  
  .logo-tagline {
    font-size: 0.7rem;
  }
  
  .modern-mobile-toggle {
    padding: 10px;
  }
  
  .hamburger-line {
    width: 24px;
    height: 2.5px;
  }
  
  /* Mobile Menu Responsive Styles for Tablet */
  .modern-mobile-menu {
    z-index: 1000 !important;
  }
  
  .mobile-menu-content {
    padding: 24px 20px;
    box-sizing: border-box;
  }
  
  .mobile-menu-header {
    margin-bottom: 32px;
    padding-bottom: 18px;
  }
  
  .mobile-logo span {
    font-size: 1.25rem;
  }
  
  .mobile-nav-link {
    padding: 15px 20px;
    font-size: 0.98rem;
    min-height: 50px;
  }
  
  .mobile-cta-section {
    margin-top: 28px;
    padding-top: 22px;
  }
  
  .mobile-cta-btn {
    padding: 15px 24px;
    font-size: 1rem;
    min-height: 50px;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 0 16px;
  }
  
  .header-content {
    height: 65px;
  }
  
  .logo-gradient-bg {
    width: 28px;
    height: 28px;
    border-radius: 10px;
  }
  
  .logo-text {
    font-size: 1.3rem;
  }
  
  .logo-brand {
    font-size: 1.3rem;
  }
  
  .logo-tagline {
    font-size: 0.65rem;
  }
  
  .modern-logo-container {
    gap: 12px;
  }
  
  .modern-mobile-toggle {
    padding: 8px;
  }
  
  .hamburger-line {
    width: 22px;
    height: 2px;
  }
  
  /* Mobile Menu Responsive Styles */
  .modern-mobile-menu {
    z-index: 1000 !important;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .mobile-menu-content {
    padding: 20px 16px;
    min-height: 100vh;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  
  .mobile-menu-header {
    margin-bottom: 24px;
    padding-bottom: 16px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    box-sizing: border-box;
  }
  
  .mobile-logo {
    gap: 10px;
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    overflow: hidden;
  }
  
  .mobile-logo-icon {
    width: 36px;
    height: 36px;
    font-size: 0.95rem;
    flex-shrink: 0;
  }
  
  .mobile-logo-image {
    height: 36px;
    width: auto;
    max-width: 100%;
    flex-shrink: 0;
  }
  
  .logo-image {
    height: 60px;
  }
  
  .mobile-logo span {
    font-size: 1.1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    min-width: 0;
    max-width: calc(100vw - 120px);
  }
  
  .mobile-close-btn {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    font-size: 1.25rem;
    min-width: 40px;
    min-height: 40px;
  }
  
  .mobile-nav {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-right: 4px;
    margin-bottom: 16px;
  }
  
  .mobile-nav-link {
    padding: 16px 18px;
    font-size: 0.95rem;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
  }
  
  .mobile-nav-link:hover {
    transform: translateX(4px);
  }
  
  .mobile-dropdown {
    margin-left: 16px;
    margin-top: 6px;
    gap: 4px;
  }
  
  .mobile-dropdown-link {
    padding: 12px 16px;
    font-size: 0.875rem;
    min-height: 44px;
    display: flex;
    align-items: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .mobile-cta-section {
    margin-top: 24px;
    padding-top: 20px;
    flex-shrink: 0;
  }
  
  .mobile-cta-btn {
    width: 100%;
    padding: 16px 24px;
    font-size: 1rem;
    min-height: 52px;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}

/* Additional responsive fixes for very small screens and landscape */
@media (max-width: 360px) {
  .mobile-menu-content {
    padding: 16px 12px;
  }
  
  .mobile-logo span {
    font-size: 1rem;
    max-width: calc(100vw - 100px);
  }
  
  .mobile-logo-image {
    height: 32px;
  }
  
  .mobile-close-btn {
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
    font-size: 1.1rem;
  }
  
  .mobile-nav-link {
    padding: 14px 16px;
    font-size: 0.9rem;
    min-height: 48px;
  }
  
  .mobile-cta-btn {
    padding: 14px 20px;
    font-size: 0.95rem;
    min-height: 48px;
  }
}

/* Landscape orientation adjustments */
@media (max-width: 768px) and (orientation: landscape) {
  .mobile-menu-content {
    padding: 16px 20px;
  }
  
  .mobile-menu-header {
    margin-bottom: 20px;
    padding-bottom: 12px;
  }
  
  .mobile-nav {
    max-height: 60vh;
    overflow-y: auto;
  }
  
  .mobile-nav-link {
    padding: 12px 18px;
    min-height: 44px;
  }
  
  .mobile-cta-section {
    margin-top: 16px;
    padding-top: 16px;
  }
}

@media (min-width: 640px) {
  .footer-content {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
  }
  
  .footer-brand {
    grid-column: 1 / -1;
    max-width: none;
  }
}

@media (min-width: 1024px) {
  .footer-content {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }
  
  .footer-brand {
    grid-column: auto;
    max-width: 400px;
  }
}

@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    max-width: none;
  }
}

@media (max-width: 768px) {
  .footer-section {
    padding: 60px 20px 0;
    margin-top: 80px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .footer-bottom-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .footer-section {
    padding: 50px 20px 0;
  }

  .footer-content {
    gap: 32px;
    margin-bottom: 32px;
  }

  .footer-logo {
    margin-bottom: 20px;
  }

  .footer-logo .logo-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .footer-logo .logo-text {
    font-size: 1.3rem;
  }

  .footer-description {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }

  .social-links {
    gap: 12px;
  }

  .social-link {
    width: 40px;
    height: 40px;
  }

  .social-link svg {
    width: 18px;
    height: 18px;
  }

  .footer-title {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }

  .footer-links {
    gap: 10px;
  }

  .footer-link {
    font-size: 0.9rem;
  }

  .contact-details {
    gap: 14px;
  }

  .contact-item {
    font-size: 0.9rem;
  }

  .contact-item .contact-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
  }

  .contact-item .contact-icon svg {
    width: 14px;
    height: 14px;
  }

  .footer-bottom {
    padding: 24px 0;
  }

  .copyright {
    font-size: 0.85rem;
  }

  .footer-bottom-link {
    font-size: 0.85rem;
  }
}

/* Mobile timeline adjustments */
@media (max-width: 768px) {
  .timeline-line {
    left: 30px;
  }
  
  .timeline-dot {
    left: 30px;
  }
  
  .hero-decoration {
    width: 200px;
    height: 200px;
  }
  
  .hero-decoration.decoration-1 {
    top: -100px;
    left: -50px;
  }
  
  .hero-decoration.decoration-2 {
    bottom: -100px;
    right: -50px;
  }
}

.animate-delay-600 {
  animation-delay: 0.6s;
}

.animate-delay-800 {
  animation-delay: 0.8s;
}

.animation-delay-5000 {
  animation-delay: 5s;
}

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

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #5a67d8, #6d28d9);
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Hero Section Styles */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 120px 20px 80px;
}

:root[data-theme="dark"] .hero-section {
  background: #1C1C20;
}

.bg-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.bg-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
}

.circle-1 {
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  top: -200px;
  right: -100px;
  animation: float 25s infinite ease-in-out;
}

.circle-2 {
  width: 350px;
  height: 350px;
  background: linear-gradient(135deg, #764ba2, #667eea);
  bottom: -150px;
  left: -100px;
  animation: float 20s infinite ease-in-out reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -40px) scale(1.1); }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

/* Prevent horizontal overflow */
@media (max-width: 768px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
    max-width: 100%;
  }
  
  /* Ensure all fixed-width elements are responsive */
  * {
    max-width: 100%;
  }
  
  /* Fix any elements that might cause overflow */
  body, html {
    overflow-x: hidden;
    width: 100%;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: center;
}

/* Ensure two-column layout on larger screens */
@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 80px;
  }
}

.hero-content {
  opacity: 0;
  animation: slideInLeft 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) 0.2s forwards;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 28px;
  padding-top: 0;
  letter-spacing: -1px;
  display: block;
  width: 100%;
  overflow: visible;
  word-wrap: break-word;
  white-space: normal;
  visibility: visible;
  opacity: 1;
  position: relative;
  z-index: 1;
}

:root[data-theme="dark"] .hero-content h1 {
  color: #ffffff;
}

.hero-content h1 .gradient-text {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
  visibility: visible;
  opacity: 1;
  line-height: inherit;
  vertical-align: baseline;
  position: relative;
}

.hero-content p {
  font-size: 1.25rem;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 560px;
  font-weight: 400;
}

:root[data-theme="dark"] .hero-content p {
  color: #b4b6c0;
}

.cta-group {
  display: flex;
  gap: 18px;
  margin-bottom: 48px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) 0.5s forwards;
}

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

.btn {
  padding: 18px 40px;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 14px;
  transition: all 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

:root[data-theme="dark"] .btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.6);
}

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

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

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
}

:root[data-theme="dark"] .btn-primary:hover {
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.7);
}

.btn-secondary {
  background: white;
  color: #667eea;
  border: 2px solid #e2e8f0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

:root[data-theme="dark"] .btn-secondary {
  background: #1e293b;
  color: #667eea;
  border-color: #334155;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-secondary:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  border-color: #667eea;
  background: #f8fafc;
}

:root[data-theme="dark"] .btn-secondary:hover {
  background: #334155;
  border-color: #667eea;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

/* Support for Tailwind-like dark mode classes */
/* Target elements that have both bg-white and dark:bg-slate-900 classes */
:root[data-theme="dark"] section.bg-white,
:root[data-theme="dark"] section[class*="bg-white"][class*="dark:bg-slate-900"] {
  background: #0f172a !important;
}

:root[data-theme="dark"] .group.bg-white,
:root[data-theme="dark"] div[class*="bg-white"][class*="dark:bg-slate-800"] {
  background: #1e293b !important;
}

:root[data-theme="dark"] h2[class*="text-slate-900"][class*="dark:text-white"],
:root[data-theme="dark"] div[class*="text-slate-900"][class*="dark:text-white"] {
  color: #ffffff !important;
}

:root[data-theme="dark"] p[class*="text-slate-600"][class*="dark:text-slate-400"],
:root[data-theme="dark"] div[class*="text-slate-600"][class*="dark:text-slate-400"] {
  color: #94a3b8 !important;
}

:root[data-theme="dark"] section[class*="dark:from-slate-900"][class*="dark:to-slate-800"] {
  background: linear-gradient(to bottom right, #0f172a, #1e293b) !important;
}

.trust-container {
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) 0.7s forwards;
}

.mini-highlights {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.highlight-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: white;
  border-radius: 50px;
  font-size: 0.95rem;
  color: #475569;
  font-weight: 500;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.highlight-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.badge-icon {
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-line {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #64748b;
  font-size: 1rem;
  flex-wrap: wrap;
}

.rating-stars {
  display: flex;
  gap: 4px;
}

.star {
  color: #fbbf24;
  font-size: 18px;
}

.divider {
  width: 2px;
  height: 20px;
  background: #e2e8f0;
}

.trust-text {
  font-weight: 500;
  color: #475569;
}

.trust-text strong {
  color: #0f172a;
  font-weight: 700;
}

.hero-visual {
  opacity: 0;
  animation: slideInRight 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) 0.4s forwards;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.visual-wrapper {
  height: 560px;
}

.abstract-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.abstract-shape {
  position: absolute;
  opacity: 0.1;
}

.shape-1 {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea, #764ba2);
  top: -40px;
  right: -40px;
  animation: rotateShape 35s linear infinite;
}

.shape-2 {
  width: 140px;
  height: 140px;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  background: linear-gradient(135deg, #764ba2, #667eea);
  bottom: -30px;
  left: -30px;
  animation: rotateShape 30s linear infinite reverse;
}

@keyframes rotateShape {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

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

.main-illustration {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 450px;
  height: 300px;
  background: white;
  border-radius: 24px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  animation: floatMain 7s infinite ease-in-out;
  z-index: 2;
}

@keyframes floatMain {
  0%, 100% { transform: translate(-50%, -50%) translateY(0px) rotate(0deg); }
  50% { transform: translate(-50%, -50%) translateY(-25px) rotate(1deg); }
}

.illustration-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  height: 70px;
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.window-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
}

.illustration-body {
  padding: 28px;
}

.mock-line {
  height: 14px;
  background: linear-gradient(90deg, #f1f5f9 0%, #e2e8f0 100%);
  border-radius: 8px;
  margin-bottom: 14px;
  animation: shimmerEffect 2.5s infinite;
}

@keyframes shimmerEffect {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

.mock-line:nth-child(1) { width: 85%; animation-delay: 0s; }
.mock-line:nth-child(2) { width: 65%; animation-delay: 0.3s; }
.mock-line:nth-child(3) { width: 75%; animation-delay: 0.6s; }
.mock-line:nth-child(4) { width: 55%; animation-delay: 0.9s; }

.floating-icon {
  position: absolute;
  background: white;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
  animation: floatIcon 4.5s infinite ease-in-out;
}

.floating-icon:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.icon-1 {
  top: 3%;
  left: -2%;
  animation-delay: 0s;
}

.icon-2 {
  top: 58%;
  right: -5%;
  animation-delay: 1.5s;
}

.icon-3 {
  bottom: 3%;
  left: 12%;
  animation-delay: 3s;
}

@keyframes floatIcon {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-28px) rotate(3deg); }
}

.icon-svg {
  width: 48px;
  height: 48px;
  display: block;
}

.scroll-down {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) 1.3s forwards;
  transition: all 0.3s ease;
}

.scroll-down:hover {
  transform: translateX(-50%) translateY(-8px);
}

.scroll-mouse {
  width: 30px;
  height: 50px;
  border: 2.5px solid #667eea;
  border-radius: 25px;
  position: relative;
  margin: 0 auto 10px;
}

.mouse-wheel {
  width: 5px;
  height: 10px;
  background: #667eea;
  border-radius: 5px;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  animation: wheelScroll 2.2s infinite;
}

@keyframes wheelScroll {
  0% { top: 10px; opacity: 1; }
  100% { top: 28px; opacity: 0; }
}

.scroll-label {
  color: #667eea;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding-top: 90px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 60px;
    margin-top: 0;
    overflow: visible !important;
    min-height: auto;
    align-items: flex-start !important;
    display: flex !important;
  }
  
  .hero-section .container {
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
  }
  
  .hero-grid {
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
    align-items: flex-start !important;
  }
  
  /* Ensure hero section starts below fixed header */
  body {
    padding-top: 0;
  }
  
  /* Ensure hero content is visible on mobile */
  .hero-content {
    top: 22px;
    opacity: 1 !important;
    transform: translateX(0) !important;
    animation: none !important;
    position: relative;
    z-index: 1;
    width: 100%;
    overflow: visible !important;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.4 !important;
    margin-bottom: 24px;
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 1 !important;
    visibility: visible !important;
    overflow: visible !important;
    text-overflow: clip !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    max-width: 100% !important;
    min-height: auto !important;
    height: auto !important;
  }
  
  .hero-content h1 .gradient-text {
    display: inline !important;
    line-height: inherit !important;
    overflow: visible !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  /* Ensure container doesn't clip content */
  .hero-section .container {
    overflow: visible !important;
  }
  
  .hero-content p {
    font-size: 1.1rem;
    margin-bottom: 32px;
  }
  
  .cta-group {
    flex-direction: column;
    gap: 14px;
    margin-bottom: 40px;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
  
  .mini-highlights {
    flex-direction: column;
  }
  
  .highlight-badge {
    width: 100%;
    justify-content: center;
  }
  
  .trust-line {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .divider {
    display: none;
  }
  
  .visual-wrapper {
    height: 400px;
  }
  
  .main-illustration {
    width: 340px;
    height: 220px;
  }
  
  .icon-svg {
    width: 40px;
    height: 40px;
  }
  
  .floating-icon {
    padding: 16px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding-top: 85px;
    overflow: visible !important;
    align-items: flex-start !important;
    display: flex !important;
  }
  
  .hero-section .container {
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
  }
  
  .hero-grid {
    height: auto !important;
    min-height: auto !important;
    max-height: none !important;
    align-items: flex-start !important;
  }
  
  /* Ensure hero content is visible on small mobile */
  .hero-content {
    opacity: 1 !important;
    transform: translateX(0) !important;
    animation: none !important;
    overflow: visible !important;
  }
  
  .hero-content h1 {
    font-size: 2rem;
    line-height: 1.4 !important;
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 1 !important;
    visibility: visible !important;
    overflow: visible !important;
    text-overflow: clip !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    max-width: 100% !important;
    min-height: auto !important;
    height: auto !important;
  }
  
  .hero-content h1 .gradient-text {
    display: inline !important;
    line-height: inherit !important;
    overflow: visible !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  /* Ensure container doesn't clip content */
  .hero-section .container {
    overflow: visible !important;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .btn {
    padding: 16px 32px;
    font-size: 1rem;
  }
  
  .visual-wrapper {
    height: 350px;
  }
  
  .main-illustration {
    width: 290px;
    height: 190px;
  }
  
  .illustration-header {
    height: 55px;
    padding: 18px;
  }
  
  .window-dot {
    width: 11px;
    height: 11px;
  }
  
  .illustration-body {
    padding: 20px;
  }
  
  .mock-line {
    height: 11px;
    margin-bottom: 11px;
  }
  
  .icon-svg {
    width: 34px;
    height: 34px;
  }
  
  .floating-icon {
    padding: 14px;
  }
  
  .scroll-down {
    bottom: 35px;
  }
}

/* About Section Styles */
.about-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

:root[data-theme="dark"] .about-section {
  background: #18181C;
}

.about-section .container {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px;
}

:root[data-theme="dark"] .about-section .container {
  background: #1a1a24;
  border: 1px solid #2a2a35;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.about-content {
  opacity: 0;
  animation: fadeIn 0.8s ease 0.3s forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.section-label {
  display: inline-block;
  color: #667eea;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  position: relative;
  padding-left: 20px;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 2px;
  background: #667eea;
}

.about-heading {
  font-size: 42px;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 24px;
  line-height: 1.2;
}

:root[data-theme="dark"] .about-heading {
  color: #ffffff;
}

.about-text {
  font-size: 17px;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 32px;
}

:root[data-theme="dark"] .about-text {
  color: #b4b6c0;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-decoration: none;
  border-radius: 14px;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
  position: relative;
  overflow: hidden;
}

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

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

.cta-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
}

.arrow {
  transition: transform 0.3s ease;
}

.cta-button:hover .arrow {
  transform: translateX(5px);
}

.about-visual {
  position: relative;
  opacity: 0;
  animation: slideInRight 0.8s ease 0.5s forwards;
}

.visual-wrapper {
  width: 100%;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
}

.hexagon-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  opacity: 0.1;
}

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

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

.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
}

.shape {
  position: absolute;
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.shape1 {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  top: 20%;
  left: 15%;
  opacity: 0.8;
  animation-delay: 0s;
  z-index: 1;
}

.shape2 {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #764ba2 0%, #f093fb 100%);
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.8;
  animation-delay: 1s;
  z-index: 1;
}

.shape3 {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #4facfe 100%);
  top: 20%;
  right: 15%;
  opacity: 0.8;
  animation-delay: 2s;
  z-index: 1;
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  z-index: 2;
}

.icon-box {
  background: white;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  animation: popIn 0.5s ease backwards;
}

.icon-box:nth-child(1) { animation-delay: 0.6s; }
.icon-box:nth-child(2) { animation-delay: 0.7s; }
.icon-box:nth-child(3) { animation-delay: 0.8s; }
.icon-box:nth-child(4) { animation-delay: 0.9s; }
.icon-box:nth-child(5) { animation-delay: 1s; }
.icon-box:nth-child(6) { animation-delay: 1.1s; }

@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.icon-box:hover {
  transform: translateY(-5px);
}

.icon-box svg {
  width: 32px;
  height: 32px;
  fill: #667eea;
  transition: fill 0.3s ease;
}

.icon-box:hover svg {
  fill: #764ba2;
}

/* Responsive Design for About Section */
@media (max-width: 1024px) {
  .about-section .container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .about-visual {
    order: -1;
  }
}

@media (max-width: 768px) {
  .about-section .container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 30px;
  }
  
  .about-heading {
    font-size: 32px;
  }
  
  .about-text {
    font-size: 16px;
  }
  
  .visual-wrapper {
    height: 300px;
  }
  
  .icon-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .about-heading {
    font-size: 28px;
  }
  
  .about-text {
    font-size: 16px;
  }
  
  .cta-button {
    padding: 14px 28px;
    font-size: 15px;
  }
  
  .icon-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .icon-box {
    width: 60px;
    height: 60px;
  }
  
  .icon-box svg {
    width: 24px;
    height: 24px;
  }
}

/* Services Section Styles */
.services-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}

:root[data-theme="dark"] .services-section {
  background: #18181C;
}

.services-section .container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
}

.section-heading {
  text-align: center;
  margin-bottom: 60px;
  animation: fadeInUp 0.8s ease;
}

.section-label {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(102, 126, 234, 0.1);
  border-radius: 50px;
  color: #667eea;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  border: 1px solid rgba(102, 126, 234, 0.2);
  transition: all 0.3s ease;
}

:root[data-theme="dark"] .section-label {
  background: rgba(139, 92, 246, 0.15);
  color: #8b5cf6;
  border-color: rgba(139, 92, 246, 0.2);
}

.section-heading h2 {
  font-size: 48px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.1;
  margin-bottom: 10px;
  letter-spacing: -1px;
}

:root[data-theme="dark"] .section-heading h2 {
  color: #ffffff;
}

.section-heading h3 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 20px;
  color: #1a1a1a;
}

:root[data-theme="dark"] .section-heading h3 {
  color: #8b5cf6;
}

.section-heading p {
  font-size: 18px;
  color: #475569;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
  font-weight: 400;
}

:root[data-theme="dark"] .section-heading p {
  color: #b4b6c0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.service-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  text-decoration: none;
  color: #333;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  animation: fadeInUp 0.8s ease;
  animation-fill-mode: both;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

:root[data-theme="dark"] .service-card {
  background: rgba(26, 26, 36, 0.95);
  color: #e0e0e0;
  border-color: rgba(255, 255, 255, 0.1);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(102, 126, 234, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border-color: rgba(102, 126, 234, 0.5);
}

:root[data-theme="dark"] .service-card:hover {
  border-color: rgba(139, 92, 246, 0.5);
  box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
}

.service-icon {
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #fff;
  transition: all 0.4s ease;
  position: relative;
}

.service-card:hover .service-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
}

/* Service Icon Color Variants with Gradients */
.service-icon-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.service-icon-secondary {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  box-shadow: 0 10px 30px rgba(240, 147, 251, 0.4);
}

.service-icon-success {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  box-shadow: 0 10px 30px rgba(79, 172, 254, 0.4);
}

.service-icon-danger {
  background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
  box-shadow: 0 10px 30px rgba(250, 112, 154, 0.4);
}

.service-icon-warning {
  background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
  box-shadow: 0 10px 30px rgba(252, 182, 159, 0.4);
  color: #8b4513;
}

.service-icon-purple {
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
  box-shadow: 0 10px 30px rgba(168, 237, 234, 0.4);
  color: #6b21a8;
}

.service-icon svg {
  width: 40px;
  height: 40px;
  fill: #ffffff;
}

.service-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

:root[data-theme="dark"] .service-card h3 {
  color: #ffffff;
}

.service-card:hover h3 {
  color: #667eea;
}

:root[data-theme="dark"] .service-card:hover h3 {
  color: #8b5cf6;
}

.service-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 25px;
}

:root[data-theme="dark"] .service-card p {
  color: rgba(255, 255, 255, 0.7);
}

.cta-container {
  text-align: center;
  animation: fadeInUp 0.8s ease 0.7s both;
}

.cta-container .cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  background: #fff;
  color: #667eea;
  text-decoration: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 2px solid transparent;
}

.cta-container .cta-button:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.cta-container .cta-button .arrow {
  transition: transform 0.3s ease;
}

.cta-container .cta-button:hover .arrow {
  transform: translateX(5px);
}

/* Responsive Design for Services Section */
@media (max-width: 1024px) {
  .section-heading h2 {
    font-size: 2.5rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 80px 20px;
  }
  
  .section-heading {
    margin-bottom: 50px;
  }
  
  .section-heading h2 {
    font-size: 2.2rem;
  }
  
  .section-heading p {
    font-size: 1.05rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
  }
  
  .service-card {
    padding: 40px 32px;
  }
  
  .service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
  }
  
  .service-icon-wrapper {
    width: 2.5rem;
    height: 2.5rem;
  }
  
  .service-icon-wrapper i {
    font-size: 1.25rem;
  }
  
  .service-icon svg {
    width: 40px;
    height: 40px;
  }
  
  .service-card h3 {
    font-size: 1.5rem;
  }
  
  .service-card p {
    font-size: 1rem;
  }
  
  .cta-button {
    padding: 16px 36px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .section-heading h2 {
    font-size: 32px;
  }
  
  .section-heading h3 {
    font-size: 18px;
  }
  
  .section-heading p {
    font-size: 15px;
  }
  
  .service-card {
    padding: 28px 20px;
  }
  
  .service-icon-wrapper {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
  
  .service-card h3 {
    font-size: 18px;
  }
  
  .service-card p {
    font-size: 14px;
  }
}

/* Portfolio Section Styles */
.portfolio-section {
  padding: 120px 0;
  background: var(--background);
  min-height: 100vh;
  display: flex;
  align-items: center;
  transition: background 0.3s ease;
}

:root[data-theme="dark"] .portfolio-section {
  background: #1C1C20;
}

.portfolio-section .container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
}

/* Portfolio Card Styles */
.portfolio-card {
  background: var(--background-light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
  border: 1px solid var(--border-light);
}

:root[data-theme="dark"] .portfolio-card {
  background: #1a1a24;
  border: 1px solid #2a2a35;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.portfolio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

:root[data-theme="dark"] .portfolio-card:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* Portfolio card text colors */
.portfolio-card h3 {
  color: var(--text-heading);
}

.portfolio-card p {
  color: var(--text-body);
}

/* Portfolio technology tags */
.portfolio-card .tech-tag {
  background: var(--background-light) !important;
  color: var(--text-body) !important;
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

:root[data-theme="dark"] .portfolio-card .tech-tag {
  background: #334155 !important;
  color: #e2e8f0 !important;
  border-color: #475569;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 40px;
  margin-bottom: 80px;
}

.project-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.05);
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

:root[data-theme="dark"] .project-card {
  background: #1a1a24;
  border: 1px solid #2a2a35;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.project-card:nth-child(1) { animation-delay: 0.1s; }
.project-card:nth-child(2) { animation-delay: 0.2s; }
.project-card:nth-child(3) { animation-delay: 0.3s; }
.project-card:nth-child(4) { animation-delay: 0.4s; }
.project-card:nth-child(5) { animation-delay: 0.5s; }
.project-card:nth-child(6) { animation-delay: 0.6s; }

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.project-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.project-card:hover .project-image img {
  transform: scale(1.08);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.95) 0%, rgba(118, 75, 162, 0.95) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.project-card:hover .image-overlay {
  opacity: 1;
}

.overlay-icon {
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.8);
  transition: transform 0.3s ease 0.1s;
}

.project-card:hover .overlay-icon {
  transform: scale(1);
}

.overlay-icon svg {
  width: 28px;
  height: 28px;
  fill: #667eea;
}

.placeholder-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 700;
  color: rgba(102, 126, 234, 0.2);
  position: relative;
  overflow: hidden;
}

.placeholder-image::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(102, 126, 234, 0.03) 20px,
    rgba(102, 126, 234, 0.03) 40px
  );
  animation: slidePattern 20s linear infinite;
}

@keyframes slidePattern {
  from {
    transform: translate(-50%, -50%);
  }
  to {
    transform: translate(0, 0);
  }
}

.project-content {
  padding: 32px 28px;
}

.project-category {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: #667eea;
  background: rgba(102, 126, 234, 0.1);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.project-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
  transition: color 0.3s ease;
}

:root[data-theme="dark"] .project-content h3 {
  color: #ffffff;
}

.project-card:hover .project-content h3 {
  color: #667eea;
}

.project-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #475569;
  font-weight: 400;
}

:root[data-theme="dark"] .project-content p {
  color: #b4b6c0;
}

/* Responsive Design for Portfolio Section */
@media (max-width: 1024px) {
  .section-heading h2 {
    font-size: 2.5rem;
  }
  
  .portfolio-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .portfolio-section {
    padding: 40px 20px 80px;
  }
  
  .section-heading {
    margin-bottom: 50px;
  }
  
  .section-heading h2 {
    font-size: 2.2rem;
  }
  
  .section-heading p {
    font-size: 1.05rem;
  }
  
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
  }
  
  .project-image {
    height: 240px;
  }
  
  .project-content {
    padding: 28px 24px;
  }
  
  .project-content h3 {
    font-size: 1.3rem;
  }
  
  .cta-button {
    padding: 16px 36px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .section-heading h2 {
    font-size: 1.9rem;
  }
  
  .section-heading p {
    font-size: 1rem;
  }
  
  .project-image {
    height: 200px;
  }
  
  .project-content {
    padding: 24px 20px;
  }
  
  .project-content h3 {
    font-size: 1.2rem;
  }
}

/* Clients Section Styles */
.clients-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

:root[data-theme="dark"] .clients-section {
  background: #1C1C20;
}

.clients-section .container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 2rem 0;
}

.client-card {
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  background: white;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

:root[data-theme="dark"] .client-card {
  background: #1a1a24;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

.client-logo {
  margin-bottom: 1.5rem;
}

.logo-placeholder {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.5rem;
  margin: 0 auto;
  transition: transform 0.3s ease;
}

.client-card:hover .logo-placeholder {
  transform: scale(1.1);
}

.client-info {
  text-align: center;
}

.client-name {
  margin: 0.5rem 0;
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
}

:root[data-theme="dark"] .client-name {
  color: #ffffff;
}

.client-industry {
  color: #667eea;
  margin: 0.5rem 0;
  font-size: 1rem;
  font-weight: 600;
}

.client-description {
  color: #666;
  font-size: 0.95rem;
  margin-top: 1rem;
  line-height: 1.6;
}

:root[data-theme="dark"] .client-description {
  color: #b4b6c0;
}

.clients-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-top: 60px;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.5s;
}

.stat-item {
  text-align: center;
  padding: 30px 20px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

:root[data-theme="dark"] .stat-item {
  background: #1a1a24;
  border: 1px solid #2a2a35;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: #667eea;
  margin-bottom: 8px;
  line-height: 1;
}

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

:root[data-theme="dark"] .stat-label {
  color: #b4b6c0;
}

/* Responsive Design for Clients Section */
@media (max-width: 992px) {
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .clients-section {
    padding: 80px 20px;
  }
  
  .section-heading {
    margin-bottom: 50px;
  }
  
  .section-heading h2 {
    font-size: 2rem;
  }
  
  .section-heading p {
    font-size: 1.05rem;
  }
  
  .clients-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .client-card {
    padding: 2rem;
  }
  
  .clients-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
  }
  
  .stat-item {
    padding: 24px 16px;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .stat-label {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .section-heading h2 {
    font-size: 1.9rem;
  }
  
  .section-heading p {
    font-size: 1rem;
  }
  
  .client-card {
    padding: 28px 20px;
  }
  
  .logo-placeholder {
    width: 60px;
    height: 60px;
    font-size: 1.1rem;
  }
  
  .client-name {
    font-size: 1.2rem;
  }
  
  .client-description {
    font-size: 0.9rem;
  }
  
  .clients-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .stat-item {
    padding: 20px 16px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .stat-label {
    font-size: 0.85rem;
  }
}

/* Contact Section Styles */
/* Contact Hero Section */
.contact-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 120px 20px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.contact-hero .hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  animation: fadeInUp 0.8s ease;
  opacity: 1 !important;
}

.contact-hero .hero-label {
  display: inline-block;
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.contact-hero .hero-title {
  font-size: 56px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.contact-hero .hero-description {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

/* Main Contact Section */
.contact-section {
  max-width: 1200px;
  margin: -60px auto 80px;
  padding: 0 20px;
  position: relative;
  z-index: 10;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* Contact Form */
.form-container {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  animation: fadeInLeft 0.8s ease;
}

:root[data-theme="dark"] .form-container {
  background: #1a1a24;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 12px;
}

:root[data-theme="dark"] .section-title {
  color: #ffffff;
}

.section-description {
  font-size: 16px;
  color: #64748b;
  margin-bottom: 32px;
}

:root[data-theme="dark"] .section-description {
  color: #94a3b8;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #334155;
  margin-bottom: 8px;
}

:root[data-theme="dark"] .form-label {
  color: #cbd5e1;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 15px;
  transition: all 0.3s ease;
  background: #f8fafc;
  font-family: inherit;
}

:root[data-theme="dark"] .form-input,
:root[data-theme="dark"] .form-textarea {
  background: #2a2a35;
  border-color: #3a3a45;
  color: #ffffff;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #667eea;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

:root[data-theme="dark"] .form-input:focus,
:root[data-theme="dark"] .form-textarea:focus {
  background: #1a1a24;
  border-color: #8b5cf6;
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.2);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.submit-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
  position: relative;
  overflow: hidden;
}

.submit-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.submit-btn:active:not(:disabled) {
  transform: translateY(0) scale(0.98);
}

.submit-btn:disabled {
  cursor: not-allowed;
  opacity: 0.8;
}

/* Button click animation */
.btn-click-animation {
  animation: btnPulse 0.3s ease;
}

@keyframes btnPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}

/* Button loading state */
.btn-loading {
  position: relative;
  pointer-events: none;
}

.btn-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-right: 8px;
  vertical-align: middle;
}

/* Form message styles */
.form-message {
  padding: 16px 20px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  animation: slideDown 0.4s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-message-loading {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(37, 99, 235, 0.1) 100%);
  color: #2563eb;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

:root[data-theme="dark"] .form-message-loading {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(37, 99, 235, 0.2) 100%);
  color: #60a5fa;
  border-color: rgba(59, 130, 246, 0.3);
}

.form-message-success {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(22, 163, 74, 0.1) 100%);
  color: #16a34a;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

:root[data-theme="dark"] .form-message-success {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(22, 163, 74, 0.2) 100%);
  color: #4ade80;
  border-color: rgba(34, 197, 94, 0.3);
}

.form-message-error {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(220, 38, 38, 0.1) 100%);
  color: #dc2626;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

:root[data-theme="dark"] .form-message-error {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(220, 38, 38, 0.2) 100%);
  color: #f87171;
  border-color: rgba(239, 68, 68, 0.3);
}

.message-spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(37, 99, 235, 0.2);
  border-top-color: #2563eb;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

:root[data-theme="dark"] .message-spinner {
  border-color: rgba(96, 165, 250, 0.2);
  border-top-color: #60a5fa;
}

.message-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-weight: bold;
  font-size: 14px;
  flex-shrink: 0;
}

.form-message-success .message-icon {
  background: rgba(34, 197, 94, 0.2);
  color: #16a34a;
  animation: iconPop 0.4s ease;
}

.form-message-error .message-icon {
  background: rgba(239, 68, 68, 0.2);
  color: #dc2626;
  animation: iconPop 0.4s ease;
}

@keyframes iconPop {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

/* Form success animation */
.form-success-animation {
  animation: formSuccess 0.6s ease;
}

@keyframes formSuccess {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}

/* Input focus animation */
.form-input:focus,
.form-textarea:focus {
  animation: inputFocus 0.3s ease;
}

@keyframes inputFocus {
  0% {
    box-shadow: 0 0 0 0 rgba(102, 126, 234, 0);
  }
  100% {
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
  }
}

/* Contact Info */
.info-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: fadeInRight 0.8s ease;
}

.info-header {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

:root[data-theme="dark"] .info-header {
  background: #1a1a24;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.info-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: all 0.3s ease;
}

:root[data-theme="dark"] .info-card {
  background: #1a1a24;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(102, 126, 234, 0.15);
}

.info-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  flex-shrink: 0;
}

.info-icon-purple {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.info-icon-blue {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.info-icon-pink {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.info-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 8px;
}

:root[data-theme="dark"] .info-content h4 {
  color: #ffffff;
}

.info-content p,
.info-content a {
  font-size: 15px;
  color: #64748b;
  line-height: 1.6;
  text-decoration: none;
}

:root[data-theme="dark"] .info-content p,
:root[data-theme="dark"] .info-content a {
  color: #94a3b8;
}

.info-content a:hover {
  color: #667eea;
}

:root[data-theme="dark"] .info-content a:hover {
  color: #8b5cf6;
}

/* Social Links */
.social-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
  border-radius: 20px;
  padding: 32px;
}

:root[data-theme="dark"] .social-section {
  background: linear-gradient(135deg, #1a1a24 0%, #2a2a35 100%);
}

.social-title {
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 20px;
}

:root[data-theme="dark"] .social-title {
  color: #ffffff;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #667eea;
  font-size: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

:root[data-theme="dark"] .social-link {
  background: #2a2a35;
  color: #8b5cf6;
}

.social-link:hover {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Map Section Styles */
.map-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
}

.map-container {
  background: #fff;
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  text-align: center;
}

:root[data-theme="dark"] .map-container {
  background: #1a1a24;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.map-title {
  font-size: 36px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 12px;
}

:root[data-theme="dark"] .map-title {
  color: #ffffff;
}

.map-description {
  font-size: 18px;
  color: #64748b;
  margin-bottom: 32px;
}

:root[data-theme="dark"] .map-description {
  color: #94a3b8;
}

.map-frame {
  width: 100%;
  height: 450px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  margin-bottom: 24px;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-address {
  font-size: 16px;
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 20px;
}

:root[data-theme="dark"] .map-address {
  color: #94a3b8;
}

.map-address strong {
  color: #1e293b;
}

:root[data-theme="dark"] .map-address strong {
  color: #ffffff;
}

.directions-btn {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.directions-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

/* Contact CTA Section Styles */
.cta-section {
  max-width: 1200px;
  margin: 80px auto 100px;
  padding: 0 20px;
}

.cta-container {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 32px;
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-container::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  top: -100px;
  right: -100px;
  animation: float 6s ease-in-out infinite;
}

.cta-title {
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.cta-description {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.95);
  max-width: 700px;
  margin: 0 auto 32px;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.cta-btn {
  display: inline-block;
  padding: 18px 40px;
  background: #fff;
  color: #667eea;
  text-decoration: none;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 2;
}

.cta-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

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

/* Responsive Design for Contact Page */
@media (max-width: 968px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 42px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .cta-container {
    padding: 60px 40px;
  }

  .cta-title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 100px 20px 60px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-description {
    font-size: 18px;
  }

  .contact-section {
    margin-top: -40px;
  }

  .form-container,
  .info-header,
  .map-container {
    padding: 32px 24px;
  }

  .section-title,
  .map-title {
    font-size: 28px;
  }

  .social-links {
    flex-wrap: wrap;
  }

  .cta-container {
    padding: 50px 30px;
  }

  .cta-title {
    font-size: 32px;
  }

  .cta-description {
    font-size: 18px;
  }

  .map-frame {
    height: 350px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }

  .form-container,
  .info-header {
    padding: 24px 20px;
  }

  .info-card {
    padding: 20px;
  }

  .map-container {
    padding: 24px 20px;
  }

  .map-title {
    font-size: 24px;
  }

  .map-frame {
    height: 300px;
  }

  .cta-container {
    padding: 40px 24px;
  }

  .cta-title {
    font-size: 28px;
  }
}

:root[data-theme="dark"] .icon-box {
  background: #2a2a35;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

:root[data-theme="dark"] .icon-box svg {
  fill: #667eea;
}

:root[data-theme="dark"] .icon-label {
  color: #e8e9ed;
}

:root[data-theme="dark"] .float-shape {
  background: rgba(102, 126, 234, 0.1);
}

.contact-section .container {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
  padding: 80px 60px;
}

:root[data-theme="dark"] .contact-section .container {
  background: #1a1a24;
  border: 1px solid #2a2a35;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.contact-content {
  opacity: 0;
  animation: fadeIn 0.8s ease 0.3s forwards;
}

.contact-content .section-label {
  margin-bottom: 16px;
}

.contact-content h2 {
  font-size: 3.5rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

:root[data-theme="dark"] .contact-content h2 {
  color: #ffffff;
}

.contact-content p {
  font-size: 1.25rem;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 32px;
  font-weight: 400;
}

:root[data-theme="dark"] .contact-content p {
  color: #b4b6c0;
}

.contact-content .cta-button {
  margin-bottom: 48px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #475569;
  font-size: 0.98rem;
  transition: all 0.3s ease;
}

.info-item:hover {
  color: #667eea;
  transform: translateX(4px);
}

.info-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.info-item:hover .info-icon {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  transform: rotate(5deg);
}

.info-icon svg {
  width: 20px;
  height: 20px;
  fill: white;
  transition: fill 0.3s ease;
}

.info-item:hover .info-icon svg {
  fill: white;
}

.info-text {
  font-weight: 500;
}

.info-text a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-text a:hover {
  color: #667eea;
}

.contact-visual {
  position: relative;
  opacity: 0;
  animation: slideInRight 0.8s ease 0.5s forwards;
}

.visual-wrapper {
  width: 100%;
  height: 450px;
  border-radius: 16px;
  overflow: hidden;
}

.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
}

.float-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  animation: floatShape 8s ease-in-out infinite;
}

.shape1 {
  width: 120px;
  height: 120px;
  background: white;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.shape2 {
  width: 80px;
  height: 80px;
  background: white;
  bottom: 15%;
  right: 15%;
  animation-delay: 2s;
}

.shape3 {
  width: 60px;
  height: 60px;
  background: white;
  top: 50%;
  right: 10%;
  animation-delay: 4s;
}

.icon-grid {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 70%;
}

.icon-box {
  background: white;
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  animation: popIn 0.5s ease backwards;
}

.icon-box:nth-child(1) { animation-delay: 0.6s; }
.icon-box:nth-child(2) { animation-delay: 0.7s; }
.icon-box:nth-child(3) { animation-delay: 0.8s; }
.icon-box:nth-child(4) { animation-delay: 0.9s; }

.icon-box:hover {
  transform: translateY(-8px);
}

.icon-box svg {
  width: 36px;
  height: 36px;
  fill: #667eea;
}

.icon-label {
  font-size: 13px;
  font-weight: 600;
  color: #0f172a;
  text-align: center;
}

/* Responsive Design for Contact Section */
@media (max-width: 1024px) {
  .contact-content h2 {
    font-size: 2.5rem;
  }

  .visual-wrapper {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 60px 20px;
  }

  .contact-section .container {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 50px 35px;
  }

  .contact-content h2 {
    font-size: 2.2rem;
  }

  .contact-content p {
    font-size: 1.05rem;
    margin-bottom: 32px;
  }

  .contact-content .cta-button {
    width: 100%;
    justify-content: center;
    margin-bottom: 40px;
  }

  .visual-wrapper {
    height: 350px;
  }

  .icon-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    width: 80%;
  }

  .icon-box {
    padding: 22px;
  }

  .icon-box svg {
    width: 30px;
    height: 30px;
  }

  .icon-label {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .contact-section .container {
    padding: 40px 28px;
  }

  .contact-content h2 {
    font-size: 1.9rem;
  }

  .contact-content p {
    font-size: 1rem;
  }

  .cta-button {
    padding: 16px 36px;
    font-size: 1rem;
  }

  .info-item {
    font-size: 0.9rem;
  }

  .info-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }

  .visual-wrapper {
    height: 300px;
  }

  .icon-box {
    padding: 18px;
  }

  .icon-box svg {
    width: 26px;
    height: 26px;
  }

  .icon-label {
    font-size: 10px;
    line-height: 1.2;
    text-align: center;
  }

  .icon-grid {
    gap: 10px;
    width: 90%;
  }
}

/* Extra small screens */
@media (max-width: 360px) {
  .contact-section .container {
    padding: 30px 20px;
  }

  .contact-content h2 {
    font-size: 1.6rem;
  }

  .visual-wrapper {
    height: 280px;
  }

  .icon-grid {
    gap: 8px;
    width: 95%;
  }

  .icon-box {
    padding: 14px 8px;
  }

  .icon-box svg {
    width: 22px;
    height: 22px;
  }

  .icon-label {
    font-size: 9px;
    line-height: 1.1;
  }

  .info-item {
    font-size: 0.85rem;
    gap: 10px;
  }

  .info-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
  }

  .info-icon svg {
    width: 14px;
    height: 14px;
  }
}

/* Legacy Navbar Classes for Standalone HTML Compatibility */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

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

.nav-item {
  position: relative;
}

.nav-link {
  text-decoration: none;
  color: #374151;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
  color: #667eea;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  transition: width 0.3s ease;
}

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

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 4px;
}

.mobile-toggle span {
  width: 25px;
  height: 3px;
  background: #374151;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.cta-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.5rem;
  color: #1f2937;
}

.logo-image {
  height: 80px;
  width: auto;
  object-fit: contain;
  border-radius: 12px;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.mobile-logo-image {
  height: 48px;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
  display: block;
  flex-shrink: 0;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

/* Additional missing classes for standalone HTML compatibility */
.section-heading {
  text-align: center;
  margin-bottom: 4rem;
}

.section-label {
  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.cta-container {
  text-align: center;
  margin-top: 3rem;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.arrow {
  transition: transform 0.3s ease;
}

.cta-button:hover .arrow {
  transform: translateX(4px);
}

/* Trust container and highlights */
.trust-container {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mini-highlights {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.highlight-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(102, 126, 234, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #667eea;
}

.badge-icon {
  font-size: 1rem;
}

.trust-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.rating-stars {
  display: flex;
  gap: 2px;
}

.star {
  color: #fbbf24;
  font-size: 1.2rem;
}

.divider {
  width: 1px;
  height: 20px;
  background: #d1d5db;
}

.trust-text {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0;
}

/* Scroll down indicator */
.scroll-down {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.scroll-down:hover {
  transform: translateX(-50%) translateY(-4px);
}

.scroll-mouse {
  width: 24px;
  height: 40px;
  border: 2px solid #667eea;
  border-radius: 12px;
  position: relative;
  animation: scroll-bounce 2s infinite;
}

.mouse-wheel {
  width: 4px;
  height: 6px;
  background: #667eea;
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll-wheel 2s infinite;
}

.scroll-label {
  font-size: 0.75rem;
  color: #667eea;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

@keyframes scroll-wheel {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(12px);
  }
}

/* Contact info styles */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.info-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.info-text {
  color: #6b7280;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Footer additional classes */
.footer-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff !important;
  margin-bottom: 1.5rem;
}

.footer-description {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-bottom {
  border-top: 1px solid #e5e7eb;
  padding-top: 2rem;
  margin-top: 3rem;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.copyright {
  color: #6b7280;
  font-size: 0.875rem;
  margin: 0;
}

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

.footer-bottom-link {
  color: #6b7280;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-bottom-link:hover {
  color: #667eea;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.875rem;
}

/* Responsive design for navbar */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 12px 12px;
  }

  .nav-menu.active {
    display: flex;
  }

  .mobile-toggle {
    display: flex;
  }

  .nav-container {
    padding: 0 1rem;
  }
}

/* Page-specific Dark Mode Styles */

/* About Page Dark Mode */
:root[data-theme="dark"] .bg-gradient-hero {
  background: linear-gradient(135deg, #0a0a0f 0%, #12121a 100%);
}

:root[data-theme="dark"] .text-slate-900 {
  color: #ffffff;
}

:root[data-theme="dark"] .text-slate-600 {
  color: #b4b6c0;
}

:root[data-theme="dark"] .bg-white {
  background: #1a1a24;
  border: 1px solid #2a2a35;
}

:root[data-theme="dark"] .bg-slate-50 {
  background: #2a2a35;
}

:root[data-theme="dark"] .bg-slate-100 {
  background: #3a3a48;
}

:root[data-theme="dark"] .border-slate-200 {
  border-color: #2a2a35;
}

:root[data-theme="dark"] .hover\:bg-slate-100:hover {
  background: #3a3a48;
}

:root[data-theme="dark"] .hover\:bg-slate-50:hover {
  background: #2a2a35;
}

:root[data-theme="dark"] .text-slate-700 {
  color: #b4b6c0;
}

:root[data-theme="dark"] .bg-slate-200 {
  background: #3a3a48;
}

:root[data-theme="dark"] .text-slate-600 {
  color: #b4b6c0;
}

/* Form Dark Mode Styles */
:root[data-theme="dark"] input,
:root[data-theme="dark"] select,
:root[data-theme="dark"] textarea {
  background: #1a1a24;
  border-color: #2a2a35;
  color: #ffffff;
}

:root[data-theme="dark"] input::placeholder,
:root[data-theme="dark"] textarea::placeholder {
  color: #64748b;
}

:root[data-theme="dark"] input:focus,
:root[data-theme="dark"] select:focus,
:root[data-theme="dark"] textarea:focus {
  border-color: #667eea;
  background: #1a1a24;
}

/* Modal Dark Mode */
:root[data-theme="dark"] .fixed.inset-0.z-50 {
  background: rgba(0, 0, 0, 0.9);
}

:root[data-theme="dark"] .bg-white.rounded-3xl {
  background: #1a1a24;
  border: 1px solid #2a2a35;
}

/* Button Dark Mode */
:root[data-theme="dark"] .bg-slate-200 {
  background: #3a3a48;
}

:root[data-theme="dark"] .hover\:bg-slate-300:hover {
  background: #4a4a58;
}

/* Shadow Dark Mode */
:root[data-theme="dark"] .shadow-soft {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

:root[data-theme="dark"] .shadow-medium {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

:root[data-theme="dark"] .shadow-strong {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Gradient Backgrounds Dark Mode */
:root[data-theme="dark"] .bg-gradient-to-br {
  background: linear-gradient(to bottom right, #1a1a24, #2a2a35);
}

:root[data-theme="dark"] .from-slate-50 {
  --tw-gradient-from: #2a2a35;
}

:root[data-theme="dark"] .to-primary-50 {
  --tw-gradient-to: rgba(102, 126, 234, 0.1);
}

:root[data-theme="dark"] .from-slate-100 {
  --tw-gradient-from: #3a3a48;
}

:root[data-theme="dark"] .to-primary-50 {
  --tw-gradient-to: rgba(102, 126, 234, 0.1);
}

/* Text Colors Dark Mode */
:root[data-theme="dark"] .text-slate-400 {
  color: #64748b;
}

:root[data-theme="dark"] .text-slate-500 {
  color: #94a3b8;
}

/* Border Colors Dark Mode */
:root[data-theme="dark"] .border-slate-300 {
  border-color: #3a3a48;
}

/* Hover States Dark Mode */
:root[data-theme="dark"] .hover\:text-primary-500:hover {
  color: #667eea;
}

/* Focus States Dark Mode */
:root[data-theme="dark"] .focus\:border-primary-500:focus {
  border-color: #667eea;
}

:root[data-theme="dark"] .focus\:ring-primary-500\/10:focus {
  --tw-ring-color: rgba(102, 126, 234, 0.1);
}

/* Placeholder Dark Mode */
:root[data-theme="dark"] .placeholder-slate-400::placeholder {
  color: #64748b;
}

/* Background Colors Dark Mode */
:root[data-theme="dark"] .bg-primary-50 {
  background: rgba(102, 126, 234, 0.1);
}

/* Text Selection Dark Mode */
:root[data-theme="dark"] ::selection {
  background: rgba(102, 126, 234, 0.3);
  color: #ffffff;
}

/* Additional Dark Mode Utilities */
:root[data-theme="dark"] .bg-slate-200\/50 {
  background: rgba(58, 58, 72, 0.5);
}

:root[data-theme="dark"] .text-slate-800 {
  color: #e8e9ed;
}

:root[data-theme="dark"] .text-slate-700 {
  color: #b4b6c0;
}

:root[data-theme="dark"] .text-slate-500 {
  color: #94a3b8;
}

:root[data-theme="dark"] .text-slate-400 {
  color: #64748b;
}

/* Form Message Dark Mode */
:root[data-theme="dark"] .bg-green-50 {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.2);
}

:root[data-theme="dark"] .text-green-800 {
  color: #10b981;
}

:root[data-theme="dark"] .bg-red-50 {
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.2);
}

:root[data-theme="dark"] .text-red-800 {
  color: #ef4444;
}

/* Social Links Dark Mode */
:root[data-theme="dark"] .bg-white.rounded-xl {
  background: #1a1a24;
  border: 1px solid #2a2a35;
}

:root[data-theme="dark"] .hover\:bg-gradient-primary:hover {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Map Section Dark Mode */
:root[data-theme="dark"] .bg-white.rounded-3xl {
  background: #1a1a24;
  border: 1px solid #2a2a35;
}

/* Portfolio Filter Dark Mode */
:root[data-theme="dark"] .bg-white.rounded-2xl {
  background: #1a1a24;
  border: 1px solid #2a2a35;
}

/* Testimonial Dark Mode */
:root[data-theme="dark"] .bg-white.rounded-2xl {
  background: #1a1a24;
  border: 1px solid #2a2a35;
}

/* Timeline Dark Mode */
:root[data-theme="dark"] .timeline-line {
  background: #2a2a35;
}

:root[data-theme="dark"] .timeline-dot {
  border-color: #1a1a24;
  box-shadow: 0 0 0 4px #2a2a35;
}

/* Additional Timeline Classes */
.timeline-item {
  position: relative;
  padding: 2rem 0;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-content {
  flex: 1;
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  position: relative;
}

.timeline-content::before {
  content: '';
  position: absolute;
  top: 50%;
  width: 0;
  height: 0;
  border: 15px solid transparent;
}

.timeline-item:nth-child(odd) .timeline-content::before {
  right: -30px;
  border-left-color: white;
  transform: translateY(-50%);
}

.timeline-item:nth-child(even) .timeline-content::before {
  left: -30px;
  border-right-color: white;
  transform: translateY(-50%);
}

/* Custom Loader Animations */
@keyframes wave {
  0%, 100% {
    transform: scaleY(1);
  }
  50% {
    transform: scaleY(1.5);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200px 0;
  }
  100% {
    background-position: calc(200px + 100%) 0;
  }
}

.animate-wave {
  animation: wave 1s ease-in-out infinite;
}

.animate-shimmer {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200px 100%;
  animation: shimmer 1.5s infinite;
}

.dark .animate-shimmer {
  background: linear-gradient(90deg, #374151 25%, #4b5563 50%, #374151 75%);
  background-size: 200px 100%;
}

/* Smooth transitions for loader states */
.loader-transition {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Backdrop blur for page loader */
.backdrop-blur-loader {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Page Hero Section Styles */
.page-hero-section {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
  position: relative;
  overflow: visible;
  margin-top: 0;
  width: 100%;
}

:root[data-theme="dark"] .page-hero-section {
  background: linear-gradient(135deg, #0a0a0f 0%, #12121a 100%);
}

.page-hero-content {
  text-align: center;
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1rem;
  overflow: visible;
  width: 100%;
  box-sizing: border-box;
}

.page-hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
  overflow: visible;
  text-overflow: clip;
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
  display: block;
}

:root[data-theme="dark"] .page-hero-title {
  color: #ffffff;
}

.page-hero-title .gradient-text {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero-description {
  font-size: 1.25rem;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 2rem;
}

:root[data-theme="dark"] .page-hero-description {
  color: #b4b6c0;
}

/* Services Grid Styles */
.services-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .services-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-page-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card-modern {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f1f5f9;
  position: relative;
  overflow: hidden;
}

:root[data-theme="dark"] .service-card-modern {
  background: #1a1a24;
  border: 1px solid #2a2a35;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.service-card-modern:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  border-color: rgba(102, 126, 234, 0.3);
}

:root[data-theme="dark"] .service-card-modern:hover {
  border-color: rgba(102, 126, 234, 0.5);
}

.service-card-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.service-icon-wrapper {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}

.service-icon-wrapper svg {
  width: 1.5rem;
  height: 1.5rem;
}

.service-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0f172a;
  margin: 0;
}

:root[data-theme="dark"] .service-card-title {
  color: #ffffff;
}

.service-card-description {
  font-size: 1rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

:root[data-theme="dark"] .service-card-description {
  color: #b4b6c0;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  color: #667eea;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.service-card-link:hover {
  color: #5a67d8;
  transform: translateX(4px);
}

:root[data-theme="dark"] .service-card-link {
  color: #8b9aff;
}

:root[data-theme="dark"] .service-card-link:hover {
  color: #a5b4fc;
}

.service-card-link svg {
  width: 1rem;
  height: 1rem;
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

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

/* CTA Section Styles */
.cta-section {
  padding: 5rem 0;
  background: #f8fafc;
}

:root[data-theme="dark"] .cta-section {
  background: #0a0a0f;
}

.cta-section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  text-align: center;
}

:root[data-theme="dark"] .cta-section-title {
  color: #ffffff;
}

.cta-section-description {
  font-size: 1.25rem;
  color: #475569;
  margin-bottom: 2rem;
  text-align: center;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

:root[data-theme="dark"] .cta-section-description {
  color: #b4b6c0;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
}

.cta-button-primary {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.cta-button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.cta-button-primary svg {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.5rem;
}

.cta-button-secondary {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  background: white;
  color: #475569;
  border: 1px solid #cbd5e1;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

:root[data-theme="dark"] .cta-button-secondary {
  background: #1a1a24;
  color: #b4b6c0;
  border-color: #374151;
}

.cta-button-secondary:hover {
  background: #f8fafc;
  border-color: #667eea;
}

:root[data-theme="dark"] .cta-button-secondary:hover {
  background: #2a2a35;
  border-color: #667eea;
}

/* Portfolio Card Styles */
.portfolio-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .portfolio-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .portfolio-page-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.portfolio-card-modern {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
  opacity: 1;
  transform: scale(1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

:root[data-theme="dark"] .portfolio-card-modern {
  background: #1a1a24;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.portfolio-card-modern:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.portfolio-card-image {
  height: 12rem;
  min-height: 12rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.portfolio-card-image span {
  color: white;
  font-size: 2.25rem;
  font-weight: 700;
}

.portfolio-logo-image {
  background: #ffffff !important;
  border: 1px solid #e2e8f0;
  height: 12rem;
  min-height: 12rem;
  flex-shrink: 0;
}

:root[data-theme="dark"] .portfolio-logo-image {
  background: #f8fafc !important;
  border-color: #334155;
}

.portfolio-logo-image img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.portfolio-card-modern:hover .portfolio-logo-image img {
  transform: scale(1.05);
}

/* Logo Gallery Styles */
/* Removed .portfolio-logo-gallery grid-column to maintain consistent card sizes */

.logo-gallery-container {
  padding: 1rem 2rem;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  height: 12rem;
  min-height: 12rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
}

:root[data-theme="dark"] .logo-gallery-container {
  background: #f8fafc;
  border-bottom-color: #334155;
}

/* Logo Slider Styles */
.logo-slider-wrapper {
  position: relative;
}

.logo-slider-container {
  position: relative;
  min-height: 8rem;
  height: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-slide.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.logo-gallery-image {
  width: 100%;
  height: 8rem;
  max-height: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  padding: 1rem;
  transition: all 0.3s ease;
}

.clickable-logo {
  cursor: pointer;
}

.clickable-logo:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-color: #667eea;
}

.logo-gallery-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

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

.logo-counter {
  text-align: center;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: #667eea;
  font-weight: 600;
}

:root[data-theme="dark"] .logo-counter {
  color: #8b9aff;
}

.logo-click-hint {
  text-align: center;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.logo-click-hint i {
  color: #667eea;
}

:root[data-theme="dark"] .logo-click-hint {
  color: #94a3b8;
}

:root[data-theme="dark"] .logo-click-hint i {
  color: #8b9aff;
}

@media (max-width: 768px) {
  .logo-gallery-container {
    padding: 1.5rem;
    height: 12rem;
    min-height: 12rem;
  }
  
  .logo-slider-container {
    min-height: 8rem;
    height: 8rem;
  }
  
  .logo-gallery-image {
    height: 8rem;
    max-height: 8rem;
    padding: 1rem;
  }
  
  .logo-click-hint {
    font-size: 0.8rem;
  }
}

.portfolio-card-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.portfolio-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

:root[data-theme="dark"] .portfolio-card-title {
  color: #ffffff;
}

.portfolio-card-description {
  font-size: 1rem;
  color: #475569;
  margin-bottom: 1rem;
  line-height: 1.6;
}

:root[data-theme="dark"] .portfolio-card-description {
  color: #94a3b8;
}

.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.portfolio-tag {
  padding: 0.25rem 0.75rem;
  background: rgba(102, 126, 234, 0.1);
  color: #667eea;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
}

:root[data-theme="dark"] .portfolio-tag {
  background: rgba(102, 126, 234, 0.2);
  color: #8b9aff;
}

.portfolio-card-link {
  color: #667eea;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.portfolio-card-link:hover {
  color: #5a67d8;
}

:root[data-theme="dark"] .portfolio-card-link {
  color: #8b9aff;
}

:root[data-theme="dark"] .portfolio-card-link:hover {
  color: #a5b4fc;
}

/* Portfolio Filter Buttons */
.portfolio-filter {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.75rem 1.5rem;
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 50px;
  color: #475569;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.filter-btn:hover {
  border-color: #667eea;
  color: #667eea;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
}

.filter-btn.active {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-color: transparent;
  color: white;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.filter-btn.active:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

:root[data-theme="dark"] .filter-btn {
  background: #1a1a24;
  border-color: #2a2a35;
  color: #b4b6c0;
}

:root[data-theme="dark"] .filter-btn:hover {
  border-color: #667eea;
  color: #667eea;
  background: #1a1a24;
}

:root[data-theme="dark"] .filter-btn.active {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

@media (max-width: 768px) {
  .portfolio-filter {
    gap: 0.75rem;
    margin-bottom: 2rem;
  }
  
  .filter-btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.9rem;
  }
}

/* About Page Specific Styles */
.about-hero-section {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
  position: relative;
  overflow: hidden;
  margin-top: 0;
}

:root[data-theme="dark"] .about-hero-section {
  background: #1C1C20;
}

.about-hero-content {
  max-width: 80rem;
  margin: 0 auto;
  padding: 40px 1.25rem 0;
  text-align: center;
  position: relative;
  z-index: 10;
}

.about-hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

@media (min-width: 1024px) {
  .about-hero-title {
    font-size: 3.75rem;
  }
}

:root[data-theme="dark"] .about-hero-title {
  color: #ffffff;
}

.about-hero-title .gradient-text {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-hero-description {
  font-size: 1.25rem;
  color: #475569;
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.625;
}

:root[data-theme="dark"] .about-hero-description {
  color: #94a3b8;
}

.about-content-section {
  padding: 6rem 0;
  background: white;
}

:root[data-theme="dark"] .about-content-section {
  background: #18181C;
}

.about-content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-content-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

.about-content-text {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.about-content-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

@media (min-width: 1024px) {
  .about-content-title {
    font-size: 3rem;
  }
}

:root[data-theme="dark"] .about-content-title {
  color: #ffffff;
}

.about-content-paragraph {
  font-size: 1.125rem;
  color: #475569;
  margin-bottom: 1.25rem;
  line-height: 1.625;
}

:root[data-theme="dark"] .about-content-paragraph {
  color: #94a3b8;
}

.about-content-list {
  list-style: disc;
  list-style-position: inside;
  font-size: 1.125rem;
  color: #475569;
  margin-bottom: 1.25rem;
  line-height: 1.625;
}

:root[data-theme="dark"] .about-content-list {
  color: #94a3b8;
}

.about-content-list li {
  margin-bottom: 0.25rem;
}

.about-content-list .font-semibold {
  font-weight: 600;
}

.about-visual-box {
  position: relative;
  height: 24rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  overflow: hidden;
}

.about-visual-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  animation: float-shape 8s ease-in-out infinite;
}

.about-visual-shape.shape-1 {
  width: 6rem;
  height: 6rem;
  top: 25%;
  left: 25%;
}

.about-visual-shape.shape-2 {
  width: 4rem;
  height: 4rem;
  bottom: 25%;
  right: 25%;
  animation-delay: 2s;
}

.about-visual-shape.shape-3 {
  width: 3rem;
  height: 3rem;
  top: 50%;
  right: 25%;
  animation-delay: 4s;
}

.about-video-container {
  position: relative;
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background: #000;
}

.about-video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}

.about-video-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.about-video-element {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1023px) {
  .about-video-container {
    margin-top: 2rem;
  }
}

.mission-vision-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
}

:root[data-theme="dark"] .mission-vision-section {
  background: #1C1C20;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 768px) {
  .mission-vision-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.mission-vision-card {
  background: white;
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

:root[data-theme="dark"] .mission-vision-card {
  background: #1a1a24;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.mission-vision-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

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

.mission-vision-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

:root[data-theme="dark"] .mission-vision-card:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.mission-vision-icon {
  width: 4rem;
  height: 4rem;
  background: rgba(102, 126, 234, 0.1);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
  transition: all 0.3s ease;
}

.mission-vision-card:hover .mission-vision-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.mission-vision-icon i {
  font-size: 2rem;
  color: #667eea;
  transition: color 0.3s ease;
}

.mission-vision-icon svg {
  width: 2rem;
  height: 2rem;
  color: #667eea;
  transition: color 0.3s ease;
}

.mission-vision-card:hover .mission-vision-icon i {
  color: white;
}

.mission-vision-card:hover .mission-vision-icon svg {
  color: white;
}

.mission-vision-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

:root[data-theme="dark"] .mission-vision-card-title {
  color: #ffffff;
}

.mission-vision-card-text {
  font-size: 1.125rem;
  color: #475569;
  line-height: 1.625;
}

:root[data-theme="dark"] .mission-vision-card-text {
  color: #94a3b8;
}

.founder-section {
  padding: 6rem 0;
  background: white;
}

:root[data-theme="dark"] .founder-section {
  background: #1C1C20;
}

.founder-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.25rem;
}

.founder-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

@media (min-width: 1024px) {
  .founder-title {
    font-size: 3rem;
  }
}

:root[data-theme="dark"] .founder-title {
  color: #ffffff;
}

.founder-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.founder-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

:root[data-theme="dark"] .founder-card {
  background: #1a1a24;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.founder-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.founder-avatar {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 2.5rem;
  font-weight: 700;
}

.founder-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

:root[data-theme="dark"] .founder-name {
  color: #ffffff;
}

.founder-role {
  font-size: 1rem;
  color: #667eea;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.founder-bio {
  font-size: 1rem;
  color: #475569;
  line-height: 1.6;
}

:root[data-theme="dark"] .founder-bio {
  color: #94a3b8;
}

/* Technologies Section */
.technologies-section {
  padding: 80px 0;
  background: #0a0a0a;
  position: relative;
  overflow-x: hidden;
}

.technologies-section::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 80% 50%, rgba(118, 75, 162, 0.15) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

:root[data-theme="dark"] .technologies-section {
  background: #0a0a0a;
}

:root[data-theme="light"] .technologies-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
}

:root[data-theme="light"] .technologies-section::before {
  display: none;
}

.technologies-header {
  text-align: center;
  margin-bottom: 70px;
  animation: fadeInUp 0.8s ease;
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.technologies-section .section-label {
  display: inline-block;
  padding: 10px 24px;
  background: rgba(102, 126, 234, 0.1);
  border: 1px solid rgba(102, 126, 234, 0.3);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  color: #667eea;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.technologies-section .section-label:hover {
  background: rgba(102, 126, 234, 0.2);
  transform: translateY(-2px);
}

:root[data-theme="light"] .technologies-section .section-label {
  background: rgba(102, 126, 234, 0.1);
  color: #667eea;
}

.technologies-title {
  font-size: 56px;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  line-height: 1.2;
}

:root[data-theme="light"] .technologies-title {
  background: linear-gradient(135deg, #0f172a 0%, #475569 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.technologies-description {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

:root[data-theme="light"] .technologies-description {
  color: #475569;
}

.technologies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  perspective: 1000px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.technology-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  animation: fadeInScale 0.6s ease;
  animation-fill-mode: both;
  min-height: 140px;
}

.technology-card:nth-child(1) { animation-delay: 0.05s; }
.technology-card:nth-child(2) { animation-delay: 0.1s; }
.technology-card:nth-child(3) { animation-delay: 0.15s; }
.technology-card:nth-child(4) { animation-delay: 0.2s; }
.technology-card:nth-child(5) { animation-delay: 0.25s; }
.technology-card:nth-child(6) { animation-delay: 0.3s; }
.technology-card:nth-child(7) { animation-delay: 0.35s; }
.technology-card:nth-child(8) { animation-delay: 0.4s; }
.technology-card:nth-child(9) { animation-delay: 0.45s; }
.technology-card:nth-child(10) { animation-delay: 0.5s; }

.technology-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(102, 126, 234, 0.2) 0%, 
    rgba(118, 75, 162, 0.2) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.technology-card::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(102, 126, 234, 0.4) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: all 0.6s ease;
  border-radius: 50%;
}

:root[data-theme="light"] .technology-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(102, 126, 234, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.technology-card:hover {
  transform: translateY(-8px) scale(1.02);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(102, 126, 234, 0.5);
  box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3),
              0 0 40px rgba(102, 126, 234, 0.2);
}

:root[data-theme="light"] .technology-card:hover {
  background: rgba(255, 255, 255, 1);
  border-color: rgba(102, 126, 234, 0.5);
  box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
}

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

.technology-card:hover::after {
  width: 300px;
  height: 300px;
}

.technology-name {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
  text-align: center;
}

:root[data-theme="light"] .technology-name {
  color: #0f172a;
}

.technology-card:hover .technology-name {
  transform: scale(1.1);
  text-shadow: 0 0 20px rgba(102, 126, 234, 0.5);
}

/* Specific technology colors */
.technology-card:nth-child(1):hover { border-color: rgba(97, 218, 251, 0.6); }
.technology-card:nth-child(1):hover .technology-name { color: #61dafb; }

.technology-card:nth-child(2):hover { border-color: rgba(255, 255, 255, 0.6); }
.technology-card:nth-child(2):hover .technology-name { color: #ffffff; }
:root[data-theme="light"] .technology-card:nth-child(2):hover .technology-name { color: #000000; }

.technology-card:nth-child(3):hover { border-color: rgba(9, 179, 94, 0.6); }
.technology-card:nth-child(3):hover .technology-name { color: #09b35e; }

.technology-card:nth-child(4):hover { border-color: rgba(255, 212, 59, 0.6); }
.technology-card:nth-child(4):hover .technology-name { color: #ffd43b; }

.technology-card:nth-child(5):hover { border-color: rgba(104, 160, 99, 0.6); }
.technology-card:nth-child(5):hover .technology-name { color: #68a063; }

.technology-card:nth-child(6):hover { border-color: rgba(49, 120, 198, 0.6); }
.technology-card:nth-child(6):hover .technology-name { color: #3178c6; }

.technology-card:nth-child(7):hover { border-color: rgba(56, 189, 248, 0.6); }
.technology-card:nth-child(7):hover .technology-name { color: #38bdf8; }

.technology-card:nth-child(8):hover { border-color: rgba(0, 117, 143, 0.6); }
.technology-card:nth-child(8):hover .technology-name { color: #00758f; }

.technology-card:nth-child(9):hover { border-color: rgba(242, 78, 30, 0.6); }
.technology-card:nth-child(9):hover .technology-name { color: #f24e1e; }

.technology-card:nth-child(10):hover { border-color: rgba(240, 80, 50, 0.6); }
.technology-card:nth-child(10):hover .technology-name { color: #f05032; }

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive Design for Technologies Section */
@media (max-width: 768px) {
  .technologies-section {
    padding: 60px 0;
  }

  .technologies-title {
    font-size: 40px;
  }

  .technologies-description {
    font-size: 18px;
  }

  .technologies-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
  }

  .technology-card {
    padding: 30px 20px;
    min-height: 120px;
  }

  .technology-name {
    font-size: 20px;
  }
}

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

  .technologies-title {
    font-size: 32px;
  }

  .technology-name {
    font-size: 18px;
  }
}

/* Milestones Section */
.milestones-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #7e22ce 100%);
  position: relative;
  overflow-x: hidden;
}

.milestones-section::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 20%),
    radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 20%);
  pointer-events: none;
  z-index: 0;
}

:root[data-theme="dark"] .milestones-section {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #7e22ce 100%);
}

:root[data-theme="light"] .milestones-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
}

:root[data-theme="light"] .milestones-section::before {
  display: none;
}

.milestones-header {
  text-align: center;
  margin-bottom: 80px;
  animation: fadeInUp 0.8s ease;
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.milestones-section .section-label {
  display: inline-block;
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.milestones-section .section-label:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

:root[data-theme="light"] .milestones-section .section-label {
  background: rgba(102, 126, 234, 0.1);
  color: #667eea;
  border-color: rgba(102, 126, 234, 0.3);
}

.milestones-title {
  font-size: 56px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

:root[data-theme="light"] .milestones-title {
  color: #0f172a;
  text-shadow: none;
}

.milestones-description {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

:root[data-theme="light"] .milestones-description {
  color: #475569;
}

.milestones-timeline {
  position: relative;
  padding: 40px 0;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  z-index: 1;
}

/* Central timeline line */
.milestones-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, 
    rgba(255, 255, 255, 0.2) 0%, 
    rgba(255, 255, 255, 0.5) 50%, 
    rgba(255, 255, 255, 0.2) 100%);
  transform: translateX(-50%);
  border-radius: 2px;
}

:root[data-theme="light"] .milestones-timeline::before {
  background: linear-gradient(180deg, 
    rgba(102, 126, 234, 0.2) 0%, 
    rgba(102, 126, 234, 0.5) 50%, 
    rgba(102, 126, 234, 0.2) 100%);
}

.milestone-timeline-item {
  position: relative;
  width: calc(50% - 60px);
  margin-bottom: 60px;
  animation: fadeInSlide 0.8s ease;
  animation-fill-mode: both;
}

.milestone-timeline-item:nth-child(1) { animation-delay: 0.2s; }
.milestone-timeline-item:nth-child(2) { animation-delay: 0.4s; }
.milestone-timeline-item:nth-child(3) { animation-delay: 0.6s; }

/* Alternate left and right */
.milestone-timeline-item:nth-child(odd) {
  margin-left: 0;
  margin-right: auto;
  padding-right: 40px;
}

.milestone-timeline-item:nth-child(even) {
  margin-left: auto;
  margin-right: 0;
  padding-left: 40px;
}

/* Timeline dot */
.milestone-timeline-item::before {
  content: '';
  position: absolute;
  top: 30px;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: 4px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.3),
              0 0 20px rgba(102, 126, 234, 0.5);
  z-index: 2;
}

.milestone-timeline-item:nth-child(odd)::before {
  right: -50px;
}

.milestone-timeline-item:nth-child(even)::before {
  left: -50px;
}

.milestone-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

:root[data-theme="light"] .milestone-card {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(102, 126, 234, 0.2);
}

.milestone-timeline-item:hover .milestone-card {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(102, 126, 234, 0.4);
  border-color: rgba(102, 126, 234, 0.5);
}

/* Glow effect on hover */
.milestone-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 20px;
}

.milestone-timeline-item:hover .milestone-card::before {
  opacity: 1;
}

.milestone-timeline-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  background: transparent !important;
  padding: 0 !important;
  box-shadow: none !important;
  border: none !important;
}

.milestone-emoji {
  font-size: 48px;
  line-height: 1;
  transition: transform 0.3s ease;
}

.milestone-timeline-item:hover .milestone-emoji {
  transform: scale(1.2) rotate(10deg);
}

.milestone-year {
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.milestone-timeline-title {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
  background: transparent !important;
  padding: 0 !important;
  box-shadow: none !important;
  border: none !important;
  border-radius: 0 !important;
}

.milestone-timeline-text {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  background: transparent !important;
  padding: 0 !important;
  box-shadow: none !important;
  border: none !important;
  border-radius: 0 !important;
  margin: 0;
}

@keyframes fadeInSlide {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.milestone-timeline-item:nth-child(even) {
  animation-name: fadeInSlideRight;
}

@keyframes fadeInSlideRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Design for Milestones Section */
@media (max-width: 968px) {
  .milestones-timeline::before {
    left: 30px;
  }

  .milestone-timeline-item,
  .milestone-timeline-item:nth-child(odd),
  .milestone-timeline-item:nth-child(even) {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 80px;
    padding-right: 0;
  }

  .milestone-timeline-item::before,
  .milestone-timeline-item:nth-child(odd)::before,
  .milestone-timeline-item:nth-child(even)::before {
    left: 20px;
    right: auto;
  }
}

@media (max-width: 768px) {
  .milestones-section {
    padding: 60px 0;
  }

  .milestones-title {
    font-size: 40px;
  }

  .milestones-description {
    font-size: 18px;
  }

  .milestones-header {
    margin-bottom: 60px;
  }

  .milestone-emoji {
    font-size: 36px;
  }

  .milestone-year {
    font-size: 24px;
  }

  .milestone-timeline-title {
    font-size: 22px;
  }

  .milestone-timeline-text {
    font-size: 15px;
  }

  .milestone-card {
    padding: 25px;
  }

  .milestone-timeline-header {
    padding: 0 !important;
  }
}

@media (max-width: 480px) {
  .milestones-title {
    font-size: 32px;
  }

  .milestone-timeline-item,
  .milestone-timeline-item:nth-child(odd),
  .milestone-timeline-item:nth-child(even) {
    padding-left: 60px;
  }

  .milestones-timeline::before {
    left: 20px;
  }

  .milestone-timeline-item::before,
  .milestone-timeline-item:nth-child(odd)::before,
  .milestone-timeline-item:nth-child(even)::before {
    left: 10px;
    width: 16px;
    height: 16px;
  }
}

/* Stats Section */
.stats-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
}

:root[data-theme="dark"] .stats-section {
  background: #1C1C20;
}

.stats-container {
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.stats-box {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 1.5rem;
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .stats-box {
    padding: 5rem;
  }
}

.stats-decoration {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: float 20s infinite ease-in-out;
}

.stats-decoration-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -100px;
}

.stats-decoration-2 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  left: -50px;
  animation-delay: 3s;
}

.stats-content {
  position: relative;
  z-index: 10;
}

.stats-label {
  display: inline-block;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 20px;
}

.stats-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 2px;
  background: rgba(255, 255, 255, 0.9);
}

.stats-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.25rem;
  letter-spacing: -0.025em;
}

@media (min-width: 1024px) {
  .stats-title {
    font-size: 3rem;
  }
}

.stats-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.95);
  max-width: 48rem;
  margin: 0 auto 2.5rem;
  line-height: 1.625;
}

.stats-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 4rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stats-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border-radius: 0.75rem;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stats-number {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stats-label-text {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

/* Clients Page Styles */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 768px) {
  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}


.client-logo-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

:root[data-theme="dark"] .client-logo-card {
  background: #1a1a24;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.client-logo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.client-logo-circle {
  width: 5rem;
  height: 5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin: 0 auto 1rem;
  transition: transform 0.3s ease;
}

.client-logo-card:hover .client-logo-circle {
  transform: scale(1.1);
}

.client-logo-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

:root[data-theme="dark"] .client-logo-name {
  color: #ffffff;
}

.client-logo-card:hover .client-logo-name {
  color: #667eea;
}

.client-industry-badge {
  display: inline-block;
  background: rgba(102, 126, 234, 0.1);
  color: #667eea;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
}

:root[data-theme="dark"] .client-industry-badge {
  background: rgba(102, 126, 234, 0.2);
  color: #8b9aff;
}

/* Testimonials Section */
.testimonials-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
}

:root[data-theme="dark"] .testimonials-section {
  background: linear-gradient(135deg, #0a0a0f 0%, #12121a 100%);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.25rem;
}

.testimonials-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
}

@media (min-width: 1024px) {
  .testimonials-title {
    font-size: 3rem;
  }
}

:root[data-theme="dark"] .testimonials-title {
  color: #ffffff;
}

.testimonials-description {
  font-size: 1.125rem;
  color: #475569;
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.625;
}

:root[data-theme="dark"] .testimonials-description {
  color: #94a3b8;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.testimonial-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

:root[data-theme="dark"] .testimonial-card {
  background: #1a1a24;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.testimonial-avatar {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.testimonial-info h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.25rem;
}

:root[data-theme="dark"] .testimonial-info h4 {
  color: #ffffff;
}

.testimonial-info p {
  font-size: 0.875rem;
  color: #667eea;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.testimonial-stars {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.25rem;
}

.testimonial-stars .star {
  color: #fbbf24;
  font-size: 1rem;
}

.testimonial-text {
  font-size: 1rem;
  color: #475569;
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.625;
}

:root[data-theme="dark"] .testimonial-text {
  color: #94a3b8;
}

/* Blog Page Styles */
.blog-posts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 768px) {
  .blog-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .blog-posts-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-post-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

:root[data-theme="dark"] .blog-post-card {
  background: #1a1a24;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.blog-post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.blog-post-image {
  height: 12rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-post-image span {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
}

.blog-post-content {
  padding: 1.5rem;
}

.blog-post-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.blog-post-date {
  font-size: 0.875rem;
  color: #64748b;
}

:root[data-theme="dark"] .blog-post-date {
  color: #94a3b8;
}

.blog-post-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

:root[data-theme="dark"] .blog-post-title {
  color: #ffffff;
}

.blog-post-excerpt {
  font-size: 1rem;
  color: #475569;
  margin-bottom: 1rem;
  line-height: 1.6;
}

:root[data-theme="dark"] .blog-post-excerpt {
  color: #94a3b8;
}

.blog-post-link {
  color: #667eea;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.blog-post-link:hover {
  color: #5a67d8;
}

:root[data-theme="dark"] .blog-post-link {
  color: #8b9aff;
}

:root[data-theme="dark"] .blog-post-link:hover {
  color: #a5b4fc;
}

/* Contact Page Styles */
.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 1024px) {
  .contact-info-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info-card {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 1rem;
  transition: all 0.3s ease;
}

:root[data-theme="dark"] .contact-info-card {
  background: #1a1a24;
}

.contact-info-card:hover {
  background: #f1f5f9;
  transform: translateY(-2px);
}

:root[data-theme="dark"] .contact-info-card:hover {
  background: #2a2a35;
}

.contact-info-icon {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-info-card:hover .contact-info-icon {
  transform: scale(1.1) rotate(5deg);
}

.contact-info-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: white;
}

.contact-info-content h4 {
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.25rem;
}

:root[data-theme="dark"] .contact-info-content h4 {
  color: #ffffff;
}

.contact-info-content p {
  color: #475569;
  line-height: 1.625;
}

:root[data-theme="dark"] .contact-info-content p {
  color: #94a3b8;
}

.contact-info-content a {
  color: #475569;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info-content a:hover {
  color: #667eea;
}

:root[data-theme="dark"] .contact-info-content a {
  color: #94a3b8;
}

:root[data-theme="dark"] .contact-info-content a:hover {
  color: #8b9aff;
}

.contact-section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
  letter-spacing: -0.025em;
}

:root[data-theme="dark"] .contact-section-title {
  color: #ffffff;
}

.contact-section-description {
  color: #475569;
  line-height: 1.625;
}

:root[data-theme="dark"] .contact-section-description {
  color: #94a3b8;
}

/* Auth Page Styles */
.auth-page-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 20px 48px;
  background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
}

:root[data-theme="dark"] .auth-page-container {
  background: linear-gradient(135deg, #0a0a0f 0%, #12121a 100%);
}

.auth-container {
  max-width: 28rem;
  margin: 0 auto;
  width: 100%;
}

.auth-header {
  text-align: center;
  margin-bottom: 2rem;
}

.auth-logo {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
}

.auth-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

:root[data-theme="dark"] .auth-title {
  color: #ffffff;
}

.auth-subtitle {
  color: #475569;
}

:root[data-theme="dark"] .auth-subtitle {
  color: #b4b6c0;
}

.auth-card {
  background: white;
  padding: 2rem 1rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  border: 1px solid #e2e8f0;
}

@media (min-width: 640px) {
  .auth-card {
    padding: 2rem 2.5rem;
  }
}

:root[data-theme="dark"] .auth-card {
  background: #1a1a24;
  border: 1px solid #2a2a35;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.auth-form-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  text-align: center;
  margin-bottom: 0.5rem;
}

:root[data-theme="dark"] .auth-form-title {
  color: #ffffff;
}

.auth-form-subtitle {
  color: #475569;
  text-align: center;
  margin-top: 0.5rem;
}

:root[data-theme="dark"] .auth-form-subtitle {
  color: #b4b6c0;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.auth-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
  padding: 0.75rem 1rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
}

:root[data-theme="dark"] .auth-error {
  background: rgba(185, 28, 28, 0.2);
  border-color: rgba(185, 28, 28, 0.5);
  color: #fca5a5;
}

.auth-form-group {
  display: flex;
  flex-direction: column;
}

.auth-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.5rem;
}

:root[data-theme="dark"] .auth-label {
  color: #b4b6c0;
}

.auth-input {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  background: white;
  color: #111827;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.auth-input:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.auth-input::placeholder {
  color: #9ca3af;
}

:root[data-theme="dark"] .auth-input {
  background: #2a2a35;
  border-color: #374151;
  color: #ffffff;
}

:root[data-theme="dark"] .auth-input::placeholder {
  color: #6b7280;
}

:root[data-theme="dark"] .auth-input:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
}

.auth-input-wrapper {
  position: relative;
}

.auth-password-toggle {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #6b7280;
  cursor: pointer;
  font-size: 1rem;
}

:root[data-theme="dark"] .auth-password-toggle {
  color: #9ca3af;
}

.auth-form-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.auth-checkbox-wrapper {
  display: flex;
  align-items: center;
}

.auth-checkbox {
  width: 1rem;
  height: 1rem;
  color: #667eea;
  border: 1px solid #d1d5db;
  border-radius: 0.25rem;
  cursor: pointer;
}

.auth-checkbox-label {
  margin-left: 0.5rem;
  font-size: 0.875rem;
  color: #374151;
}

:root[data-theme="dark"] .auth-checkbox-label {
  color: #b4b6c0;
}

.auth-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: #667eea;
  text-decoration: none;
  transition: color 0.2s ease;
}

.auth-link:hover {
  color: #5a67d8;
}

:root[data-theme="dark"] .auth-link {
  color: #8b9aff;
}

:root[data-theme="dark"] .auth-link:hover {
  color: #a5b4fc;
}

.auth-submit-button {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 0.375rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.auth-submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.auth-submit-button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.3);
}

.auth-divider {
  margin: 1.5rem 0;
  position: relative;
}

.auth-divider-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #d1d5db;
}

:root[data-theme="dark"] .auth-divider-line {
  background: #374151;
}

.auth-divider-text {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 0 0.5rem;
  background: white;
  color: #6b7280;
  font-size: 0.875rem;
}

:root[data-theme="dark"] .auth-divider-text {
  background: #1a1a24;
  color: #9ca3af;
}

.auth-secondary-button {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0.5rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  background: white;
  color: #374151;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.auth-secondary-button:hover {
  background: #f9fafb;
  border-color: #667eea;
}

:root[data-theme="dark"] .auth-secondary-button {
  background: #2a2a35;
  border-color: #374151;
  color: #b4b6c0;
}

:root[data-theme="dark"] .auth-secondary-button:hover {
  background: #3a3a45;
  border-color: #667eea;
}

/* Error Page Styles */
.error-page-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
  padding: 120px 20px 80px;
}

:root[data-theme="dark"] .error-page-container {
  background: linear-gradient(135deg, #0a0a0f 0%, #12121a 100%);
}

.error-page-red {
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

:root[data-theme="dark"] .error-page-red {
  background: linear-gradient(135deg, #1a0a0a 0%, #2a1212 100%);
}

.error-content {
  max-width: 28rem;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding: 0 1rem;
}

.error-header {
  margin-bottom: 2rem;
}

.error-code {
  font-size: 9rem;
  font-weight: 800;
  color: #667eea;
  line-height: 1;
  margin-bottom: 1rem;
}

:root[data-theme="dark"] .error-code {
  color: #8b9aff;
}

.error-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.error-title {
  font-size: 2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

:root[data-theme="dark"] .error-title {
  color: #ffffff;
}

.error-description {
  font-size: 1.125rem;
  color: #475569;
  margin-bottom: 2rem;
  line-height: 1.6;
}

:root[data-theme="dark"] .error-description {
  color: #b4b6c0;
}

.error-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.error-btn-primary {
  width: 100%;
  display: block;
  text-align: center;
}

.error-btn-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.error-btn-secondary {
  display: block;
  text-align: center;
  background: white;
  color: #475569;
  border: 1px solid #e2e8f0;
}

:root[data-theme="dark"] .error-btn-secondary {
  background: #1a1a24;
  color: #b4b6c0;
  border-color: #2a2a35;
}

.error-btn-secondary:hover {
  background: #f8fafc;
  border-color: #667eea;
}

:root[data-theme="dark"] .error-btn-secondary:hover {
  background: #2a2a35;
  border-color: #667eea;
}

.error-link {
  display: block;
  width: 100%;
  text-align: center;
  color: #667eea;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.error-link:hover {
  color: #5a67d8;
}

:root[data-theme="dark"] .error-link {
  color: #8b9aff;
}

:root[data-theme="dark"] .error-link:hover {
  color: #a5b4fc;
}

.error-help {
  margin-top: 3rem;
  font-size: 0.875rem;
  color: #64748b;
}

:root[data-theme="dark"] .error-help {
  color: #94a3b8;
}

.error-phone-link {
  color: #667eea;
  text-decoration: none;
  transition: color 0.3s ease;
}

.error-phone-link:hover {
  color: #5a67d8;
}

:root[data-theme="dark"] .error-phone-link {
  color: #8b9aff;
}

:root[data-theme="dark"] .error-phone-link:hover {
  color: #a5b4fc;
}

@media (max-width: 768px) {
  .error-page-container {
    padding: 100px 20px 60px;
  }
  
  .error-code {
    font-size: 6rem;
  }
  
  .error-title {
    font-size: 1.75rem;
  }
  
  .error-description {
    font-size: 1rem;
  }
  
  .error-btn-grid {
    grid-template-columns: 1fr;
  }
}

/* Founder Section Styles */
.founder-section {
  padding: 6rem 0;
  background: var(--background);
  transition: background 0.3s ease;
}


.founder-section .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.founder-card {
  background: var(--background-light);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
  border: 1px solid var(--border-light);
  transition: all 0.3s;
}

:root[data-theme="dark"] .founder-card {
  background: #1e293b;
  border-color: #334155;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.3);
}

.founder-card h3 {
  color: var(--text-heading);
}

.founder-card p {
  color: var(--text-body);
}

.founder-social-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--background-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-body);
  transition: all 0.3s;
  text-decoration: none;
}

:root[data-theme="dark"] .founder-social-icon {
  background: #334155;
  color: #cbd5e1;
}

.founder-social-icon:hover {
  background: #667eea;
  color: white;
  transform: translateY(-2px);
}

/* Responsive styles for Founder Section */
@media (max-width: 768px) {
  .founder-section {
    padding: 4rem 0;
  }
  
  .founder-section .container {
    padding: 0 1rem;
  }
  
  .founder-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .founder-section {
    padding: 3rem 0;
  }
  
  .founder-card {
    padding: 1.25rem;
  }
  
  .founder-card h3 {
    font-size: 1.25rem;
  }
  
  .founder-card p {
    font-size: 0.9rem;
  }
  
  .founder-social-icon {
    width: 2rem;
    height: 2rem;
  }
}

/* Team Section Styles */
.team-section {
  padding: 6rem 0;
  background: var(--background);
  transition: background 0.3s ease;
}

:root[data-theme="dark"] .team-section {
  background: #1C1C20;
}

.team-section .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

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

.team-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--text-heading);
  margin: 1rem 0;
  letter-spacing: -0.025em;
}

.team-description {
  font-size: 1.125rem;
  color: var(--text-body);
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.75;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

.team-card {
  background: var(--background-light);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 1px 3px 0 rgba(0,0,0,0.1);
  transition: all 0.3s;
}

.team-avatar {
  width: 7rem;
  height: 7rem;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2.5rem;
  font-weight: bold;
  margin: 0 auto 1.5rem;
  transition: transform 0.3s;
}

.team-card:hover .team-avatar {
  transform: scale(1.1);
}

.team-name {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--text-heading);
  margin-bottom: 0.5rem;
}

.team-role {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #667eea;
  margin-bottom: 1rem;
}

.team-bio {
  color: var(--text-body);
  line-height: 1.75;
  font-size: 1rem;
}

:root[data-theme="dark"] .team-card {
  background: #1e293b;
  box-shadow: 0 1px 3px 0 rgba(0,0,0,0.3);
}

.team-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

:root[data-theme="dark"] .team-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.5);
}

.team-card h3 {
  color: var(--text-heading);
}

.team-card p {
  color: var(--text-body);
}

/* Responsive styles for Team Section */
@media (max-width: 768px) {
  .team-section {
    padding: 4rem 0;
  }
  
  .team-section .container {
    padding: 0 1rem;
  }
  
  .team-header {
    margin-bottom: 3rem;
  }
  
  .team-title {
    font-size: 2rem;
  }
  
  .team-description {
    font-size: 1rem;
    padding: 0 1rem;
  }
  
  .team-grid {
    gap: 1.5rem;
  }
  
  .team-card {
    padding: 1.5rem;
  }
  
  .team-avatar {
    width: 6rem;
    height: 6rem;
    font-size: 2rem;
  }
  
  .team-name {
    font-size: 1.125rem;
  }
  
  .team-bio {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .team-section {
    padding: 3rem 0;
  }
  
  .team-header {
    margin-bottom: 2.5rem;
  }
  
  .team-title {
    font-size: 1.75rem;
  }
  
  .team-description {
    font-size: 0.95rem;
  }
  
  .team-grid {
    gap: 1.25rem;
  }
  
  .team-card {
    padding: 1.25rem;
  }
  
  .team-avatar {
    width: 5rem;
    height: 5rem;
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }
  
  .team-name {
    font-size: 1rem;
  }
  
  .team-role {
    font-size: 0.8rem;
  }
  
  .team-bio {
    font-size: 0.9rem;
  }
}

/* Technologies Section Styles */
.technologies-section {
  padding: 6rem 0;
  background: var(--background);
  transition: background 0.3s ease;
}

:root[data-theme="dark"] .technologies-section {
  background: var(--background);
}

.technologies-section .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.technologies-section h2 {
  color: var(--text-heading);
}

.technologies-section p {
  color: var(--text-body);
}

.tech-category-card {
  border-radius: 1rem;
  padding: 1.5rem;
  border: 2px solid;
  transition: all 0.3s;
}

.tech-category-card.frontend {
  border-color: #bfdbfe;
  background: #eff6ff;
}

:root[data-theme="dark"] .tech-category-card.frontend {
  border-color: #1e3a8a;
  background: #1e3a8a20;
}

.tech-category-card.backend {
  border-color: #86efac;
  background: #f0fdf4;
}

:root[data-theme="dark"] .tech-category-card.backend {
  border-color: #166534;
  background: #16653420;
}

.tech-category-card.database {
  border-color: #c084fc;
  background: #faf5ff;
}

:root[data-theme="dark"] .tech-category-card.database {
  border-color: #6b21a8;
  background: #6b21a820;
}

.tech-category-card.design {
  border-color: #f9a8d4;
  background: #fdf2f8;
}

:root[data-theme="dark"] .tech-category-card.design {
  border-color: #9f1239;
  background: #9f123920;
}

.tech-category-card.tools {
  border-color: #fed7aa;
  background: #fff7ed;
}

:root[data-theme="dark"] .tech-category-card.tools {
  border-color: #9a3412;
  background: #9a341220;
}

.tech-tag {
  padding: 0.375rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  background: var(--background);
  color: var(--text-heading);
  border: 1px solid var(--border-light);
}

:root[data-theme="dark"] .tech-tag {
  background: #1e293b;
  color: #e2e8f0;
}

/* Responsive styles for Technologies Section */
@media (max-width: 768px) {
  .technologies-section {
    padding: 4rem 0;
  }
  
  .technologies-section .container {
    padding: 0 1rem;
  }
  
  .tech-category-card {
    padding: 1.25rem;
  }
  
  .tech-tag {
    font-size: 0.8rem;
    padding: 0.25rem 0.625rem;
  }
}

@media (max-width: 480px) {
  .technologies-section {
    padding: 3rem 0;
  }
  
  .tech-category-card {
    padding: 1rem;
  }
  
  .tech-category-card h3 {
    font-size: 1.125rem;
  }
  
  .tech-tag {
    font-size: 0.75rem;
    padding: 0.2rem 0.5rem;
  }
}

/* Blog Section Styles */
.blog-section {
  padding: 6rem 0;
  background: var(--background);
  transition: background 0.3s ease;
}

:root[data-theme="dark"] .blog-section {
  background: #18181C;
}

/* Blog CTA Section Styles */
.blog-cta-section {
  padding: 6rem 0;
  background: var(--background);
  transition: background 0.3s ease;
}

:root[data-theme="dark"] .blog-cta-section {
  background: #1C1C20;
}

.blog-section .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.blog-section h2 {
  color: var(--text-heading);
}

.blog-section p {
  color: var(--text-body);
}

.blog-card {
  background: var(--background-light);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 1px 3px 0 rgba(0,0,0,0.1);
  transition: all 0.3s;
}

:root[data-theme="dark"] .blog-card {
  background: #1e293b;
  box-shadow: 0 1px 3px 0 rgba(0,0,0,0.3);
}

.blog-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}

:root[data-theme="dark"] .blog-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.5);
}

.blog-card h3 {
  color: var(--text-heading);
}

.blog-card p {
  color: var(--text-body);
}

.blog-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

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

/* Responsive styles for Blog Section */
@media (max-width: 768px) {
  .blog-section {
    padding: 4rem 0;
  }
  
  .blog-section .container {
    padding: 0 1rem;
  }
  
  .blog-card {
    padding: 1.5rem;
  }
  
  .blog-card h3 {
    font-size: 1.125rem;
  }
  
  .blog-card p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .blog-section {
    padding: 3rem 0;
  }
  
  .blog-card {
    padding: 1.25rem;
  }
  
  .blog-card h3 {
    font-size: 1rem;
  }
  
  .blog-card p {
    font-size: 0.875rem;
  }
}

/* Fix white line before footer */
.contact-section {
  margin-bottom: 0;
  padding-bottom: 0;
}

.footer-section {
  margin-top: 0 !important;
  padding-top: 80px;
}

/* Ensure body background matches in dark mode */
body {
  background: var(--background);
  transition: background 0.3s ease;
}

:root[data-theme="dark"] body {
  background: var(--background);
}

/* General Mobile Text & Spacing Optimizations */
@media (max-width: 768px) {
  /* Optimize heading sizes for mobile - but exclude hero section which has its own styles */
  section:not(.hero-section) h1,
  .section-heading h1,
  .about-content-title,
  .page-hero-title {
    font-size: clamp(1.75rem, 5vw, 2.5rem) !important;
    line-height: 1.2 !important;
  }
  
  /* Hero content h1 should use its own responsive styles - more specific */
  .hero-section .hero-content h1 {
    font-size: 2.5rem !important;
    line-height: 1.2 !important;
    margin-bottom: 24px !important;
    display: block !important;
    width: 100% !important;
    overflow: visible !important;
    visibility: visible !important;
    opacity: 1 !important;
    white-space: normal !important;
  }
  
  section:not(.hero-section) h2,
  .section-heading h2 {
    font-size: clamp(1.5rem, 4vw, 2.2rem) !important;
    line-height: 1.3 !important;
  }
  
  section:not(.hero-section) h3,
  .section-heading h3 {
    font-size: clamp(1.25rem, 3.5vw, 1.75rem) !important;
    line-height: 1.4 !important;
  }
  
  /* Optimize section labels */
  .section-label {
    font-size: 12px !important;
    padding: 8px 16px !important;
  }
  
  /* Ensure proper touch targets (minimum 44x44px) */
  .btn,
  button,
  a.btn,
  .modern-cta-btn,
  .mobile-cta-btn,
  .cta-button {
    min-height: 44px;
    min-width: 44px;
    padding: 12px 24px !important;
  }
  
  /* Reduce excessive padding on mobile */
  .container {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  /* Optimize spacing between sections */
  section {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  
  /* Ensure images don't overflow */
  img {
    max-width: 100%;
    height: auto;
  }
  
  /* Fix any potential overflow issues */
  * {
    box-sizing: border-box;
  }
  
  body {
    overflow-x: hidden;
  }
}

@media (max-width: 480px) {
  /* Further optimize for small mobile devices - but exclude hero section */
  section:not(.hero-section) h1,
  .section-heading h1,
  .about-content-title,
  .page-hero-title {
    font-size: clamp(1.5rem, 6vw, 2rem) !important;
  }
  
  /* Hero content h1 should use its own responsive styles - more specific */
  .hero-section .hero-content h1 {
    font-size: 2rem !important;
    line-height: 1.2 !important;
    display: block !important;
    width: 100% !important;
    overflow: visible !important;
    visibility: visible !important;
    opacity: 1 !important;
    white-space: normal !important;
  }
  
  section:not(.hero-section) h2,
  .section-heading h2 {
    font-size: clamp(1.25rem, 5vw, 1.75rem) !important;
  }
  
  section:not(.hero-section) h3,
  .section-heading h3 {
    font-size: clamp(1.125rem, 4vw, 1.5rem) !important;
  }
  
  .section-label {
    font-size: 11px !important;
    padding: 6px 12px !important;
  }
  
  /* Reduce padding even more on small screens */
  section {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  
  .container {
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }
  
  /* Ensure buttons are still touchable */
  .btn,
  button,
  a.btn {
    padding: 14px 20px !important;
    font-size: 0.9rem !important;
  }
}

/* ============================================
   RESPONSIVE STYLES FOR ABOUT & SERVICES PAGES
   ============================================ */

/* Ensure main content doesn't overlap with fixed header */
main {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow-x: hidden;
}

/* Ensure header stays on top - already set above */

/* Ensure all sections account for fixed header */
section {
  scroll-margin-top: 100px;
}

@media (max-width: 768px) {
  section {
    scroll-margin-top: 90px;
  }
}

@media (max-width: 480px) {
  section {
    scroll-margin-top: 85px;
  }
}

/* About Page Hero Section - Responsive */
@media (max-width: 768px) {
  .about-hero-section {
    padding: 110px 0 60px;
    margin-top: 0;
  }
  
  .about-hero-section .hero-decoration {
    width: 200px;
    height: 200px;
  }
  
  .about-hero-section .hero-decoration.decoration-1 {
    top: -100px;
    left: -50px;
  }
  
  .about-hero-section .hero-decoration.decoration-2 {
    bottom: -100px;
    right: -50px;
  }
  
  .about-hero-content {
    padding: 30px 1rem 0;
  }
  
  .about-hero-title {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 1.25rem;
  }
  
  .about-hero-description {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .about-hero-section {
    padding: 100px 0 50px;
    margin-top: 0;
  }
  
  .about-hero-section .hero-decoration {
    width: 150px;
    height: 150px;
  }
  
  .about-hero-section .hero-decoration.decoration-1 {
    top: -75px;
    left: -40px;
  }
  
  .about-hero-section .hero-decoration.decoration-2 {
    bottom: -75px;
    right: -40px;
  }
  
  .about-hero-content {
    padding: 20px 0.75rem 0;
  }
  
  .about-hero-title {
    font-size: 1.75rem;
    line-height: 1.3;
  }
  
  .about-hero-description {
    font-size: 1rem;
    line-height: 1.6;
  }
}

/* About Content Section - Responsive */
@media (max-width: 768px) {
  .about-content-section {
    padding: 4rem 0;
    margin-top: 0;
  }
  
  .about-content-grid {
    gap: 3rem;
  }
  
  .about-content-text {
    padding: 0 1rem;
  }
  
  .about-content-title {
    font-size: 2rem;
    margin-bottom: 1.25rem;
  }
  
  .about-content-paragraph {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  
  .about-content-list {
    font-size: 1rem;
    padding-left: 1rem;
  }
  
  .about-visual-box {
    height: 20rem;
    margin-top: 2rem;
  }
}

@media (max-width: 480px) {
  .about-content-section {
    padding: 3rem 0;
  }
  
  .about-content-grid {
    gap: 2rem;
  }
  
  .about-content-title {
    font-size: 1.75rem;
  }
  
  .about-content-paragraph {
    font-size: 0.95rem;
  }
  
  .about-content-list {
    font-size: 0.95rem;
    padding-left: 0.75rem;
  }
  
  .about-visual-box {
    height: 16rem;
  }
}

/* Mission Vision Section - Responsive */
@media (max-width: 768px) {
  .mission-vision-section {
    padding: 4rem 0;
    margin-top: 0;
  }
  
  .mission-vision-grid {
    padding: 0 1rem;
    gap: 1.5rem;
  }
  
  .mission-vision-card {
    padding: 2rem 1.5rem;
  }
  
  .mission-vision-icon {
    width: 3.5rem;
    height: 3.5rem;
    margin-bottom: 1.5rem;
  }
  
  .mission-vision-icon i,
  .mission-vision-icon svg {
    font-size: 1.75rem;
  }
  
  .mission-vision-card-title {
    font-size: 1.25rem;
  }
  
  .mission-vision-card-text {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .mission-vision-section {
    padding: 3rem 0;
  }
  
  .mission-vision-card {
    padding: 1.5rem 1.25rem;
  }
  
  .mission-vision-icon {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1.25rem;
  }
  
  .mission-vision-icon i,
  .mission-vision-icon svg {
    font-size: 1.5rem;
  }
  
  .mission-vision-card-title {
    font-size: 1.125rem;
  }
  
  .mission-vision-card-text {
    font-size: 0.95rem;
    line-height: 1.6;
  }
}

/* Founder Section - Responsive */
@media (max-width: 768px) {
  .founder-section {
    padding: 4rem 0;
    margin-top: 0;
  }
  
  .founder-header {
    padding: 0 1rem;
    margin-bottom: 3rem;
  }
  
  .founder-title {
    font-size: 2rem;
  }
  
  .founder-grid {
    grid-template-columns: 1fr;
    padding: 0 1rem;
    gap: 1.5rem;
  }
  
  .founder-card {
    padding: 1.75rem;
  }
  
  .founder-avatar {
    width: 6rem;
    height: 6rem;
    font-size: 2rem;
    margin-bottom: 1.25rem;
  }
  
  .founder-name {
    font-size: 1.25rem;
  }
  
  .founder-role {
    font-size: 0.9rem;
  }
  
  .founder-bio {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .founder-section {
    padding: 3rem 0;
  }
  
  .founder-header {
    margin-bottom: 2.5rem;
  }
  
  .founder-title {
    font-size: 1.75rem;
  }
  
  .founder-grid {
    gap: 1.25rem;
  }
  
  .founder-card {
    padding: 1.5rem;
  }
  
  .founder-avatar {
    width: 5rem;
    height: 5rem;
    font-size: 1.75rem;
  }
  
  .founder-name {
    font-size: 1.125rem;
  }
  
  .founder-bio {
    font-size: 0.9rem;
  }
}


/* Stats Section - Responsive */
@media (max-width: 768px) {
  .stats-section {
    padding: 4rem 0;
  }
  
  .stats-container {
    padding: 0 1rem;
  }
  
  .stats-box {
    padding: 3rem 1.5rem;
  }
  
  .stats-label {
    font-size: 0.875rem;
  }
  
  .stats-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .stats-description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .stats-buttons {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
  }
  
  .stats-buttons .btn {
    width: 100%;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .stats-number {
    font-size: 2.5rem;
  }
  
  .stats-label-text {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .stats-section {
    padding: 3rem 0;
  }
  
  .stats-box {
    padding: 2rem 1.25rem;
  }
  
  .stats-title {
    font-size: 1.75rem;
  }
  
  .stats-description {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .stats-number {
    font-size: 2rem;
  }
  
  .stats-label-text {
    font-size: 0.875rem;
  }
  
  .stats-buttons .btn {
    padding: 0.875rem 1.25rem;
    font-size: 0.95rem;
  }
}

/* Services Page Hero Section - Responsive */
@media (max-width: 768px) {
  .page-hero-section {
    padding: 110px 0 60px;
    margin-top: 0;
  }
  
  .page-hero-content {
    padding: 0 1rem;
    overflow: visible !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  
  .page-hero-title {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 1.25rem;
    overflow: visible !important;
    text-overflow: clip !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    max-width: 100% !important;
    display: block !important;
  }
  
  .page-hero-title .gradient-text {
    white-space: nowrap;
    display: inline;
  }
  
  .page-hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
  }
}

@media (max-width: 480px) {
  .page-hero-section {
    padding: 100px 0 50px;
    margin-top: 0;
  }
  
  .page-hero-title {
    font-size: 1.75rem;
    line-height: 1.3;
    overflow: visible !important;
    text-overflow: clip !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    max-width: 100% !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  .page-hero-title .gradient-text {
    white-space: normal;
    display: inline;
  }
  
  .page-hero-description {
    font-size: 1rem;
    line-height: 1.6;
  }
}

/* Services Grid - Additional Responsive */
@media (max-width: 768px) {
  .services-section {
    padding: 4rem 0;
    margin-top: 0;
  }
  
  .services-page-grid {
    gap: 1.5rem;
  }
  
  .service-card-modern {
    padding: 1.5rem;
  }
  
  .service-card-header {
    margin-bottom: 1.25rem;
  }
  
  .service-icon-wrapper {
    width: 3rem;
    height: 3rem;
  }
  
  .service-icon-wrapper i {
    font-size: 1.25rem;
  }
  
  .service-card-title {
    font-size: 1.125rem;
  }
  
  .service-card-description {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
  }
}

@media (max-width: 480px) {
  .services-section {
    padding: 3rem 0;
  }
  
  .services-page-grid {
    gap: 1.25rem;
  }
  
  .service-card-modern {
    padding: 1.25rem;
  }
  
  .service-icon-wrapper {
    width: 2.75rem;
    height: 2.75rem;
  }
  
  .service-icon-wrapper i {
    font-size: 1.125rem;
  }
  
  .service-card-title {
    font-size: 1rem;
  }
  
  .service-card-description {
    font-size: 0.9rem;
  }
  
  .service-card-link {
    font-size: 0.9rem;
  }
}

/* CTA Section - Responsive */
@media (max-width: 768px) {
  .cta-section {
    padding: 4rem 0;
  }
  
  .cta-section .container {
    padding: 0 1rem;
  }
  
  .cta-section-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .cta-section-description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .cta-button-primary,
  .cta-button-secondary {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .cta-section {
    padding: 3rem 0;
  }
  
  .cta-section-title {
    font-size: 1.75rem;
  }
  
  .cta-section-description {
    font-size: 0.95rem;
  }
  
  .cta-button-primary,
  .cta-button-secondary {
    padding: 14px 24px;
    font-size: 0.95rem;
  }
}

/* Milestones Section - Additional Mobile Responsive */
@media (max-width: 768px) {
  .milestones-section {
    padding: 4rem 0;
  }
  
  .milestones-header {
    padding: 0 1rem;
    margin-bottom: 3rem;
  }
  
  .milestones-title {
    font-size: 2.5rem;
  }
  
  .milestones-description {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .milestones-section {
    padding: 3rem 0;
    margin-top: 0;
  }
  
  .milestones-title {
    font-size: 2rem;
  }
  
  .milestones-description {
    font-size: 1rem;
  }
  
  .milestone-card {
    padding: 1.5rem;
  }
  
  .milestone-timeline-title {
    font-size: 1.125rem;
  }
  
  .milestone-timeline-text {
    font-size: 0.95rem;
  }
}

/* Additional responsive fixes to prevent overflow */
@media (max-width: 768px) {
  .about-hero-title,
  .page-hero-title {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }
  
  .page-hero-title {
    overflow: visible !important;
    text-overflow: clip !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    max-width: 100% !important;
    display: block !important;
  }
  
  .page-hero-title .gradient-text {
    white-space: normal;
    display: inline;
  }
  
  /* Ensure containers don't cause horizontal scroll */
  .container {
    max-width: 100%;
    overflow-x: hidden;
  }
  
  /* Fix any potential overflow in hero sections */
  .about-hero-section,
  .page-hero-section {
    overflow-x: hidden;
    overflow-y: visible;
  }
  
  .page-hero-section .container {
    overflow: visible !important;
  }
  
  .page-hero-section .page-hero-content {
    overflow: visible !important;
  }
  
  /* Ensure text doesn't overflow */
  .about-hero-description,
  .page-hero-description,
  .about-content-paragraph {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  /* Prevent horizontal scrolling */
  html, body {
    overflow-x: hidden;
    max-width: 100%;
  }
  
  /* Ensure all sections are contained */
  section {
    max-width: 100%;
    overflow-x: hidden;
  }
  
  /* Fix long words breaking layout */
  h1, h2, h3, h4, h5, h6, p, span, div {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  /* Ensure buttons don't overflow */
  .btn, button, a.btn {
    max-width: 100%;
    white-space: normal;
  }
}

/* Service Modal Styles */
.service-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 1rem;
}

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

.service-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  cursor: pointer;
}

.service-modal-content {
  position: relative;
  background: white;
  border-radius: 1.5rem;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s ease;
  z-index: 10000;
}

:root[data-theme="dark"] .service-modal-content {
  background: #1a1a24;
  border: 1px solid #2a2a35;
}

.service-modal.active .service-modal-content {
  transform: scale(1) translateY(0);
}

.service-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: none;
  background: #f1f5f9;
  color: #475569;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10001;
}

:root[data-theme="dark"] .service-modal-close {
  background: #2a2a35;
  color: #b4b6c0;
}

.service-modal-close:hover {
  background: #e2e8f0;
  transform: rotate(90deg);
}

:root[data-theme="dark"] .service-modal-close:hover {
  background: #3a3a48;
}

.service-modal-body {
  padding: 3rem;
}

.service-modal-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e2e8f0;
}

:root[data-theme="dark"] .service-modal-header {
  border-bottom-color: #2a2a35;
}

.service-modal-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-right: 1.5rem;
}

.service-modal-title {
  font-size: 2rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

:root[data-theme="dark"] .service-modal-title {
  color: #ffffff;
}

.service-modal-description {
  margin-bottom: 2rem;
}

.service-modal-description p {
  font-size: 1.125rem;
  color: #475569;
  line-height: 1.7;
  margin: 0;
}

:root[data-theme="dark"] .service-modal-description p {
  color: #b4b6c0;
}

.service-modal-section {
  margin-bottom: 2rem;
}

.service-modal-section-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
}

:root[data-theme="dark"] .service-modal-section-title {
  color: #ffffff;
}

.service-modal-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.service-modal-features li {
  display: flex;
  align-items: flex-start;
  color: #475569;
  font-size: 1rem;
  line-height: 1.6;
}

:root[data-theme="dark"] .service-modal-features li {
  color: #b4b6c0;
}

.service-modal-features li i {
  color: #10b981;
  margin-right: 0.75rem;
  margin-top: 0.25rem;
  font-size: 1rem;
  flex-shrink: 0;
}

.service-modal-technologies {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.tech-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: #f1f5f9;
  color: #475569;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid #e2e8f0;
}

:root[data-theme="dark"] .tech-badge {
  background: #2a2a35;
  color: #b4b6c0;
  border-color: #3a3a48;
}

.service-modal-benefits {
  font-size: 1rem;
  color: #475569;
  line-height: 1.7;
  margin: 0;
}

:root[data-theme="dark"] .service-modal-benefits {
  color: #b4b6c0;
}

.service-modal-cta {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e2e8f0;
  flex-wrap: wrap;
}

:root[data-theme="dark"] .service-modal-cta {
  border-top-color: #2a2a35;
}

.service-modal-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
  flex: 1;
  min-width: 150px;
  justify-content: center;
}

.service-modal-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.service-modal-button i {
  font-size: 1rem;
}

.service-modal-button-secondary {
  display: inline-flex;
  align-items: center;
  padding: 0.875rem 1.75rem;
  background: white;
  color: #475569;
  border: 1px solid #cbd5e1;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  flex: 1;
  min-width: 150px;
  justify-content: center;
}

:root[data-theme="dark"] .service-modal-button-secondary {
  background: #1a1a24;
  color: #b4b6c0;
  border-color: #374151;
}

.service-modal-button-secondary:hover {
  background: #f8fafc;
  border-color: #94a3b8;
}

:root[data-theme="dark"] .service-modal-button-secondary:hover {
  background: #2a2a35;
  border-color: #4a5568;
}

/* Responsive Modal Styles */
@media (max-width: 768px) {
  .service-modal-body {
    padding: 2rem 1.5rem;
  }

  .service-modal-header {
    flex-direction: column;
    text-align: center;
  }

  .service-modal-icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }

  .service-modal-title {
    font-size: 1.75rem;
  }

  .service-modal-features {
    grid-template-columns: 1fr;
  }

  .service-modal-cta {
    flex-direction: column;
  }

  .service-modal-button,
  .service-modal-button-secondary {
    width: 100%;
  }
}

/* Blog Modal Specific Styles */
.blog-modal-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e2e8f0;
}

:root[data-theme="dark"] .blog-modal-header {
  border-bottom-color: #2a2a35;
}

.blog-modal-category {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  border: 1px solid;
}

.blog-modal-meta {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.blog-modal-date,
.blog-modal-author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #64748b;
}

:root[data-theme="dark"] .blog-modal-date,
:root[data-theme="dark"] .blog-modal-author {
  color: #94a3b8;
}

.blog-modal-date i,
.blog-modal-author i {
  font-size: 0.875rem;
}

.blog-modal-image {
  margin-bottom: 2rem;
  border-radius: 0.75rem;
  overflow: hidden;
}

.blog-modal-description {
  margin-bottom: 2rem;
}

.blog-modal-description p {
  font-size: 1.125rem;
  color: #475569;
  line-height: 1.7;
  font-weight: 500;
}

:root[data-theme="dark"] .blog-modal-description p {
  color: #cbd5e1;
}

.blog-modal-section {
  margin-bottom: 2rem;
}

.blog-modal-first-section {
  margin-top: 0;
}

.blog-modal-paragraph {
  font-size: 1rem;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

:root[data-theme="dark"] .blog-modal-paragraph {
  color: #b4b6c0;
}

.blog-modal-paragraph:last-child {
  margin-bottom: 0;
}

.blog-modal-subsection {
  margin-top: 1.5rem;
  padding: 1rem;
  background: #f8fafc;
  border-left: 3px solid #667eea;
  border-radius: 0.5rem;
}

:root[data-theme="dark"] .blog-modal-subsection {
  background: #2a2a35;
  border-left-color: #8b5cf6;
}

.blog-modal-subheading {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

:root[data-theme="dark"] .blog-modal-subheading {
  color: #ffffff;
}

.blog-modal-subsection .blog-modal-paragraph {
  margin-bottom: 0;
  font-size: 0.9375rem;
}

/* Responsive Blog Modal */
@media (max-width: 768px) {
  .blog-modal-meta {
    flex-direction: column;
    gap: 0.75rem;
  }

  .blog-modal-image {
    margin-bottom: 1.5rem;
  }

  .blog-modal-description p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .blog-modal-category {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
  }

  .blog-modal-date,
  .blog-modal-author {
    font-size: 0.8rem;
  }
}

/* FAQ Section Styles */
.faq-section {
  padding: 5rem 0;
  background: #f8fafc;
}

:root[data-theme="dark"] .faq-section {
  background: #0a0a0f;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  transition: all 0.3s ease;
}

:root[data-theme="dark"] .faq-item {
  background: #1a1a24;
  border-color: #2a2a35;
}

.faq-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: rgba(102, 126, 234, 0.3);
}

:root[data-theme="dark"] .faq-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  border-color: rgba(102, 126, 234, 0.5);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #f8fafc;
}

:root[data-theme="dark"] .faq-question:hover {
  background-color: #2a2a35;
}

.faq-question.active {
  background-color: #f1f5f9;
  border-bottom: 1px solid #e2e8f0;
}

:root[data-theme="dark"] .faq-question.active {
  background-color: #2a2a35;
  border-bottom-color: #3a3a48;
}

.faq-question h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  margin: 0;
  flex: 1;
  padding-right: 1rem;
}

:root[data-theme="dark"] .faq-question h4 {
  color: #ffffff;
}

.faq-question i {
  color: #667eea;
  font-size: 1rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

:root[data-theme="dark"] .faq-question i {
  color: #8b5cf6;
}

.faq-question.active i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.5rem;
}

.faq-answer.active {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-answer p {
  color: #475569;
  line-height: 1.7;
  margin: 0;
  font-size: 1rem;
}

:root[data-theme="dark"] .faq-answer p {
  color: #b4b6c0;
}

/* Responsive FAQ */
@media (max-width: 768px) {
  .faq-section {
    padding: 4rem 0;
  }

  .faq-question {
    padding: 1.25rem;
  }

  .faq-question h4 {
    font-size: 1rem;
  }

  .faq-answer.active {
    padding: 0 1.25rem 1.25rem 1.25rem;
  }
}

@media (max-width: 480px) {
  .faq-section {
    padding: 3rem 0;
  }

  .faq-question {
    padding: 1rem;
  }

  .faq-question h4 {
    font-size: 0.9375rem;
  }

  .faq-answer.active {
    padding: 0 1rem 1rem 1rem;
  }

  .faq-answer p {
    font-size: 0.9375rem;
  }
}

@media (max-width: 480px) {
  .service-modal-content {
    border-radius: 1rem;
    max-height: 95vh;
  }

  .service-modal-body {
    padding: 1.5rem 1rem;
  }

  .service-modal-title {
    font-size: 1.5rem;
  }

  .service-modal-section-title {
    font-size: 1.25rem;
  }

  .service-modal-close {
    top: 0.75rem;
    right: 0.75rem;
    width: 2rem;
    height: 2rem;
    font-size: 1rem;
  }
}