/* From index.php */

/* Critical above-the-fold styles for performance */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #1e293b;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 30%, #f1f5f9 100%);
    min-height: 100vh;
    padding-top: 80px;
}

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #0a3d62, #0d9488);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    word-break: break-word;
    overflow-wrap: anywhere;
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.25rem;
    }
}

/* Hide skip to content link completely - accessibility removed for cleaner design */
.skip-to-content, 
.skip-link,
a[href="#main-content"],
.visually-hidden-focusable,
.screen-reader-text,
[aria-label="Skip to main content"] {
    display: none !important;
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0,0,0,0) !important;
    border: 0 !important;
    pointer-events: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    z-index: -9999 !important;
}

/* External CSS loaded separately for better caching */
/* Cache bust: 2026-01-28-20-09 */
:root {
  /* Enterprise/Government Color Palette */
  --primary-blue: #0a3d62;
  --primary-blue-dark: #072a44;
  --primary-blue-light: #1a5a8a;
  --accent-teal: #0d9488;
  --accent-gold: #b8860b;
  --accent-amber: #f59e0b;
  --neutral-dark: #1e293b;
  --neutral-gray: #64748b;
  --neutral-light: #f8fafc;
  --neutral-white: #ffffff;
  --success-green: #10b981;
  --warning-orange: #f97316;
  --error-red: #ef4444;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 3rem;
  --space-xl: 4rem;
  --space-xxl: 6rem;
  
  /* Typography */
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'SF Mono', 'Roboto Mono', Consolas, 'Liberation Mono', Menlo, monospace;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-blue: 0 10px 25px -5px rgba(10, 102, 194, 0.2);
  
  /* Borders */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== BASE RESET & TYPOGRAPHY ===== */
.home-professional {
  font-family: var(--font-body);
  color: var(--neutral-dark);
  line-height: 1.6;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 30%, #f1f5f9 100%);
  min-height: 100vh;
}

@media (max-width: 768px) {
  /* Mobile styles handled by body padding */
}

.home-professional .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  width: 100%;
}

.home-professional h1, 
.home-professional h2, 
.home-professional h3, 
.home-professional h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-sm);
  color: var(--neutral-dark);
}

.home-professional h2 {
  font-size: 2.5rem;
  letter-spacing: -0.025em;
  position: relative;
  display: inline-block;
}

.home-professional h2::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 4rem;
  height: 0.25rem;
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-teal));
  border-radius: var(--radius-full);
}

.home-professional h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--neutral-dark);
}

.home-professional p {
  color: var(--neutral-gray);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--neutral-gray);
  max-width: 768px;
  margin: 0 auto var(--space-xl);
  text-align: center;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-header h2 {
  margin-bottom: var(--space-sm);
}

/* ===== ENTERPRISE HERO SECTION ===== */
.enterprise-hero {
  padding: var(--space-xxl) var(--space-md) var(--space-xxl); /* main already has header offset */
  background: linear-gradient(135deg, var(--neutral-white) 0%, #f0f7ff 100%);
  position: relative;
  overflow: hidden;
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  animation: fadeInUp 0.8s ease-out;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--space-md);
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.hero-tagline {
  font-size: 1.25rem;
  color: var(--neutral-gray);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
  position: relative;
  padding-left: var(--space-md);
}

.hero-tagline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 3px;
  background: linear-gradient(to bottom, var(--primary-blue), var(--accent-teal));
  border-radius: var(--radius-full);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, rgba(10, 61, 98, 0.1), rgba(13, 148, 136, 0.1));
  color: var(--primary-blue);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
  border: 1px solid rgba(10, 61, 98, 0.2);
}

.hero-badge i {
  color: var(--success-green);
}

.hero-trust-badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: var(--space-lg);
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary-blue);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.trust-badge i {
  color: var(--accent-teal);
}

.hero-highlight {
  display: block;
  font-size: 0.5em;
  margin-top: 0.5rem;
  background: linear-gradient(135deg, var(--accent-teal), var(--accent-amber));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}

.hero-image-wrapper {
  position: relative;
}

