body {
  font-family: 'Montserrat', Arial, sans-serif;
  margin: 0;
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #533483 100%);
  color: #fff;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Enhanced video background */
#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 100vw;
  min-height: 100vh;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -2;
  opacity: 1;
  pointer-events: none;
  filter: brightness(0.8) contrast(1.2);
  will-change: transform;
  transition: filter 0.3s ease, opacity 0.5s ease;
}

.video-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(135deg, rgba(15, 15, 35, 0.7) 0%, rgba(30, 30, 60, 0.8) 50%, rgba(15, 15, 35, 0.7) 100%);
  z-index: -1;
  pointer-events: none;
  will-change: transform;
}

/* Fix for content sections to work properly with video background */
.main-content,
.marketing-section,
.solutions-page-section,
.about-page-section,
.contact-page-section,
.data-section,
.healthcare-section {
  position: relative;
  z-index: 10;
  background: transparent;
}

/* Ensure content is visible over video */
.hero,
.features-section,
.solutions-section,
.about-section,
.info-section {
  position: relative;
  z-index: 15;
  background: transparent;
}

/* Enhanced Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 80px;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(65, 158, 255, 0.15) 0%, rgba(252, 81, 133, 0.15) 100%);
  z-index: -1;
}

.hero-inner {
  max-width: 1400px;
  margin: 0;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  justify-content: start;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #419eff, #fc5185);
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  width: fit-content;
  box-shadow: 0 8px 32px rgba(65, 158, 255, 0.5);
  backdrop-filter: blur(10px);
}

.badge-icon {
  font-size: 16px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.title-line {
  color: #fff;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.title-highlight {
  background: linear-gradient(135deg, #419eff, #fc5185);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  font-weight: 900;
  filter: drop-shadow(0 2px 4px rgba(65, 158, 255, 0.3));
}

.hero-desc {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-actions {
  display: flex;
  gap: 20px;
  margin-top: 16px;
}

.cta-btn {
  padding: 16px 32px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-btn.primary {
  background: linear-gradient(135deg, #419eff, #fc5185);
  color: white;
  box-shadow: 0 8px 32px rgba(65, 158, 255, 0.6);
  border: 2px solid rgba(65, 158, 255, 0.3);
}

.cta-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(65, 158, 255, 0.8);
  border-color: rgba(65, 158, 255, 0.6);
}

.cta-btn.secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.cta-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

/* Enhanced Stats Section */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(65, 158, 255, 0.2), rgba(252, 81, 133, 0.2));
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stat-icon {
  font-size: 2.5rem;
  position: relative;
  z-index: 1;
}

.stat-content {
  position: relative;
  z-index: 1;
}

.stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.section-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Enhanced Features Section */
.features-section {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(65, 158, 255, 0.08) 0%, rgba(252, 81, 133, 0.08) 100%);
}

.features-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 40px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(65, 158, 255, 0.2), rgba(252, 81, 133, 0.2));
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.feature-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.feature-link {
  color: #419eff;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.3s ease;
  position: relative;
  z-index: 1;
  text-shadow: 0 0 10px rgba(65, 158, 255, 0.3);
}

.feature-link:hover {
  color: #fc5185;
  text-shadow: 0 0 10px rgba(252, 81, 133, 0.5);
}

/* Enhanced Solutions Section */
.solutions-section {
  padding: 100px 0;
}

.solutions-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
}

.solutions-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: center;
}

.solutions-left {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.solution-stats {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.solution-stat {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.solution-stat:hover {
  transform: translateX(8px);
  background: rgba(65, 158, 255, 0.2);
  border-color: rgba(65, 158, 255, 0.4);
}

.solution-stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #419eff;
  text-shadow: 0 2px 4px rgba(65, 158, 255, 0.5);
}

.solution-stat-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.solutions-right {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.solution-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.solution-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(65, 158, 255, 0.2), rgba(252, 81, 133, 0.2));
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
}

.solution-card-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.solution-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.solution-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

/* Enhanced About Section */
.about-section {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(252, 81, 133, 0.08) 0%, rgba(65, 158, 255, 0.08) 100%);
}

.about-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
}

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

.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.about-feature {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 40px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.about-feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(252, 81, 133, 0.2), rgba(65, 158, 255, 0.2));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.about-feature:hover::before {
  opacity: 1;
}

.about-feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.about-feature-icon {
  font-size: 3rem;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.about-feature h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.about-feature p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .solutions-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

@media (max-width: 768px) {
  .hero-inner {
    padding: 0 24px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .features-grid,
  .about-features {
    grid-template-columns: 1fr;
  }
  
  .solutions-right {
    grid-template-columns: 1fr;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .features-container,
  .solutions-container,
  .about-container {
    padding: 0 24px;
  }
}

/* Marketing Sections Styles */
.marketing-section {
  display: none;
  min-height: 100vh;
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #533483 100%);
  padding: 80px 0;
  position: relative;
  z-index: 1000;
}

.marketing-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
}

.marketing-header {
  text-align: center;
  margin-bottom: 60px;
}

.marketing-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(255,107,107,0.3);
}

.marketing-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
}

