:root {
  /* Premium Palette - Enhanced Design System */
  --primary: #4F46E5;
  /* Indigo 600 */
  --primary-light: #818CF8;
  /* Indigo 400 */
  --primary-dark: #3730A3;
  /* Indigo 800 */
  --primary-hover: #5B52F0;
  /* Indigo 500 */

  --secondary: #0EA5E9;
  /* Sky 500 */
  --secondary-light: #38BDF8;
  /* Sky 400 */
  --secondary-dark: #0284C7;
  /* Sky 600 */

  --accent: #F472B6;
  /* Pink 400 */
  --accent-light: #F9A8D4;
  /* Pink 300 */
  --accent-dark: #EC4899;
  /* Pink 500 */

  --navy: #0F172A;
  /* Slate 900 */
  --navy-light: #1E293B;
  /* Slate 800 */
  --navy-lighter: #334155;
  /* Slate 700 */

  --text-main: #0F172A;
  --text-dark: #0F172A;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  --text-lighter: #CBD5E1;
  /* Slate 300 */

  --bg-light: #F8FAFC;
  /* Slate 50 */
  --bg-white: #FFFFFF;
  --bg-gray: #F1F5F9;
  /* Slate 100 */

  /* Glassmorphism - Enhanced */
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.5);
  --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
  --glass-bg-dark: rgba(15, 23, 42, 0.7);
  --glass-border-dark: rgba(255, 255, 255, 0.1);

  /* Shadows - Enhanced Professional System */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  --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-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-glow: 0 0 20px rgba(79, 70, 229, 0.35);
  --shadow-glow-lg: 0 0 40px rgba(79, 70, 229, 0.4);
  --shadow-primary: 0 10px 30px rgba(79, 70, 229, 0.3);
  --shadow-secondary: 0 10px 30px rgba(14, 165, 233, 0.3);

  /* Border Radius - Consistent System */
  --radius-sm: 0.375rem;
  /* 6px */
  --radius-md: 0.5rem;
  /* 8px */
  --radius-lg: 0.75rem;
  /* 12px */
  --radius-xl: 1rem;
  /* 16px */
  --radius-2xl: 1.5rem;
  /* 24px */
  --radius-full: 9999px;
  /* Full rounded */

  /* Spacing - Enhanced System */
  --spacing-xs: 0.25rem;
  /* 4px */
  --spacing-sm: 0.5rem;
  /* 8px */
  --spacing-md: 1rem;
  /* 16px */
  --spacing-lg: 1.5rem;
  /* 24px */
  --spacing-xl: 2rem;
  /* 32px */
  --spacing-2xl: 3rem;
  /* 48px */
  --spacing-3xl: 4rem;
  /* 64px */

  /* Typography - Professional Scale */
  --font-size-xs: 0.75rem;
  /* 12px */
  --font-size-sm: 0.875rem;
  /* 14px */
  --font-size-base: 1rem;
  /* 16px */
  --font-size-lg: 1.125rem;
  /* 18px */
  --font-size-xl: 1.25rem;
  /* 20px */
  --font-size-2xl: 1.5rem;
  /* 24px */
  --font-size-3xl: 1.875rem;
  /* 30px */
  --font-size-4xl: 2.25rem;
  /* 36px */
  --font-size-5xl: 3rem;
  /* 48px */

  /* Transitions - Smooth Animations */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 400ms cubic-bezier(0.68, -0.55, 0.265, 1.55);

  /* Z-Index Scale */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;
}

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text-main);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* Utilities */
.text-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

.section-padding {
  padding: 100px 0;
}

/* Header & Navigation styles moved to unified-styles.css to prevent conflicts */
/* All .modern-navbar, .nav-link, and related styles are now centralized */

.dropdown-menu {
  border: none;
  box-shadow: var(--shadow-lg);
  border-radius: 12px;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
}

.dropdown-item {
  padding: 0.5rem 1.5rem;
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  background: var(--light-bg);
  color: var(--primary);
}

.btn-connect {
  background: var(--primary);
  color: white;
  border: none;
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 123, 255, 0.2);
}

.btn-connect:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
  color: white;
}