.hero-floating-card {
  position: absolute;
  background: white;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: float 3s ease-in-out infinite;
}

.hero-floating-card i {
  font-size: 1.5rem;
  color: var(--accent-teal);
}

.hero-floating-card span {
  font-weight: 600;
  color: var(--neutral-dark);
}

.hero-floating-card-1 {
  top: 20%;
  left: -10%;
  animation-delay: 0s;
}

.hero-floating-card-2 {
  bottom: 20%;
  right: -5%;
  animation-delay: 1.5s;
}

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

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.hero-stats {
  display: flex;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
  padding: var(--space-md);
  background: var(--neutral-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(10, 102, 194, 0.1);
}

.stat-item {
  text-align: center;
  flex: 1;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-blue);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--neutral-gray);
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  animation: fadeIn 0.8s ease-out 0.3s both;
}

.hero-visual img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform var(--transition-base);
}

.hero-visual:hover img {
  transform: perspective(1000px) rotateY(0deg);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 50%, rgba(10, 102, 194, 0.05) 50%);
  z-index: 1;
}

/* ===== PROFESSIONAL SERVICES SECTION ===== */
.professional-services {
  padding: var(--space-xxl) 0;
  background: var(--neutral-white);
  position: relative;
}

.services-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.services-header h2 {
  font-size: 2.75rem;
  margin-bottom: var(--space-sm);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.service-card-pro {
  background: var(--neutral-white);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  transition: all var(--transition-base);
  border: 1px solid rgba(10, 102, 194, 0.1);
  box-shadow: var(--shadow-md);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-card-pro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-teal));
  transform: translateY(-100%);
  transition: transform var(--transition-base);
}

.service-card-pro:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(10, 102, 194, 0.2);
}

.service-card-pro:hover::before {
  transform: translateY(0);
}

.service-icon-wrapper {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-teal));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-blue);
}

.service-icon-wrapper img {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1);
}

.service-card-pro h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
  color: var(--neutral-dark);
}

.service-card-pro p {
  color: var(--neutral-gray);
  line-height: 1.7;
  margin-bottom: var(--space-md);
  flex-grow: 1;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: var(--space-md) 0;
}

.service-features li {
  padding: 0.5rem 0;
  color: var(--neutral-gray);
  position: relative;
  padding-left: 1.5rem;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success-green);
  font-weight: bold;
}

.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: gap var(--transition-base);
}

.service-cta:hover {
  gap: 0.75rem;
}

/* ===== SERVICES SHOWCASE SECTION ===== */
.services-showcase {
  padding: 6rem 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
  position: relative;
  overflow: hidden;
}

.services-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(10, 61, 98, 0.2), transparent);
}

.services-showcase-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

.section-label {
  display: inline-block;
  background: linear-gradient(135deg, rgba(10, 61, 98, 0.1), rgba(13, 148, 136, 0.1));
  color: var(--primary-blue);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.services-showcase-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--neutral-dark);
  margin-bottom: 1rem;
}

.services-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

/* Modern Service Card */
.service-card-modern {
  perspective: 1000px;
  height: 320px;
}

.service-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

.service-card-modern:hover .service-card-inner {
  transform: rotateY(180deg);
}

.service-card-front,
.service-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.service-card-front {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(10, 61, 98, 0.1);
  justify-content: center;
  align-items: center;
  text-align: center;
}

.service-card-back {
  background: linear-gradient(135deg, #0a3d62 0%, #0d9488 100%);
  transform: rotateY(180deg);
  color: white;
  justify-content: center;
}

.service-icon-container {
  position: relative;
  width: 90px;
  height: 90px;
  margin-bottom: 1.5rem;
}

.service-icon-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-teal));
  border-radius: 24px;
  transform: rotate(0deg);
  transition: transform 0.3s ease;
  opacity: 0.1;
}

.service-card-modern:hover .service-icon-bg {
  transform: rotate(10deg);
  opacity: 0.15;
}

.service-icon {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  margin: 21px;
  filter: hue-rotate(0deg);
}

.service-icon-fa {
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin: 17px;
}