.marketing-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.marketing-left h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
  background: linear-gradient(45deg, #fff, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.marketing-left p {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
}

.marketing-features {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.marketing-feature {
  background: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.marketing-feature:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ff6b6b;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255, 107, 107, 0.2);
}

.marketing-feature .feature-icon {
  font-size: 32px;
  margin-bottom: 15px;
  display: block;
}

.marketing-feature h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
}

.marketing-feature p {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.marketing-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.marketing-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  width: 100%;
}

.marketing-stat {
  background: linear-gradient(135deg, #ff6b6b, #4ecdc4, #45b7d1);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(255,107,107,0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.marketing-stat:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255,107,107,0.4);
}

.marketing-stat .stat-number {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.marketing-stat .stat-label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* Solutions Page Section */
.solutions-page-section {
  display: none;
  min-height: 100vh;
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #533483 100%);
  padding: 80px 0;
  position: relative;
  z-index: 1000;
}

.solutions-page-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
}

.solutions-page-header {
  text-align: center;
  margin-bottom: 60px;
}

.solutions-page-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(255,107,107,0.3);
}

.solutions-page-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
}

.solutions-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.solutions-page-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 40px 30px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  transition: all 0.3s ease;
}

.solutions-page-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ff6b6b;
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 107, 107, 0.3);
}

.solutions-page-card .card-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}

.solutions-page-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
  background: linear-gradient(45deg, #fff, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.solutions-page-card p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

/* About Page Section */
.about-page-section {
  display: none;
  min-height: 100vh;
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #533483 100%);
  padding: 80px 0;
  position: relative;
  z-index: 1000;
}

.about-page-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
}

.about-page-header {
  text-align: center;
  margin-bottom: 60px;
}

.about-page-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(255,107,107,0.3);
}

.about-page-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
}

.about-page-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-page-left h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
  background: linear-gradient(45deg, #fff, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-page-left p {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
}

.values-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.value-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.value-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ff6b6b;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255, 107, 107, 0.2);
}

.value-item .value-icon {
  font-size: 32px;
  margin-bottom: 15px;
  display: block;
}

.value-item h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
}

.value-item p {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.about-page-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  width: 100%;
}

.about-stat {
  background: linear-gradient(135deg, #ff6b6b, #4ecdc4, #45b7d1);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(255,107,107,0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.about-stat:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255,107,107,0.4);
}

.about-stat .stat-number {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.about-stat .stat-label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* Contact Page Section */
.contact-page-section {
  display: none;
  min-height: 100vh;
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #533483 100%);
  padding: 80px 0;
  position: relative;
  z-index: 1000;
}

.contact-page-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
}

.contact-page-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-page-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(255,107,107,0.3);
}

.contact-page-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
}

.contact-page-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-page-left h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #fff;
  background: linear-gradient(45deg, #fff, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ff6b6b;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255, 107, 107, 0.2);
}

.contact-item .contact-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.contact-item h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #fff;
}

.contact-item p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.contact-page-right h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #fff;
  background: linear-gradient(45deg, #fff, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-form {
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form .form-group {
  margin-bottom: 25px;
}

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 16px;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #ff6b6b;
  box-shadow: 0 0 20px rgba(255, 107, 107, 0.3);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

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

.contact-form .submit-btn {
  background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 18px 40px;
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(255,107,107,0.3);
  transition: all 0.3s ease;
  width: 100%;
}

.contact-form .submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255,107,107,0.5);
  background: linear-gradient(90deg, #96ceb4, #45b7d1, #4ecdc4, #ff6b6b);
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
  .marketing-content,
  .about-page-content,
  .contact-page-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .marketing-stats,
  .about-stats {
    grid-template-columns: 1fr;
  }
  
  .solutions-page-grid {
    grid-template-columns: 1fr;
  }
  
  .marketing-title,
  .solutions-page-title,
  .about-page-title,
  .contact-page-title {
    font-size: 36px;
  }
  
  .marketing-container,
  .solutions-page-container,
  .about-page-container,
  .contact-page-container {
    padding: 0 24px;
  }
}

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

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(45deg, #ff8e8e, #6ee7de, #6bc5dd, #a8d8c4);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 48px;
  background: rgba(15, 15, 35, 0.85);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  position: relative;
  z-index: 1000;
  transition: all 0.3s ease;
  min-height: 60px;
}