.btn-signin {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid #dee2e6;
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-signin:hover {
  background: var(--light-bg);
  border-color: var(--primary);
  color: var(--primary);
}

/* Hero Section */
/* Hero Section - Refined Premium */
.hero-section {
  background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.08) 0%, transparent 45%),
    radial-gradient(circle at bottom left, rgba(14, 165, 233, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 50% 50%, rgba(244, 114, 182, 0.03) 0%, transparent 50%);
  padding: 160px 0 120px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 700px;
  height: 700px;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.15), rgba(14, 165, 233, 0.15));
  filter: blur(90px);
  border-radius: 50%;
  animation: float 12s ease-in-out infinite;
  z-index: -1;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 2rem;
  color: var(--navy);
  letter-spacing: -0.03em;
}

.hero-description {
  font-size: 1.35rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 650px;
  margin-bottom: 3rem;
  font-weight: 400;
}

.btn-primary-hero {
  background: linear-gradient(135deg, #4F46E5 0%, #3730A3 100%);
  color: white;
  border: none;
  padding: 1.1rem 2.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.15rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px -10px rgba(79, 70, 229, 0.5);
  position: relative;
  overflow: hidden;
}

.btn-primary-hero:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -10px rgba(79, 70, 229, 0.6);
  color: white;
}

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

.btn-primary-hero:hover::after {
  opacity: 1;
}

.btn-outline-hero {
  background: rgba(255, 255, 255, 0.7);
  color: var(--navy);
  border: 1px solid rgba(148, 163, 184, 0.2);
  padding: 1.1rem 2.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.15rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.btn-outline-hero:hover {
  background: white;
  color: var(--primary);
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.btn-outline-hero:hover {
  background: white;
  color: var(--primary);
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

@keyframes float {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-20px, 30px);
  }
}

/* Prospectus Button - Ensure Visibility */
.prospectus-btn {
  display: inline-flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  background: #dc3545 !important;
  color: white !important;
  border-color: #dc3545 !important;
  margin-left: 0.5rem;
}

.prospectus-btn:hover {
  background: #c82333 !important;
  color: white !important;
  transform: translateY(-2px);
}

/* Statistics Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 500px;
  margin: 0 auto;
}

.stat-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--card-color);
}

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

.stat-card-blue {
  --card-color: var(--primary);
  background: linear-gradient(135deg, var(--light-blue) 0%, #ffffff 100%);
}

.stat-card-purple {
  --card-color: var(--navy);
  background: linear-gradient(135deg, var(--light-purple) 0%, #ffffff 100%);
}

.stat-card-green {
  --card-color: var(--primary-dark);
  background: linear-gradient(135deg, var(--light-blue-alt) 0%, #ffffff 100%);
}

.stat-card-orange {
  --card-color: var(--primary);
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.1) 0%, #ffffff 100%);
}

.stat-icon {
  font-size: 2.5rem;
  color: var(--card-color);
  margin-bottom: 1rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Section Titles */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Services Section */
.services-section {
  padding: 80px 0;
  background: white;
}

.service-card-modern {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid #f3f4f6;
}

.service-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 123, 255, 0.15);
  border-color: var(--primary);
}

.service-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--light-blue), var(--light-blue-alt));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary);
  border: 1px solid rgba(0, 123, 255, 0.1);
}

.service-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.service-description {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Technologies Section */
.technologies-section {
  padding: 80px 0;
}

.tech-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 1px solid #f3f4f6;
}

.tech-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.tech-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.tech-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.tech-type {
  font-size: 0.85rem;
  color: var(--text-muted);
  background: var(--light-bg);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
}

/* Partners Section */
.partners-section {
  padding: 80px 0;
  background: white;
}

.partner-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(100%);
  opacity: 0.7;
}

.partner-card:hover {
  filter: grayscale(0%);
  opacity: 1;
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.partner-card img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.7);
  transition: all 0.3s ease;
}

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

.partner-name {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 1.1rem;
  margin: 0;
}

/* Vendor Section */
.vendor-section {
  padding: 80px 0;
}

.vendor-subtitle {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
}

.vendor-reason {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.vendor-reason-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 4px 8px rgba(0, 123, 255, 0.2);
}

.vendor-reason h5 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.btn-vendor {
  background: var(--primary);
  color: white;
  border: none;
  padding: 0.875rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.btn-vendor:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 123, 255, 0.4);
  color: white;
}

.vendor-benefits {
  background: var(--light-blue);
  border-radius: 16px;
  padding: 2.5rem;
  height: 100%;
  border: 1px solid rgba(0, 123, 255, 0.1);
}