.service-card-front h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--neutral-dark);
  margin-bottom: 0.75rem;
}

.service-short-desc {
  font-size: 0.9rem;
  color: var(--neutral-gray);
  line-height: 1.5;
}

.service-card-back h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.service-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.service-features-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.95);
}

.service-features-list li i {
  font-size: 0.75rem;
  color: var(--accent-amber);
}

.service-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.service-link-btn:hover {
  background: white;
  color: var(--primary-blue);
}

.services-cta-section {
  text-align: center;
  margin-top: 4rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(10, 61, 98, 0.05), rgba(13, 148, 136, 0.05));
  border-radius: 20px;
}

.services-cta-section p {
  font-size: 1.25rem;
  color: var(--neutral-gray);
  margin-bottom: 1.5rem;
}

/* Mobile Styles for Service Cards */
@media (max-width: 768px) {
  .service-card-modern {
    height: auto;
    min-height: 280px;
  }

  .service-card-back {
    display: flex;
  }
}

/* ===== WHY CHOOSE SECTION ===== */
.why-choose-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #0a3d62 0%, #072a44 100%);
  color: white;
}

.why-choose-header {
  text-align: center;
  margin-bottom: 3rem;
}

.why-choose-header h2 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.why-choose-header .section-subtitle {
  color: rgba(255, 255, 255, 0.85);
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.why-choose-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.why-choose-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.why-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #b8860b, #d4a520);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.why-icon i {
  font-size: 1.75rem;
  color: white;
}

.why-choose-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: white;
}

.why-choose-card p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0;
}

.section-label-light {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

/* ===== INDUSTRIES SECTION ===== */
.industries-section {
  padding: 6rem 0;
  background: #ffffff;
}

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

.industries-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--neutral-dark);
  margin-bottom: 1rem;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.industry-card {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(10, 61, 98, 0.1);
  transition: all 0.3s ease;
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-blue);
}

.industry-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-teal));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.industry-icon i {
  font-size: 1.5rem;
  color: white;
}

.industry-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--neutral-dark);
  margin-bottom: 0.75rem;
}

.industry-card p {
  font-size: 0.95rem;
  color: var(--neutral-gray);
  line-height: 1.6;
}

/* ===== PROCESS SECTION ===== */
/* ===== ENTERPRISE CLIENTS SECTION ===== */
.enterprise-clients {
  padding: var(--space-xl) 0;
  background: var(--neutral-light);
  border-top: 1px solid rgba(10, 102, 194, 0.1);
  border-bottom: 1px solid rgba(10, 102, 194, 0.1);
}

.clients-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.clients-header h3 {
  font-size: 1.5rem;
  color: var(--neutral-dark);
  font-weight: 700;
  margin-top: 0.5rem;
}

/* Trust Containers */
.trust-containers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: var(--space-xl);
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.trust-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(10, 102, 194, 0.1);
  transition: all var(--transition-base);
}

.trust-container:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-blue);
}

.trust-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-teal));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-icon i {
  color: white;
  font-size: 1.25rem;
}

.trust-container span {
  font-weight: 600;
  color: var(--neutral-dark);
  font-size: 0.95rem;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-lg);
  align-items: center;
}

.client-logo {
  padding: var(--space-md);
  background: var(--neutral-white);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  transition: all var(--transition-base);
  border: 1px solid rgba(10, 102, 194, 0.05);
}

.client-logo:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(10, 102, 194, 0.1);
}

.client-logo img {
  max-width: 120px;
  max-height: 40px;
  filter: grayscale(100%) opacity(0.7);
  transition: filter var(--transition-base);
}

.client-logo:hover img {
  filter: grayscale(0%) opacity(1);
}

/* ===== CASE STUDIES SECTION ===== */
.case-studies {
  padding: var(--space-xxl) 0;
  background: var(--neutral-white);
}

.case-study-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.case-study-card {
  background: var(--neutral-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-base);
  border: 1px solid rgba(10, 102, 194, 0.1);
  height: 100%;
}

.case-study-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.case-study-image {
  height: 220px;
  overflow: hidden;
}