.navbar.scrolled {
  background: rgba(15, 15, 35, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  padding: 8px 48px;
  border-bottom: 1px solid rgba(65, 158, 255, 0.2);
}

.logo {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.logo-main {
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 2px;
  text-shadow: 0 0 20px rgba(255,107,107,0.5);
}

.logo-main .b2b {
  color: #419eff;
  background: linear-gradient(45deg, #419eff, #fc5185);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: logoGlow 3s ease-in-out infinite alternate;
}

.logo-main .lake {
  color: #fff;
  text-shadow: 0 0 10px rgba(255,255,255,0.5);
}

@keyframes logoGlow {
  0% { filter: drop-shadow(0 0 5px rgba(65, 158, 255, 0.5)); }
  100% { filter: drop-shadow(0 0 20px rgba(65, 158, 255, 0.8)); }
}

@font-face {
  font-family: 'Beautifully Delicious Sans';
  src: url('BeautifullyDeliciousSans-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

.logo-sub {
  font-family: 'Beautifully Delicious Sans', sans-serif;
  font-size: 13px;
  color: #f5f5f5;
  font-weight: 400;
  letter-spacing: 1px;
  margin-left: 16px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.logo:hover .logo-sub {
  opacity: 1;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 0;
}

.nav-links a:hover {
  color: #419eff;
  transform: translateY(-2px);
  text-shadow: 0 0 10px rgba(65, 158, 255, 0.5);
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1);
  transition: width 0.3s ease;
  border-radius: 1px;
}

.nav-links a:hover::after {
  width: 100%;
  box-shadow: 0 0 10px rgba(255,107,107,0.5);
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background: rgba(20, 0, 40, 0.98);
  backdrop-filter: blur(15px);
  min-width: 220px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  z-index: 1000;
  border-radius: 12px;
  top: 100%;
  left: 0;
  margin-top: 15px;
  border: 1px solid rgba(255,255,255,0.1);
  animation: dropdownFade 0.3s ease;
}

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

.dropdown-content a {
  color: #fff;
  padding: 15px 20px;
  text-decoration: none;
  display: block;
  font-size: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.dropdown-content a:last-child {
  border-bottom: none;
}

.dropdown-content a:hover {
  background: linear-gradient(90deg, rgba(65, 158, 255, 0.1), rgba(252, 81, 133, 0.1));
  color: #419eff;
  transform: translateX(5px);
  padding-left: 25px;
}

.dropdown-content a::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.5s ease;
}

.dropdown-content a:hover::before {
  left: 100%;
}

.dropdown.show .dropdown-content {
  display: block;
}

.dropdown-toggle {
  cursor: pointer;
}

/* DATA Section Styles */
.data-section {
  display: none;
  background: #000;
  color: #fff;
  padding: 0;
  margin-top: 0;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.data-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 24px;
  text-align: center;
}

.data-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #fff, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 40px rgba(255,215,0,0.5);
}

.data-subtitle {
  font-size: 20px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 50px;
  font-weight: 300;
}

.data-categories {
  margin-top: 40px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.category-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 30px 20px;
  border-radius: 15px;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.category-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
  border-color: #ffd700;
}

.category-icon {
  font-size: 32px;
  margin-bottom: 10px;
}

.category-name {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-align: center;
}

/* Healthcare Categories Section Styles */
.healthcare-categories-section {
  display: none;
  background: #000;
  color: #fff;
  padding: 0;
  margin-top: 0;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

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

.healthcare-categories-header {
  text-align: center;
  margin-bottom: 50px;
}

.back-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

.back-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #ffd700;
}

.healthcare-categories-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #fff, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 40px rgba(255,215,0,0.5);
}

.healthcare-categories-subtitle {
  font-size: 20px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 50px;
  font-weight: 300;
}

.healthcare-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
  max-width: 1200px;
  margin: 0 auto;
}

.healthcare-category-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.healthcare-category-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  border-color: #ffd700;
}

.healthcare-category-name {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  line-height: 1.4;
}

@media (max-width: 700px) {
  .healthcare-categories-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
  }
  .healthcare-categories-title {
    font-size: 32px;
  }
  .healthcare-category-name {
    font-size: 13px;
  }
}

/* Automotive Categories Section Styles */
.automotive-categories-section {
  display: none;
  background: #000;
  color: #fff;
  padding: 0;
  margin-top: 0;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

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

.automotive-categories-header {
  text-align: center;
  margin-bottom: 50px;
}

.automotive-categories-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #fff, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 40px rgba(255,215,0,0.5);
}

.automotive-categories-subtitle {
  font-size: 20px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 50px;
  font-weight: 300;
}

.automotive-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
  max-width: 1200px;
  margin: 0 auto;
}

.automotive-category-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.automotive-category-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  border-color: #ffd700;
}

.automotive-category-name {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  line-height: 1.4;
}