.vendor-benefits h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

.benefits-list {
  list-style: none;
  padding: 0;
}

.benefits-list li {
  padding: 0.75rem 0;
  font-size: 1.05rem;
  color: var(--text-dark);
  display: flex;
  align-items: center;
}

.benefits-list li i {
  color: var(--primary);
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* Projects Section */
.projects-section {
  padding: 80px 0;
  background: white;
}

.project-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 1px solid #f3f4f6;
  height: 100%;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.project-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.project-client {
  font-weight: 500;
  margin-bottom: 1rem;
}

.project-description {
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.project-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.project-link:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* Floating Connect Button */
.floating-connect-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 8px 16px rgba(0, 123, 255, 0.3);
  z-index: 1000;
  transition: all 0.3s ease;
  text-decoration: none;
}

.floating-connect-btn:hover {
  background: var(--primary-dark);
  transform: scale(1.1);
  color: white;
  box-shadow: 0 12px 24px rgba(0, 123, 255, 0.4);
}

/* ============================================
   PREMIUM FOOTER STYLES
   ============================================ */

.premium-footer {
  background: linear-gradient(180deg, #0a0e1a 0%, #141b2d 50%, #1a2332 100%);
  color: #e2e8f0;
  padding: 0;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(0, 123, 255, 0.2);
}

.premium-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #007bff 0%, #00d4ff 50%, #007bff 100%);
  z-index: 2;
  box-shadow: 0 2px 10px rgba(0, 123, 255, 0.3);
}

.premium-footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(0, 123, 255, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0, 212, 255, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.footer-background-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.03;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(0, 212, 255, 0.1) 10px, rgba(0, 212, 255, 0.1) 20px);
  pointer-events: none;
  z-index: 0;
}

/* Footer Top Section */
.footer-top {
  padding: 70px 0 50px;
  position: relative;
}

/* Company Section */
.footer-company {
  padding-right: 30px;
}

.footer-logo-wrapper {
  margin-bottom: 25px;
  background: transparent;
}

.footer-logo-img {
  max-width: 200px;
  height: auto;
  object-fit: contain;
  background: transparent;
  opacity: 0.95;
  transition: all 0.2s ease;
}

.footer-logo-img:hover {
  transform: scale(1.05);
  opacity: 1;
  filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
}

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

.logo-main {
  font-size: 1.75rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 5px;
  line-height: 1.2;
}

.logo-sub {
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.company-description {
  color: #94a3b8;
  line-height: 1.8;
  font-size: 0.95rem;
  margin-bottom: 35px;
  max-width: 100%;
}

/* Certification Section */
.certification-section {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cert-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  display: block;
}

.cert-badge-wrapper {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 15px;
  display: inline-block;
  transition: all 0.3s ease;
}

.cert-badge-wrapper:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.cert-badge-img {
  max-width: 220px;
  height: auto;
  display: block;
  border-radius: 6px;
}

/* Footer Columns */
.footer-column {
  margin-bottom: 30px;
}

.column-title {
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.column-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, transparent 100%);
  border-radius: 2px;
}

/* Footer Navigation */
.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  margin-bottom: 14px;
}

.nav-item {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  position: relative;
  padding-left: 0;
}

.nav-item::before {
  content: '→';
  position: absolute;
  left: -20px;
  opacity: 0;
  color: var(--primary);
  font-weight: bold;
  transition: all 0.3s ease;
}

.nav-item:hover {
  color: #ffffff;
  text-decoration: none;
  padding-left: 20px;
  transform: translateX(3px);
}

.nav-item:hover::before {
  opacity: 1;
  left: 0;
}

/* Contact Information Modern */
.contact-info-modern {
  margin-top: 10px;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.contact-row:last-child {
  margin-bottom: 0;
}

.contact-icon-modern {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.15) 0%, rgba(0, 86, 179, 0.1) 100%);
  border: 1px solid rgba(0, 123, 255, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-row:hover .contact-icon-modern {
  background: var(--primary);
  color: #ffffff;
  transform: scale(1.08) rotate(5deg);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.3);
}