.case-study-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.case-study-card:hover .case-study-image img {
  transform: scale(1.05);
}

.case-study-content {
  padding: var(--space-lg);
}

.case-study-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(10, 102, 194, 0.1);
  color: var(--primary-blue);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.case-study-content h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
  color: var(--neutral-dark);
}

.case-study-stats {
  display: flex;
  gap: var(--space-md);
  margin: var(--space-md) 0;
  padding: var(--space-md);
  background: var(--neutral-light);
  border-radius: var(--radius-lg);
}

.case-study-stat {
  text-align: center;
  flex: 1;
}

.case-study-stat .number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.case-study-stat .label {
  font-size: 0.875rem;
  color: var(--neutral-gray);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
  padding: var(--space-xxl) 0;
  background: var(--neutral-white);
  border-top: 1px solid rgba(10, 102, 194, 0.1);
  border-bottom: 1px solid rgba(10, 102, 194, 0.1);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.testimonial-card {
  background: linear-gradient(135deg, #f8fafc 0%, #f0f4f8 100%);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(10, 102, 194, 0.1);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  right: 15px;
  font-size: 5rem;
  color: rgba(10, 102, 194, 0.1);
  font-family: serif;
  z-index: 0;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(10, 102, 194, 0.2);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 1;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-teal));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.testimonial-info h3 {
  font-size: 1rem;
  margin: 0;
  color: var(--neutral-dark);
  font-weight: 600;
}

.testimonial-info p {
  font-size: 0.875rem;
  color: var(--neutral-gray);
  margin: 0.25rem 0 0;
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 1;
}

.testimonial-rating .star {
  color: #fbbf24;
  font-size: 1rem;
}

.testimonial-content {
  flex: 1;
  margin-bottom: var(--space-md);
  color: var(--neutral-gray);
  line-height: 1.6;
  font-style: italic;
  position: relative;
  z-index: 1;
}

/* ===== EXPERTISE SECTION ===== */
.expertise-section {
  padding: var(--space-xxl) 0;
  background: linear-gradient(135deg, var(--neutral-light) 0%, #e6f0ff 100%);
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.expertise-card {
  background: var(--neutral-white);
  padding: var(--space-lg);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  border: 1px solid rgba(10, 102, 194, 0.1);
  text-align: center;
}

.expertise-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(10, 102, 194, 0.2);
}

.expertise-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto var(--space-md);
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-teal));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-blue);
}

.expertise-icon img {
  width: 36px;
  height: 36px;
  filter: brightness(0) invert(1);
}

.expertise-card h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

/* ===== ENTERPRISE CTA SECTION ===== */
.enterprise-cta {
  padding: var(--space-xxl) 0;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
  color: var(--neutral-white);
  position: relative;
  overflow: hidden;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-size: 2.75rem;
  margin-bottom: var(--space-md);
  color: var(--neutral-white);
}

.cta-content h2::after {
  background: var(--neutral-white);
  left: 50%;
  transform: translateX(-50%);
}

.cta-content p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-xl);
}

.cta-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

.cta-trust-note {
  margin-top: 2rem;
  text-align: center;
}

.cta-trust-note p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  margin: 0;
}

.cta-trust-note i {
  color: var(--accent-amber);
  margin: 0 0.25rem;
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  z-index: 1;
}