@media (max-width: 700px) {
  .automotive-categories-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
  }
  .automotive-categories-title {
    font-size: 32px;
  }
  .automotive-category-name {
    font-size: 13px;
  }
}

/* Publishing Categories Section Styles */
.publishing-categories-section {
  display: none;
  background: #000;
  color: #fff;
  padding: 0;
  margin-top: 0;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

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

.publishing-categories-header {
  text-align: center;
  margin-bottom: 50px;
}

.publishing-categories-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #fff, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 40px rgba(255,215,0,0.5);
}

.publishing-categories-subtitle {
  font-size: 20px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 50px;
  font-weight: 300;
}

.publishing-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
  max-width: 1200px;
  margin: 0 auto;
}

.publishing-category-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.publishing-category-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  border-color: #ffd700;
}

.publishing-category-name {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  line-height: 1.4;
}

@media (max-width: 700px) {
  .publishing-categories-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
  }
  .publishing-categories-title {
    font-size: 32px;
  }
  .publishing-category-name {
    font-size: 13px;
  }
}

/* Education Categories Section Styles */
.education-categories-section {
  display: none;
  background: #000;
  color: #fff;
  padding: 0;
  margin-top: 0;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

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

.education-categories-header {
  text-align: center;
  margin-bottom: 50px;
}

.education-categories-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #fff, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 40px rgba(255,215,0,0.5);
}

.education-categories-subtitle {
  font-size: 20px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 50px;
  font-weight: 300;
}

.education-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
  max-width: 1200px;
  margin: 0 auto;
}

.education-category-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.education-category-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  border-color: #ffd700;
}

.education-category-name {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  line-height: 1.4;
}

@media (max-width: 700px) {
  .education-categories-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
  }
  .education-categories-title {
    font-size: 32px;
  }
  .education-category-name {
    font-size: 13px;
  }
}

/* Finance & Banking Categories Section Styles */
.finance-banking-categories-section {
  display: none;
  background: #000;
  color: #fff;
  padding: 0;
  margin-top: 0;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.finance-banking-categories-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 24px;
}

.finance-banking-categories-header {
  text-align: center;
  margin-bottom: 50px;
}

.finance-banking-categories-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #fff, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 40px rgba(255,215,0,0.5);
}

.finance-banking-categories-subtitle {
  font-size: 20px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 50px;
  font-weight: 300;
}

.finance-banking-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
  max-width: 1200px;
  margin: 0 auto;
}

.finance-banking-category-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.finance-banking-category-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  border-color: #ffd700;
}

.finance-banking-category-name {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  line-height: 1.4;
}

@media (max-width: 700px) {
  .finance-banking-categories-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
  }
  .finance-banking-categories-title {
    font-size: 32px;
  }
  .finance-banking-category-name {
    font-size: 13px;
  }
}

/* Oil & Gas Categories Section Styles */
.oil-gas-categories-section {
  display: none;
  background: #000;
  color: #fff;
  padding: 0;
  margin-top: 0;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.oil-gas-categories-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 24px;
}

.oil-gas-categories-header {
  text-align: center;
  margin-bottom: 50px;
}

.oil-gas-categories-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #fff, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 40px rgba(255,215,0,0.5);
}

.oil-gas-categories-subtitle {
  font-size: 20px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 50px;
  font-weight: 300;
}

.oil-gas-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
  max-width: 1200px;
  margin: 0 auto;
}

.oil-gas-category-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.oil-gas-category-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  border-color: #ffd700;
}

.oil-gas-category-name {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  line-height: 1.4;
}

@media (max-width: 700px) {
  .oil-gas-categories-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
  }
  .oil-gas-categories-title {
    font-size: 32px;
  }
  .oil-gas-category-name {
    font-size: 13px;
  }
}

/* Retail Categories Section Styles */
.retail-categories-section {
  display: none;
  background: #000;
  color: #fff;
  padding: 0;
  margin-top: 0;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

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

.retail-categories-header {
  text-align: center;
  margin-bottom: 50px;
}

.retail-categories-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #fff, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 40px rgba(255,215,0,0.5);
}

.retail-categories-subtitle {
  font-size: 20px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 50px;
  font-weight: 300;
}

.retail-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
  max-width: 1200px;
  margin: 0 auto;
}

.retail-category-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.retail-category-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  border-color: #ffd700;
}

.retail-category-name {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  line-height: 1.4;
}

@media (max-width: 700px) {
  .retail-categories-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
  }
  .retail-categories-title {
    font-size: 32px;
  }
  .retail-category-name {
    font-size: 13px;
  }
}

/* Technology Categories Section Styles */
.technology-categories-section {
  display: none;
  background: #000;
  color: #fff;
  padding: 0;
  margin-top: 0;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

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

.technology-categories-header {
  text-align: center;
  margin-bottom: 50px;
}

.technology-categories-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #fff, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 40px rgba(255,215,0,0.5);
}