.contact-details-modern {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.contact-type {
  font-size: 0.75rem;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-info-text {
  color: #e2e8f0;
  font-size: 0.9rem;
  line-height: 1.6;
}

.contact-link-modern {
  color: #e2e8f0;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-link-modern:hover {
  color: var(--primary);
  text-decoration: none;
}

/* Social Media Section */
.social-section {
  margin-top: 35px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.social-btn {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.social-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

/* MSME Certification */
.footer-certification {
  margin-top: 30px;
}

.cert-title {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.msme-cert-wrapper {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 12px;
  display: inline-block;
  transition: all 0.3s ease;
}

.msme-cert-wrapper:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
}

.msme-cert-image {
  max-width: 200px;
  height: auto;
  display: block;
  border-radius: 4px;
}

.msme-emblem {
  flex-shrink: 0;
}

.msme-text {
  flex: 1;
}

.msme-title {
  color: #D4AF37;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
}

.msme-subtitle {
  color: #94a3b8;
  font-size: 0.75rem;
  line-height: 1.4;
}

.partner-logo-footer {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 1.25rem;
  text-align: center;
  transition: all 0.3s ease;
}

.partner-logo-footer:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.partner-logo-footer .partner-name {
  color: #cbd5e1;
  font-weight: 600;
  font-size: 1rem;
}

/* Footer Contact Information */
.footer-contact {
  margin-top: 10px;
}

.contact-block {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.contact-block:last-child {
  margin-bottom: 0;
}

.contact-icon-wrapper {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(0, 123, 255, 0.1);
  border: 1px solid rgba(0, 123, 255, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.contact-block:hover .contact-icon-wrapper {
  background: var(--primary);
  color: #ffffff;
  transform: scale(1.05);
}

.contact-content {
  flex: 1;
}

.contact-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.contact-value {
  color: #e2e8f0;
  font-size: 0.9rem;
  line-height: 1.6;
}

.contact-link-corporate {
  color: #e2e8f0;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-link-corporate:hover {
  color: var(--primary);
  text-decoration: none;
}

/* Footer Bottom Section */
.footer-bottom-modern {
  padding: 35px 0;
  background: rgba(0, 0, 0, 0.3);
  position: relative;
}

.footer-divider-line {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
  margin-bottom: 30px;
}

.copyright-info {
  margin: 0;
  font-size: 0.875rem;
  color: #94a3b8;
  line-height: 1.6;
}

.company-name {
  color: #ffffff;
  font-weight: 600;
}

.footer-links-bottom {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

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

.footer-bottom-link:hover {
  color: var(--primary);
  text-decoration: none;
}

.link-separator {
  color: #64748b;
  font-size: 0.875rem;
}

.designer-credit {
  color: #94a3b8;
  font-size: 0.875rem;
}

.designer-credit .fas.fa-heart {
  color: #ef4444;
  margin: 0 4px;
  animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }
}

/* Responsive Footer Enhancements */
@media (max-width: 768px) {
  .contact-item {
    margin-bottom: 1.5rem;
  }

  .contact-icon {
    width: 35px;
    height: 35px;
    min-width: 35px;
    font-size: 0.9rem;
  }

  .footer-enhanced h6::after {
    width: 30px;
  }
}

/* Footer Logo */
.yolopment-logo-footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.yolopment-logo-footer .logo-container {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 5px;
}

.logo-image-footer {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

.msme-logo-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  display: block;
}

.logo-text-footer {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-name-footer {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.logo-tagline-footer {
  font-size: 0.6rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-top: 2px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Premium Footer Content - Compact */
.footer-content {
  padding: 45px 0 35px;
  position: relative;
  z-index: 1;
}

/* About Section */
.footer-about-section {
  padding-right: 20px;
  background: transparent;
}

.footer-branding {
  margin-bottom: 20px;
  background: transparent;
}

.footer-logo {
  max-width: 160px;
  height: auto;
  object-fit: contain;
  transition: all 0.2s ease;
  display: block;
  margin-bottom: 15px;
  background: transparent;
  opacity: 0.95;
}

.footer-logo:hover {
  transform: scale(1.05);
  opacity: 1;
  filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
}

.footer-brand-name {
  font-size: 1.75rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 5px 0;
  line-height: 1.2;
}

.footer-brand-tagline {
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0;
}

.footer-mission {
  color: #94a3b8;
  line-height: 1.7;
  font-size: 0.85rem;
  margin-bottom: 20px;
  max-width: 100%;
}

/* Compact Registration Badge */
.registration-badge-compact {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.msme-badge-compact {
  background: transparent;
  border: none;
  border-radius: 8px;
  padding: 0;
  display: inline-block;
  transition: all 0.2s ease;
  max-width: 100%;
}

.msme-badge-compact:hover {
  transform: translateY(-2px);
  filter: drop-shadow(0 4px 15px rgba(0, 212, 255, 0.3));
}

.msme-cert-img {
  max-width: 180px;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  object-fit: contain;
  background: transparent;
  opacity: 0.95;
  transition: all 0.2s ease;
}

.msme-cert-img:hover {
  opacity: 1;
  transform: scale(1.02);
}

/* Registration Badge */
.registration-badge {
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.badge-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.badge-label i {
  color: #00d4ff;
  font-size: 0.85rem;
}

.msme-badge-container {
  background: transparent;
  border: none;
  border-radius: 8px;
  padding: 0;
  display: inline-block;
  transition: all 0.2s ease;
}

.msme-badge-container:hover {
  transform: translateY(-2px);
  filter: drop-shadow(0 4px 15px rgba(0, 212, 255, 0.3));
}

.msme-badge-img {
  max-width: 200px;
  height: auto;
  display: block;
  border-radius: 6px;
  background: transparent;
  opacity: 0.95;
  transition: all 0.2s ease;
}

.msme-badge-img:hover {
  opacity: 1;
  transform: scale(1.02);
}

/* Section Headings */
.footer-section-heading {
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  padding-bottom: 12px;
}

.footer-section-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 45px;
  height: 2px;
  background: linear-gradient(90deg, #007bff 0%, #00d4ff 100%);
  border-radius: 2px;
  box-shadow: 0 1px 6px rgba(0, 212, 255, 0.3);
}

.footer-section-heading i {
  color: #00d4ff;
  font-size: 0.9rem;
  background: rgba(0, 212, 255, 0.1);
  padding: 6px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.footer-section-heading:hover i {
  background: rgba(0, 212, 255, 0.2);
  transform: rotate(5deg) scale(1.08);
}

/* Footer Links */
.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-list li {
  margin-bottom: 10px;
}

.footer-link-item {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 0;
  position: relative;
  border-radius: 4px;
}

.footer-link-item::before {
  content: '';
  position: absolute;
  left: -8px;
  width: 3px;
  height: 0;
  background: linear-gradient(180deg, #007bff 0%, #00d4ff 100%);
  border-radius: 2px;
  transition: height 0.2s ease;
}

.footer-link-item i {
  color: #00d4ff;
  font-size: 0.85rem;
  width: 20px;
  text-align: center;
  transition: all 0.2s ease;
  background: rgba(0, 212, 255, 0.08);
  padding: 4px;
  border-radius: 4px;
}

.footer-link-item:hover {
  color: #ffffff;
  text-decoration: none;
  transform: translateX(8px);
  padding-left: 4px;
}

.footer-link-item:hover::before {
  height: 100%;
}

.footer-link-item:hover i {
  color: #ffffff;
  background: linear-gradient(135deg, #007bff 0%, #00d4ff 100%);
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 2px 8px rgba(0, 212, 255, 0.3);
}

/* Contact Section */
.footer-contact-section {
  position: relative;
}

.contact-info-list {
  margin-top: 10px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.15) 0%, rgba(0, 212, 255, 0.1) 100%);
  border: 1px solid rgba(0, 123, 255, 0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00d4ff;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

.contact-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease;
  border-radius: 50%;
}

.contact-item:hover .contact-icon {
  background: linear-gradient(135deg, #007bff 0%, #00d4ff 100%);
  color: #ffffff;
  transform: scale(1.12) rotate(8deg);
  box-shadow: 0 8px 25px rgba(0, 123, 255, 0.5);
  border-color: transparent;
}

.contact-item:hover .contact-icon::before {
  width: 100px;
  height: 100px;
}

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

.contact-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-value {
  color: #e2e8f0;
  font-size: 0.85rem;
  line-height: 1.5;
}

.contact-link {
  color: #e2e8f0;
  text-decoration: none;
  transition: all 0.2s ease;
}

.contact-link:hover {
  color: #00d4ff;
  text-decoration: none;
}

/* Social Media Section */
.social-media-section {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-heading {
  font-size: 0.85rem;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.social-icons-wrapper {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-icon-btn {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
}

.social-icon-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease;
  border-radius: 50%;
}

.social-icon-btn:hover {
  color: #ffffff;
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
  border-color: transparent;
}

.social-icon-btn:hover::before {
  width: 80px;
  height: 80px;
}

.social-icon-btn.facebook:hover {
  background: #1877f2;
  border-color: #1877f2;
}

.social-icon-btn.twitter:hover {
  background: #1da1f2;
  border-color: #1da1f2;
}

.social-icon-btn.linkedin:hover {
  background: #0077b5;
  border-color: #0077b5;
}

.social-icon-btn.instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: transparent;
}

/* Footer Bottom Bar */
.footer-bottom-bar {
  padding: 25px 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.7) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
  backdrop-filter: blur(10px);
}

.footer-bottom-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 212, 255, 0.3) 50%, transparent 100%);
}

.copyright-text {
  margin: 0;
  font-size: 0.875rem;
  color: #94a3b8;
  line-height: 1.6;
}

.copyright-text strong {
  color: #ffffff;
  font-weight: 600;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.legal-link {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.875rem;
  transition: all 0.2s ease;
  position: relative;
  padding: 4px 0;
}

.legal-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #007bff 0%, #00d4ff 100%);
  transition: width 0.2s ease;
  border-radius: 2px;
}

.legal-link:hover {
  color: #00d4ff;
  text-decoration: none;
}

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

.link-divider {
  color: #64748b;
  font-size: 0.875rem;
}

.made-with-love {
  color: #94a3b8;
  font-size: 0.875rem;
}

.made-with-love .fa-heart {
  color: #ef4444;
  margin: 0 4px;
  animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }
}

/* Footer Responsive Styles */
@media (max-width: 991px) {
  .premium-footer {
    margin-top: 50px;
  }

  .footer-content {
    padding: 35px 0 28px;
  }

  .footer-about-section {
    padding-right: 0;
    margin-bottom: 30px;
  }

  .footer-logo {
    max-width: 140px;
  }

  .msme-cert-img {
    max-width: 160px;
  }

  .footer-section-heading {
    font-size: 0.9rem;
    margin-bottom: 18px;
  }
}

@media (max-width: 768px) {
  .premium-footer {
    margin-top: 40px;
  }

  .footer-content {
    padding: 30px 0 25px;
  }

  .footer-about-section,
  .footer-links-section,
  .footer-services-section,
  .footer-contact-section {
    margin-bottom: 28px;
  }

  .footer-section-heading {
    font-size: 0.85rem;
    margin-bottom: 16px;
    padding-bottom: 10px;
  }

  .footer-section-heading::after {
    width: 35px;
    height: 2px;
  }

  .contact-item {
    margin-bottom: 14px;
  }

  .contact-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    font-size: 0.8rem;
  }

  .social-icon-btn {
    width: 34px;
    height: 34px;
    font-size: 0.9rem;
  }

  .footer-mission {
    font-size: 0.8rem;
    margin-bottom: 16px;
  }

  .footer-logo {
    max-width: 120px;
    margin-bottom: 12px;
  }

  .msme-cert-img {
    max-width: 140px;
  }

  .registration-badge-compact {
    margin-top: 15px;
    padding-top: 15px;
  }

  .footer-bottom-bar {
    padding: 20px 0;
    text-align: center;
  }

  .footer-legal-links {
    justify-content: center;
    margin-top: 12px;
  }

  .copyright-text,
  .legal-link,
  .made-with-love {
    font-size: 0.75rem;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .stat-card {
    padding: 1.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .btn-connect,
  .btn-signin {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }

  .floating-connect-btn {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 1.25rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .stats-grid {
    gap: 0.75rem;
  }

  .stat-card {
    padding: 1.25rem;
  }

  .stat-number {
    font-size: 2rem;
  }
}

/* Testimonials Section - Premium */
.testimonials-section {
  padding: 100px 0;
  background: white;
  position: relative;
}

.testimonial-card-premium {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow-xl);
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-card-premium:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.testimonial-quote-icon {
  font-size: 3rem;
  color: var(--primary-light);
  opacity: 0.2;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
}

.testimonial-text {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 2rem;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-light);
}

.author-info h5 {
  font-size: 1rem;
  margin: 0;
  color: var(--navy);
}

.author-info span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* CTA Section - Premium */
.cta-section-premium {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--primary-dark) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
  color: white;
}

.cta-section-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, #fff, #a5f3fc);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-text {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
}