/* ===== PROFESSIONAL BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  white-space: normal;
  text-align: center;
  z-index: 1;
}

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

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
  color: var(--neutral-white);
  box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(10, 102, 194, 0.3);
  color: var(--neutral-white);
}

.btn-secondary {
  background: var(--neutral-white);
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
  background: var(--primary-blue);
  color: var(--neutral-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
}

.btn-white {
  background: var(--neutral-white);
  color: var(--primary-blue);
  box-shadow: var(--shadow-lg);
}

.btn-white:hover {
  background: var(--neutral-light);
  color: var(--primary-blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

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

.btn-outline-white:hover {
  background: var(--neutral-white);
  color: var(--primary-blue);
  transform: translateY(-2px);
}

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

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

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 2.75rem;
  }
  
  .hero-tagline {
    padding-left: 0;
  }
  
  .hero-tagline::before {
    display: none;
  }
  
  .hero-visual img {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .services-header h2,
  .cta-content h2 {
    font-size: 2.25rem;
  }
}

@media (max-width: 768px) {
  :root {
    --space-xl: 3rem;
    --space-xxl: 4rem;
  }
  
  .hero-content h1 {
    font-size: 2.25rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: var(--space-md);
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  /* Hero padding for mobile - main has header offset */
  .enterprise-hero {
    padding: var(--space-xl) var(--space-sm) var(--space-xl);
  }
  
  .services-grid,
  .case-study-grid,
  .expertise-grid {
    grid-template-columns: 1fr;
  }
  
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.875rem;
  }
  
  .hero-tagline {
    font-size: 1.125rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .clients-grid {
    grid-template-columns: 1fr;
  }
  
  .case-study-stats {
    flex-direction: column;
  }
  
  /* Force full width buttons on very small screens */
  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
    margin-bottom: var(--space-xs);
  }
  
  /* Reduce container padding on very small screens */
  .home-professional .container {
    padding: 0;
  }
}

/* ===== MOBILE UX & OVERLAP FIXES ===== */
@media (max-width: 768px) {
  /* Mobile styles handled by body padding */
  .hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 2.25rem;
  }
  
  /* Ensure content doesn't overlap fixed header - consistent with glossy-agency */
  .home-professional {
    min-height: 0;
  }
  
  /* Touch-friendly tap targets (min 44px) */
  .btn, .service-cta, .blog-read-more, .nav-link, .enhanced-faq-question {
    min-height: 44px;
    min-width: 44px;
    padding: 0.75rem 1rem;
  }
  
  /* Reduce button gap on mobile */
  .btn {
    gap: 0.5rem;
  }
  
  /* Safe area for notched devices */
  .header-container {
    padding-left: max(1.5rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
  }
  
  /* Hero image fixes */
  .hero-visual img {
    transform: none !important; /* Remove rotation on mobile to prevent overlap */
    max-width: 100%;
    height: auto;
  }
  
  /* Hero stats stacking */
  .hero-stats {
    flex-direction: column;
    gap: var(--space-sm);
    padding: var(--space-sm);
  }
  
  /* Hero container reordering */
  .hero-container {
    display: flex;
    flex-direction: column;
    padding-top: var(--space-xl);
  }
  
  .hero-visual {
    order: -1; /* Moves image above text on mobile to prevent text overlap */
    margin-bottom: var(--space-md);
  }
  
  .hero-content h1 {
    font-size: 2rem;
    line-height: 1.2;
  }
}

/* Prevent horizontal scroll on mobile */
html, body {
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===== PRINT STYLES ===== */
@media print {
  .hero-buttons,
  .client-logo,
  .case-study-card:hover,
  .service-card-pro:hover {
    break-inside: avoid;
  }
  
  .btn::before,
  .case-study-image img,
  .service-card-pro::before {
    display: none !important;
  }
  
  .hero-visual img,
  .case-study-card,
  .service-card-pro {
    box-shadow: none !important;
    border: 1px solid #ddd !important;
  }
}


/* From services.php */

/* ===== Enhanced Services Page Styles ===== */
.services-page {
    background: var(--glossy-darker);
    color: var(--glossy-text);
    position: relative;
}

/* Header offset for smooth scrolling */
:root {
    --header-offset: 80px;
}

/* Service detail sections with smooth scrolling target */
.service-detail {
    scroll-margin-top: calc(var(--header-offset) + 20px);
    position: relative;
}

/* Enhanced Hero Section */
.hero-section {
    background: linear-gradient(135deg, 
        rgba(var(--glossy-primary-rgb, 37, 99, 235), 0.95), 
        rgba(var(--glossy-secondary-rgb, 59, 130, 246), 0.95)),
        url('/images/patterns/network-bg.jpg') center/cover;
    padding: 8rem 1rem 4rem;
    position: relative;
    overflow: hidden;
    color: white;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shine 3s infinite;
    z-index: -1;
}

@keyframes shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.hero-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    opacity: 0.9;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.6;
    position: relative;
}