.technology-categories-subtitle {
  font-size: 20px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 50px;
  font-weight: 300;
}

.technology-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
  max-width: 1200px;
  margin: 0 auto;
}

.technology-category-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.technology-category-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  border-color: #ffd700;
}

.technology-category-name {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  line-height: 1.4;
}

@media (max-width: 700px) {
  .technology-categories-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
  }
  .technology-categories-title {
    font-size: 32px;
  }
  .technology-category-name {
    font-size: 13px;
  }
}

/* Manufacturing Categories Section Styles */
.manufacturing-categories-section {
  display: none;
  background: #000;
  color: #fff;
  padding: 0;
  margin-top: 0;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

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

.manufacturing-categories-header {
  text-align: center;
  margin-bottom: 50px;
}

.manufacturing-categories-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #fff, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 40px rgba(255,215,0,0.5);
}

.manufacturing-categories-subtitle {
  font-size: 20px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 50px;
  font-weight: 300;
}

.manufacturing-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
  max-width: 1200px;
  margin: 0 auto;
}

.manufacturing-category-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.manufacturing-category-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  border-color: #ffd700;
}

.manufacturing-category-name {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  line-height: 1.4;
}

@media (max-width: 700px) {
  .manufacturing-categories-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
  }
  .manufacturing-categories-title {
    font-size: 32px;
  }
  .manufacturing-category-name {
    font-size: 13px;
  }
}

/* Real Estate Categories Section Styles */
.real-estate-categories-section {
  display: none;
  background: #000;
  color: #fff;
  padding: 0;
  margin-top: 0;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.real-estate-categories-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 24px;
}

.real-estate-categories-header {
  text-align: center;
  margin-bottom: 50px;
}

.real-estate-categories-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #fff, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 40px rgba(255,215,0,0.5);
}

.real-estate-categories-subtitle {
  font-size: 20px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 50px;
  font-weight: 300;
}

.real-estate-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
  max-width: 1200px;
  margin: 0 auto;
}

.real-estate-category-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.real-estate-category-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  border-color: #ffd700;
}

.real-estate-category-name {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  line-height: 1.4;
}

@media (max-width: 700px) {
  .real-estate-categories-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
  }
  .real-estate-categories-title {
    font-size: 32px;
  }
  .real-estate-category-name {
    font-size: 13px;
  }
}

/* Construction Categories Section Styles */
.construction-categories-section {
  display: none;
  background: #000;
  color: #fff;
  padding: 0;
  margin-top: 0;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

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

.construction-categories-header {
  text-align: center;
  margin-bottom: 50px;
}

.construction-categories-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #fff, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 40px rgba(255,215,0,0.5);
}

.construction-categories-subtitle {
  font-size: 20px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 50px;
  font-weight: 300;
}

.construction-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
  max-width: 1200px;
  margin: 0 auto;
}

.construction-category-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.construction-category-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  border-color: #ffd700;
}

.construction-category-name {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  line-height: 1.4;
}

@media (max-width: 700px) {
  .construction-categories-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
  }
  .construction-categories-title {
    font-size: 32px;
  }
  .construction-category-name {
    font-size: 13px;
  }
}

/* Agriculture Categories Section Styles */
.agriculture-categories-section {
  display: none;
  background: #000;
  color: #fff;
  padding: 0;
  margin-top: 0;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

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

.agriculture-categories-header {
  text-align: center;
  margin-bottom: 50px;
}

.agriculture-categories-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #fff, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 40px rgba(255,215,0,0.5);
}

.agriculture-categories-subtitle {
  font-size: 20px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 50px;
  font-weight: 300;
}

.agriculture-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
  max-width: 1200px;
  margin: 0 auto;
}

.agriculture-category-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.agriculture-category-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  border-color: #ffd700;
}

.agriculture-category-name {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  line-height: 1.4;
}

@media (max-width: 700px) {
  .agriculture-categories-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
  }
  .agriculture-categories-title {
    font-size: 32px;
  }
  .agriculture-category-name {
    font-size: 13px;
  }
}

/* Marketing Categories Section Styles */
.marketing-categories-section {
  display: none;
  background: #000;
  color: #fff;
  padding: 0;
  margin-top: 0;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

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

.marketing-categories-header {
  text-align: center;
  margin-bottom: 50px;
}

.marketing-categories-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #fff, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 40px rgba(255,215,0,0.5);
}

.marketing-categories-subtitle {
  font-size: 20px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 50px;
  font-weight: 300;
}

.marketing-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
  max-width: 1200px;
  margin: 0 auto;
}

.marketing-category-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.marketing-category-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  border-color: #ffd700;
}

.marketing-category-name {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  line-height: 1.4;
}