/* Enhanced Services Grid */
.services-overview {
    padding: clamp(3rem, 6vw, 5rem) 1rem;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.services-overview h2 {
    text-align: center;
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1e293b;
}

.section-subtitle {
    text-align: center;
    color: #64748b;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f1f5f9;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--glossy-primary), var(--glossy-secondary));
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: 1;
}

.service-card:hover::before {
    transform: translateX(0);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--glossy-primary);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--glossy-primary) 0%, var(--glossy-secondary) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon img {
    width: 36px;
    height: 36px;
    filter: brightness(0) invert(1);
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: var(--glossy-primary);
}

.service-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.service-features li {
    background: rgba(var(--glossy-primary-rgb, 37, 99, 235), 0.1);
    color: var(--glossy-primary);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Enhanced service detail sections */
.service-detail {
    padding: clamp(4rem, 6vw, 6rem) 1rem;
    background: white;
    position: relative;
}

.service-detail.alternate {
    background: #f8fafc;
}

.service-detail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--glossy-primary), var(--glossy-secondary));
}

.service-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.service-detail-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
}

.service-detail-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(var(--glossy-primary-rgb, 37, 99, 235), 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-detail-image:hover::after {
    opacity: 1;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.service-detail-image:hover img {
    transform: scale(1.05);
}

.service-detail-content {
    position: relative;
}

.service-icon-wrapper {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--glossy-primary) 0%, var(--glossy-secondary) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon-wrapper img {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
}

.service-detail-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #1e293b;
    position: relative;
}

.service-detail-content h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--glossy-primary), var(--glossy-secondary));
    border-radius: 2px;
}

.service-detail-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
    color: #1e293b;
}

.service-detail-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.service-list {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.service-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #475569;
    font-size: 1.05rem;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--glossy-primary);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Enhanced CTA buttons in service details */
.service-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.service-cta .glossy-btn {
    padding: 0.875rem 1.75rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.service-cta .glossy-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(var(--glossy-primary-rgb, 37, 99, 235), 0.3);
}

/* Enhanced Process Section */
.process-section {
    padding: clamp(4rem, 6vw, 6rem) 1rem;
    background: linear-gradient(135deg, var(--glossy-primary) 0%, var(--glossy-secondary) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/images/patterns/circuit-board.svg') center/cover;
    opacity: 0.1;
    z-index: 0;
}

.process-section .glossy-heading {
    color: white;
    background: none;
    -webkit-text-fill-color: white;
    margin-bottom: 1rem;
}

.process-section .glossy-subtitle {
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.process-step {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: 0;
}

.process-step:hover::before {
    transform: translateX(100%);
}

.process-step:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
    display: block;
    opacity: 0.8;
}

.process-step h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.process-step p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.6;
}

/* Enhanced CTA Section */
.cta-section {
    padding: clamp(4rem, 6vw, 6rem) 1rem;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    text-align: center;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/images/patterns/dots.svg') center/cover;
    opacity: 0.1;
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content .glossy-heading {
    color: white;
    background: none;
    -webkit-text-fill-color: white;
    margin-bottom: 1rem;
}

.cta-content .glossy-subtitle {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.cta-buttons .glossy-btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.cta-buttons .glossy-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

/* Target flash highlight */
@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(var(--glossy-primary-rgb, 37, 99, 235), 0.6) inset;
    }
    100% {
        box-shadow: 0 0 0 999px rgba(var(--glossy-primary-rgb, 37, 99, 235), 0) inset;
    }
}

.service-detail:target {
    animation: pulse-glow 1s ease-out;
}

/* Scroll progress indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--glossy-primary), var(--glossy-secondary));
    transform-origin: left;
    transform: scaleX(0);
    z-index: 9999;
    transition: transform 0.1s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 7rem 1rem 3rem;
    }
    
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .service-cta {
        flex-direction: column;
    }
    
    .service-cta .glossy-btn {
        width: 100%;
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .glossy-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
}

/* Compliance Section */
.compliance-section {
    padding: 5rem 1rem;
    background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
}

.compliance-title {
    text-align: center;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #0a3d62;
}

.compliance-subtitle {
    text-align: center;
    color: #64748b;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.compliance-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e2e8f0;
}

.compliance-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.compliance-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0a3d62, #0d9488);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.compliance-icon i {
    color: white;
    font-size: 1.5rem;
}

.compliance-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.compliance-item p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Print styles */
@media print {
    .service-card,
    .service-detail {
        break-inside: avoid;
        box-shadow: none !important;
        border: 1px solid #ddd !important;
    }
    
    .process-section,
    .cta-section {
        display: none !important;
    }
}


/* From contact.php */

            body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; margin: 0; padding: 0; background: #f5f5f5; }
            .wrapper { min-height: 100vh; display: flex; flex-direction: column; }
            .main-content { flex: 1; }
        

/* From about.php */

/* ===== ABOUT PAGE STYLES ===== */
:root {
    --section-spacing: 5rem;
    --card-spacing: 2rem;
}

@media (max-width: 768px) {
    :root {
        --section-spacing: 3rem;
    }
}

/* Base adjustments */
.home-professional {
    padding-top: 70px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 30%, #f1f5f9 100%);
}

@media (min-width: 769px) {
    .home-professional {
        padding-top: 80px;
    }
}

/* Hero Section */
.about-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: var(--neutral-white);
    padding: var(--space-xxl) 0;
    position: relative;
    overflow: hidden;
    margin-bottom: var(--section-spacing);
}

.about-hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-label {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: var(--neutral-white);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-md);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-top: var(--space-lg);
    flex-wrap: wrap;
}

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

.hero-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--neutral-white);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.hero-stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-label {
    display: inline-block;
    background: linear-gradient(135deg, rgba(10, 61, 98, 0.1), rgba(13, 148, 136, 0.1));
    color: var(--primary-blue);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--neutral-gray);
    max-width: 768px;
    margin: 0 auto var(--space-xl);
    text-align: center;
    line-height: 1.7;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: var(--space-md);
    color: var(--neutral-white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.about-hero p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto var(--space-lg);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/images/patterns/dots.svg') repeat;
    opacity: 0.1;
    z-index: 1;
}

/* Company Overview Card */
.company-overview {
    padding: var(--section-spacing) 0;
    background: var(--neutral-light);
}

.overview-card {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
    background: var(--neutral-white);
    padding: var(--space-xl);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
}

.overview-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-base);
}

.overview-image:hover {
    transform: scale(1.02);
}

.overview-content h2 {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
    color: var(--neutral-dark);
}

.overview-content h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-teal));
    margin: var(--space-sm) 0 var(--space-md);
    border-radius: var(--radius-full);
}

.overview-content p {
    margin-bottom: var(--space-md);
    line-height: 1.7;
    color: var(--neutral-gray);
    font-size: 1.05rem;
}

/* Mission & Vision Section */
.mission-vision {
    padding: var(--section-spacing) 0;
    background: var(--neutral-white);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.mission-card {
    background: linear-gradient(135deg, var(--neutral-light), var(--neutral-white));
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(10, 102, 194, 0.1);
    transition: all var(--transition-base);
    height: 100%;
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(10, 102, 194, 0.2);
}

.mission-icon {
    width: 70px;
    height: 70px;
    margin-bottom: var(--space-md);
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-blue);
}

.mission-icon i {
    font-size: 1.75rem;
    color: var(--neutral-white);
}

.mission-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
    color: var(--neutral-dark);
}

.mission-card p {
    color: var(--neutral-gray);
    line-height: 1.7;
    margin-bottom: 0;
}

.mission-card strong {
    color: var(--primary-blue);
    font-weight: 600;
}

/* Services Grid Section */
.services-grid-section {
    padding: var(--section-spacing) 0;
    background: var(--neutral-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.service-item {
    background: var(--neutral-white);
    padding: var(--space-lg);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 1px solid rgba(10, 102, 194, 0.1);
    text-decoration: none;
    display: block;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-blue);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: var(--space-md);
    background: linear-gradient(135deg, rgba(10, 61, 98, 0.1), rgba(13, 148, 136, 0.1));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 1.5rem;
    color: var(--primary-blue);
}

.service-item h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
    color: var(--neutral-dark);
}