@media (max-width: 700px) {
  .marketing-categories-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
  }
  .marketing-categories-title {
    font-size: 32px;
  }
  .marketing-category-name {
    font-size: 13px;
  }
}

/* Professional Titles Categories Section Styles */
.professional-titles-categories-section {
  display: none;
  background: #000;
  color: #fff;
  padding: 0;
  margin-top: 0;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.professional-titles-categories-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 24px;
}

.professional-titles-categories-header {
  text-align: center;
  margin-bottom: 50px;
}

.professional-titles-categories-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #fff, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 40px rgba(255,215,0,0.5);
}

.professional-titles-categories-subtitle {
  font-size: 20px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 50px;
  font-weight: 300;
}

.professional-titles-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
  max-width: 1200px;
  margin: 0 auto;
}

.professional-titles-category-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.professional-titles-category-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  border-color: #ffd700;
}

.professional-titles-category-name {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  line-height: 1.4;
}

@media (max-width: 700px) {
  .professional-titles-categories-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
  }
  .professional-titles-categories-title {
    font-size: 32px;
  }
  .professional-titles-category-name {
    font-size: 13px;
  }
}

/* Geo Targeted Lists Categories Section Styles */
.geo-targeted-lists-categories-section {
  display: none;
  background: #000;
  color: #fff;
  padding: 0;
  margin-top: 0;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.geo-targeted-lists-categories-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 24px;
}

.geo-targeted-lists-categories-header {
  text-align: center;
  margin-bottom: 50px;
}

.geo-targeted-lists-categories-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #fff, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 40px rgba(255,215,0,0.5);
}

.geo-targeted-lists-categories-subtitle {
  font-size: 20px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 50px;
  font-weight: 300;
}

.geo-targeted-lists-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
  max-width: 1200px;
  margin: 0 auto;
}

.geo-targeted-lists-category-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.geo-targeted-lists-category-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  border-color: #ffd700;
}

.geo-targeted-lists-category-name {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  line-height: 1.4;
}

@media (max-width: 700px) {
  .geo-targeted-lists-categories-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
  }
  .geo-targeted-lists-categories-title {
    font-size: 32px;
  }
  .geo-targeted-lists-category-name {
    font-size: 13px;
  }
}

/* Healthcare Technology Categories Section Styles */
.healthcare-technology-categories-section {
  display: none;
  background: #000;
  color: #fff;
  padding: 0;
  margin-top: 0;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.healthcare-technology-categories-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 24px;
}

.healthcare-technology-categories-header {
  text-align: center;
  margin-bottom: 50px;
}

.healthcare-technology-categories-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #fff, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 40px rgba(255,215,0,0.5);
}

.healthcare-technology-categories-subtitle {
  font-size: 20px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 50px;
  font-weight: 300;
}

.healthcare-technology-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
  max-width: 1200px;
  margin: 0 auto;
}

.healthcare-technology-category-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.healthcare-technology-category-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  border-color: #ffd700;
}

.healthcare-technology-category-name {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  line-height: 1.4;
}

@media (max-width: 700px) {
  .healthcare-technology-categories-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
  }
  .healthcare-technology-categories-title {
    font-size: 32px;
  }
  .healthcare-technology-category-name {
    font-size: 13px;
  }
}

.healthcare-section {
  display: none;
  background: #000;
  color: #fff;
  padding: 0;
  margin-top: 0;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.healthcare-header {
  background: #1a1a1a;
  padding: 20px 0;
  border-bottom: 1px solid #333;
}

.healthcare-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.healthcare-logo {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}

.healthcare-logo::before {
  content: 'D';
  background: #007bff;
  color: white;
  padding: 8px 12px;
  border-radius: 8px;
  margin-right: 8px;
}

.healthcare-nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.healthcare-nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.healthcare-nav-links a:hover {
  color: #007bff;
}

.healthcare-search {
  background: #333;
  border: none;
  padding: 8px 15px;
  border-radius: 20px;
  color: #fff;
  width: 200px;
}

.healthcare-search::placeholder {
  color: #999;
}

.healthcare-cta-btn {
  background: #007bff;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
}

.healthcare-main {
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 24px;
  gap: 60px;
}

.healthcare-left {
  flex: 1;
  position: relative;
}

.healthcare-illustration {
  width: 100%;
  height: 500px;
  background: linear-gradient(135deg, #1a1a1a, #333);
  border-radius: 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.healthcare-illustration::before {
  content: '👩‍⚕️';
  font-size: 120px;
  margin-bottom: 20px;
}

.healthcare-illustration::after {
  content: 'Healthcare Professional';
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-size: 18px;
  color: #fff;
  font-weight: 600;
}

.user-profile {
  background: #1a1a1a;
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 30px;
  border: 1px solid #333;
}

.user-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #007bff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: white;
  margin-bottom: 15px;
}

.user-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.user-title {
  font-size: 14px;
  color: #999;
  margin-bottom: 10px;
}

.user-company {
  font-size: 14px;
  color: #007bff;
  margin-bottom: 10px;
}

.user-location {
  font-size: 14px;
  color: #999;
  margin-bottom: 15px;
}

.user-contact {
  font-size: 14px;
  color: #999;
  margin-bottom: 5px;
}

.more-details-btn {
  background: #007bff;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 5px;
  font-size: 12px;
  cursor: pointer;
  margin-top: 15px;
}

.user-details-expanded {
  background: #1a1a1a;
  border-radius: 15px;
  padding: 20px;
  margin-top: 15px;
  border: 1px solid #333;
  display: none;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 14px;
}

.detail-label {
  color: #999;
}

.detail-value {
  color: #fff;
  font-weight: 500;
}

.healthcare-stats-large {
  text-align: center;
  margin: 30px 0;
}

.stats-number {
  font-size: 48px;
  font-weight: 800;
  color: #007bff;
  display: block;
}

.stats-label {
  font-size: 18px;
  color: #fff;
  margin-bottom: 20px;
}

.contact-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.contact-btn {
  background: #333;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-btn:hover {
  background: #007bff;
}

.healthcare-right {
  flex: 1;
  padding-top: 20px;
}

.healthcare-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #fff;
}

.healthcare-title .highlight {
  color: #007bff;
}

.healthcare-description {
  font-size: 16px;
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 40px;
}

.customize-form {
  background: #1a1a1a;
  padding: 30px;
  border-radius: 15px;
  border: 1px solid #333;
}

.form-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #fff;
}

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

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

.form-input {
  width: 100%;
  padding: 12px 15px;
  background: #333;
  border: 1px solid #555;
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
}

.form-input:focus {
  outline: none;
  border-color: #007bff;
}

.form-input::placeholder {
  color: #999;
}

.form-textarea {
  width: 100%;
  padding: 12px 15px;
  background: #333;
  border: 1px solid #555;
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  min-height: 100px;
  resize: vertical;
}

.form-textarea:focus {
  outline: none;
  border-color: #007bff;
}

.email-link {
  font-size: 12px;
  color: #007bff;
  text-decoration: underline;
  cursor: pointer;
  margin-top: 5px;
  display: block;
}

.submit-btn {
  background: #007bff;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  transition: background 0.3s ease;
}

.submit-btn:hover {
  background: #0056b3;
}

.healthcare-sidebar {
  position: fixed;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}

.sidebar-icon {
  width: 40px;
  height: 40px;
  background: #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: background 0.3s ease;
}

.sidebar-icon:hover {
  background: #007bff;
}

.healthcare-footer {
  background: #1a1a1a;
  padding: 20px 0;
  border-top: 1px solid #333;
  margin-top: 40px;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-text {
  color: #999;
  font-size: 14px;
}

.footer-badges {
  display: flex;
  gap: 15px;
  align-items: center;
}

.footer-badge {
  background: #333;
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 500;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #333;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  z-index: 1000;
}

.close-btn:hover {
  background: #007bff;
}

.healthcare-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
  pointer-events: none;
}

.healthcare-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.healthcare-title {
  font-size: 48px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 60px;
  background: linear-gradient(45deg, #fff, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 40px rgba(255,215,0,0.5);
  position: relative;
}

.healthcare-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #ffd700, #ff6b35);
  border-radius: 2px;
}

.healthcare-subtitle {
  text-align: center;
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 50px;
  font-weight: 300;
  letter-spacing: 1px;
}

.healthcare-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 35px;
  margin-top: 40px;
}

.healthcare-category {
  background: rgba(255, 255, 255, 0.95);
  padding: 35px;
  border-radius: 25px;
  border: none;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.healthcare-category::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.healthcare-category:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 30px 80px rgba(0,0,0,0.25);
}

.healthcare-category:hover::before {
  transform: scaleX(1);
}

.healthcare-category::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(102,126,234,0.1), rgba(118,75,162,0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.healthcare-category:hover::after {
  opacity: 1;
}

.category-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #667eea;
  text-align: center;
  position: relative;
  z-index: 2;
}

.category-title::before {
  content: '🏥';
  display: block;
  font-size: 32px;
  margin-bottom: 10px;
}

.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 2;
}

.category-list li {
  padding: 15px 20px;
  border: none;
  font-size: 15px;
  color: #555;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 12px;
  margin-bottom: 8px;
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(5px);
}

.category-list li:last-child {
  margin-bottom: 0;
}

.category-list li:hover {
  background: linear-gradient(90deg, rgba(102,126,234,0.15), rgba(118,75,162,0.15));
  color: #667eea;
  font-weight: 600;
  transform: translateX(8px) scale(1.02);
  box-shadow: 0 8px 25px rgba(102,126,234,0.3);
}