.service-item p {
    color: var(--neutral-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Process Timeline Section */
.process-section {
    padding: var(--section-spacing) 0;
    background: var(--neutral-white);
}

.process-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-teal));
    opacity: 0.3;
}

.process-number {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-md);
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: var(--neutral-white);
    box-shadow: var(--shadow-blue);
    position: relative;
    z-index: 2;
}

.process-content h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
    color: var(--neutral-dark);
}

.process-content p {
    color: var(--neutral-gray);
    line-height: 1.7;
    margin-bottom: 0;
    font-size: 0.95rem;
}
.about-stats {
    padding: var(--section-spacing) 0;
    background: linear-gradient(135deg, var(--neutral-dark) 0%, #1e293b 100%);
    color: var(--neutral-white);
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    text-align: center;
}

.about-stat-item {
    padding: var(--space-lg);
}

.about-stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: var(--space-xs);
    color: var(--neutral-white);
    line-height: 1;
}

.about-stat-label {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Why Choose Section */
.why-choose {
    padding: var(--section-spacing) 0;
    background: var(--neutral-light);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.why-choose-card {
    background: var(--neutral-white);
    padding: var(--space-lg);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 1px solid rgba(10, 102, 194, 0.1);
    text-align: center;
    height: 100%;
}

.why-choose-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-blue);
}

.why-choose-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--space-md);
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-blue);
}

.why-choose-icon i {
    font-size: 1.75rem;
    color: var(--neutral-white);
}

.why-choose-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
    color: var(--neutral-dark);
}

.why-choose-card p {
    color: var(--neutral-gray);
    line-height: 1.7;
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* CTA Section */
.about-cta {
    padding: var(--section-spacing) 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-teal) 100%);
    color: var(--neutral-white);
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    text-align: center;
}

.about-cta h2 {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
    color: var(--neutral-white);
}

.about-cta p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn-primary, .cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    border: none;
    cursor: pointer;
}

.cta-btn-primary {
    background: var(--neutral-white);
    color: var(--primary-blue);
    box-shadow: var(--shadow-lg);
}

.cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    color: var(--primary-blue);
}

.cta-btn-secondary {
    background: transparent;
    color: var(--neutral-white);
    border: 2px solid var(--neutral-white);
}

.cta-btn-secondary:hover {
    background: var(--neutral-white);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .overview-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .about-hero h1 {
        font-size: 2.75rem;
    }
    
    .overview-image {
        height: 350px;
    }
    
    .mission-grid,
    .services-grid,
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-step:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: var(--space-xxl) 0;
    }
    
    .about-hero h1 {
        font-size: 2.25rem;
    }
    
    .about-hero p {
        font-size: 1.125rem;
    }
    
    .overview-content h2,
    .about-cta h2 {
        font-size: 2rem;
    }
    
    .overview-grid {
        padding: var(--space-lg);
    }
    
    .mission-grid,
    .services-grid,
    .why-choose-grid,
    .process-timeline {
        grid-template-columns: 1fr;
    }
    
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .about-hero p {
        font-size: 1rem;
    }
    
    .about-stat-number {
        font-size: 2.5rem;
    }
    
    .about-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .overview-grid {
        padding: var(--space-md);
    }
}

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

.about-hero,
.company-overview,
.values-section,
.about-stats,
.service-areas,
.about-cta {
    animation: fadeIn 0.6s ease-out;
}

/* Performance Optimizations */
.overview-image {
    loading: lazy;
    fetchpriority: low;
}

.value-icon i,
.area-icon i {
    font-display: swap;
}

/* Print Styles */
@media print {
    .cta-buttons,
    .value-card:hover,
    .area-card:hover {
        break-inside: avoid;
    }
    
    .about-hero {
        background: white !important;
        color: black !important;
    }
    
    .about-stat-number,
    .about-hero h1,
    .team-header h2 {
        color: black !important;
    }
}