.category-list li::before {
  content: '→';
  position: absolute;
  right: 20px;
  opacity: 0;
  transition: all 0.3s ease;
  color: #764ba2;
  font-weight: bold;
  font-size: 18px;
}

.category-list li:hover::before {
  opacity: 1;
  transform: translateX(-8px);
}

.category-list li::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.5s ease;
}

.category-list li:hover::after {
  left: 100%;
}

.close-btn {
  position: absolute;
  top: 40px;
  right: 40px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  color: white;
  border: none;
  padding: 15px 25px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(102,126,234,0.4);
  z-index: 10;
}

.close-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px rgba(102,126,234,0.6);
  background: linear-gradient(90deg, #764ba2, #667eea);
}

.close-btn::before {
  content: '←';
  margin-right: 8px;
  font-size: 18px;
}

.healthcare-stats {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.healthcare-stat {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  padding: 20px 30px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.3s ease;
}

.healthcare-stat:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.2);
}

.healthcare-stat-number {
  font-size: 28px;
  font-weight: 800;
  color: #ffd700;
  display: block;
  margin-bottom: 5px;
}

.healthcare-stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}

/* Removed conflicting old hero styles - using new modern design above */

.info-section {
  background: transparent;
  color: #fff;
  padding: 100px 0;
}

.info-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.info-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 25px;
  background: linear-gradient(45deg, #fff, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.info-desc {
  font-size: 20px;
  margin-bottom: 50px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

.info-subtitle {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #ffd700;
}

.info-text {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 100vw;
  min-height: 100vh;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -2;
  opacity: 0.8;
  pointer-events: none;
  filter: brightness(0.7) contrast(1.3);
  will-change: transform;
}

.main-content {
  position: relative;
  z-index: 10;
  min-height: 100vh;
}

.video-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(135deg, rgba(15, 15, 35, 0.7) 0%, rgba(30, 30, 60, 0.8) 50%, rgba(15, 15, 35, 0.7) 100%);
  z-index: -1;
  pointer-events: none;
  will-change: transform;
}

/* Features Section */
.features-section {
  padding: 80px 0;
  background: transparent;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 40px 30px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.1);
  border-color: #ff6b6b;
  box-shadow: 0 20px 40px rgba(255, 107, 107, 0.3);
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}

.feature-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
  background: linear-gradient(45deg, #fff, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.feature-desc {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

/* Solutions Section */
.solutions-section {
  padding: 100px 0;
  background: transparent;
}

.solutions-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.solution-left {
  color: #fff;
}

.solution-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 25px;
  background: linear-gradient(45deg, #fff, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.solution-desc {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
}

.solution-stats {
  display: flex;
  gap: 40px;
}

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

.solution-stat-number {
  display: block;
  font-size: 36px;
  font-weight: 800;
  color: #ffd700;
  margin-bottom: 8px;
}

.solution-stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.solution-right {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.solution-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px 20px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  transition: all 0.3s ease;
}

.solution-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffd700;
}

.solution-card-icon {
  font-size: 36px;
  margin-bottom: 15px;
  display: block;
}

.solution-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.solution-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

/* About Section */
.about-section {
  padding: 100px 0;
  background: transparent;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.about-content {
  text-align: center;
  color: #fff;
}

.about-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 30px;
  background: linear-gradient(45deg, #fff, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-desc {
  font-size: 20px;
  line-height: 1.7;
  margin-bottom: 60px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.about-feature {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  padding: 40px 30px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.about-feature:hover {
  transform: translateY(-5px);
  background: rgba(65, 158, 255, 0.1);
  border-color: #419eff;
}

.about-feature-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}

.about-feature h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

.about-feature p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 700px) {
  .navbar, .hero-inner, .info-inner {
    padding-left: 12px;
    padding-right: 12px;
  }
  .hero-title {
    font-size: 32px;
  }
  .stats {
    flex-direction: column;
    gap: 16px;
  }
  .stat-box {
    min-width: unset;
    width: 100%;
  }
  .hero-inner, .main-content {
    margin-left: 12px;
    margin-right: 12px;
  }
  .category-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
  }
  .data-title {
    font-size: 32px;
  }
  
  /* Mobile responsive for new sections */
  .solutions-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .solution-title {
    font-size: 32px;
  }
  
  .solution-stats {
    flex-direction: column;
    gap: 20px;
  }
  
  .about-title {
    font-size: 36px;
  }
  
  .features-container {
    grid-template-columns: 1fr;
  }
  
  .about-features {
    grid-template-columns: 1fr;
  }
}

/* Enhanced video overlay with transition */
.video-overlay {
  transition: opacity 0.3s ease;
} 