/* Modern Tailwind-inspired CSS Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: rgb(229 231 235);
}

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Scroll offset for fixed nav */
#home, #billing, #kiosk {
  scroll-margin-top: 100px;
}

body {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  background-color: rgb(255 255 255);
  color: rgb(15 23 42);
  line-height: 1.5;
  font-size: 16px;
  overflow-x: hidden;
  padding-top: 40px;
  /* Optimize rendering */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Optimize scrolling performance */
.is-scrolling * {
  transition-duration: 0ms !important;
  animation-duration: 0ms !important;
}

/* Typography - Modern Scale */
h1 {
  font-size: clamp(2.25rem, 5vw + 1rem, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
  color: rgb(15 23 42);
}

h3 {
  font-size: clamp(1.5rem, 3vw + 1rem, 2.25rem);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.75rem;
  color: rgb(30 41 59);
}

p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin-bottom: 1rem;
  color: rgb(71 85 105);
}

/* Modern Button System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 1.75rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5rem;
  border-radius: 12px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  text-decoration: none;
  min-height: 36px;
  position: relative;
  overflow: hidden;
}

.btn:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.5);
}

.btn-primary {
  background: #0E2641;
  color: #F4D09E;
  font-weight: 700;
  padding: 0.6rem 1.75rem;
  min-height: 38px;
  border-radius: 6px;
}

.btn-primary:hover {
  background: #1a3a5c;
}

.btn-secondary {
  background: transparent;
  color: #0E2641;
  font-weight: 700;
  border: 1.5px solid rgba(14, 38, 65, 0.5);
  border-radius: 6px;
  padding: 0.6rem 1.75rem;
  min-height: 38px;
}

.btn-secondary:hover {
  background: rgba(236, 227, 209, 0.5);
  color: #0E2641;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

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

/* Spacing */
.gap-4 { gap: 1rem; }

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
}

.glass-nav {
  background: #FFFFFF;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 10px auto 0 auto;
  padding: 0 1rem;
  position: relative;
}

.logo-container {
  display: flex;
  align-items: center;
  flex: 1;
}

.logo-image {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-spacer {
  flex: 1;
  visibility: hidden;
}

.nav-link {
  color: #0E2641;
  font-size: 0.875rem;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.nav-link:hover {
  background: linear-gradient(90deg, #0ABAB5 0%, #3B82F6 50%, #020e34 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Responsive Navigation */
@media (max-width: 768px) {
  .nav-links {
    gap: 1.5rem;
  }
  
  .nav-link {
    font-size: 0.9rem;
  }
}

@media (max-width: 640px) {
  .nav-container {
    flex-direction: column;
    gap: 1rem;
  }
  
  .logo-container {
    flex: 0;
  }
  
  .nav-links {
    position: relative;
    left: auto;
    transform: none;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }
  
  .nav-spacer {
    display: none;
  }
  
  .nav-link {
    font-size: 0.85rem;
  }
}

/* Main Content Container */
.main-content {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 90%;
  max-width: 90%;
  margin: 80px auto 0 auto;
  border-radius: 20px;
  overflow: hidden;
  background: #000000;
}

/* Hero Section */
.hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: 4rem 0;
  background: transparent;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(147, 51, 234, 0.1) 0%, transparent 50%);
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0;
  border-radius: 20px;
}

.hero-content-centered {
  position: relative;
  z-index: 1;
  text-align: center;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 2rem;
}

.hero-animation-section {
  margin-bottom: 2rem;
  min-height: 60px;
}

.hero-title {
  color: white;
  margin-bottom: 1.5rem;
  font-size: clamp(1.8rem, 4vw + 0.8rem, 3.2rem);
  font-weight: 300;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.hero-subtitle {
  font-size: clamp(0.85rem, 1.1vw, 1rem);
  font-weight: 300;
  color: #FFFFFF;
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-buttons .btn {
  padding: 0.6rem 2.25rem;
  min-height: 44px;
}

.text-gradient-blue {
  background: linear-gradient(90deg, #0ABAB5 0%, #3B82F6 50%, #020e34 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.features-cards {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: stretch;
  max-width: 1200px;
  margin: 3rem auto 0 auto;
  padding: 0 1rem;
  position: relative;
  z-index: 1;
}

.feature-card {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem 2.25rem 2.5rem 2.25rem;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.5rem;
  min-height: 200px;
}

.feature-icon {
  flex-shrink: 0;
  margin-bottom: 0;
}

.feature-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.feature-icon-bg {
  width: 75px;
  height: 75px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.feature-icon-bg span {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

.feature-icon-1 {
  background: url('../assets/others/icon1.png') center/cover no-repeat;
}

.feature-icon-2 {
  background: url('../assets/others/icon2.png') center/cover no-repeat;
}

.feature-title {
  font-size: 1rem;
  font-weight: 400;
  color: white;
  margin-bottom: 0.75rem;
}

.feature-description {
  font-size: 0.85rem;
  font-weight: 300;
  color: #a0aec0;
  line-height: 1.6;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.feature-link {
  color: #3B82F6;
  text-decoration: none;
  font-weight: 400;
  font-size: 0.85rem;
  margin-bottom: 0;
  padding-bottom: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.feature-link span {
  font-size: 0.9rem;
}

.feature-metric {
  font-size: 0.75rem;
  font-weight: 300;
  color: #FFFFFF;
  margin: 0;
  padding-top: 0.75rem;
  padding-bottom: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex: 1;
  max-width: 460px;
  cursor: pointer;
}

.feature-card-link:hover .feature-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

/* Responsive Hero Section */
@media (max-width: 768px) {
  .hero { 
    padding: 3rem 0;
    min-height: auto;
  }
  
  .hero-content-centered {
    padding: 0 1rem;
  }
  
  .hero-title {
    font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  }
  
  .hero-subtitle {
    font-size: clamp(0.875rem, 1vw, 1rem);
    max-width: 100%;
  }
  
  .features-cards {
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
  }
  
  .feature-card-link {
    max-width: 100%;
  }
  
  .feature-card {
    max-width: 100%;
  }
}

.underlined-text {
  text-decoration: underline;
  text-decoration-color: rgba(107, 114, 128, 0.6);
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

/* Benefits Section */
.benefits-section {
  padding: 6rem 0 10rem 0;
  background: #ffffff;
  text-align: center;
}

.benefits-title {
  font-size: clamp(1.3rem, 3vw + 0.6rem, 2.2rem);
  font-weight: 300;
  color: #000000;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.benefits-subtitle {
  font-size: clamp(0.9rem, 1.2vw + 0.4rem, 1.1rem);
  font-weight: 400;
  color: #718096;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.benefits-list li {
  font-size: clamp(0.85rem, 1vw + 0.3rem, 1rem);
  font-weight: 500;
  color: #000000;
  text-align: center;
  position: relative;
  padding-left: 0;
  width: 100%;
  max-width: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.benefits-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3B82F6;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .benefits-section {
    padding: 4rem 0 7rem 0;
  }
  
  .benefits-list {
    gap: 1.25rem;
  }
  
  .benefits-list li {
    padding-left: 0;
  }
}

/* Service 1 Section */
.service-1-section {
  padding: 6rem 0;
  background: #000000;
  width: 90%;
  max-width: 90%;
  margin: 0 auto;
  margin-bottom: 150px;
  border-radius: 20px;
  overflow: hidden;
}

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

.service-1-header {
  text-align: center;
  margin-bottom: 0;
}

.service-1-label {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #60a5fa;
  margin-bottom: 1.5rem;
}

.service-1-title {
  font-size: clamp(1.25rem, 2.5vw + 0.5rem, 2rem);
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.service-1-subtitle {
  font-size: clamp(0.875rem, 1.2vw + 0.4rem, 1rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

.service-1-card {
  background: rgba(30, 30, 30, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 3rem 1rem 2.5rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 10rem auto 4rem auto;
}

.service-1-card-left {
  display: flex;
  flex-direction: column;
  padding-top: 1rem;
}

.service-1-card-title {
  font-size: clamp(1.1rem, 2.2vw + 0.4rem, 1.75rem);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 2rem;
  line-height: 1.3;
  max-width: 100%;
}

.service-1-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.service-1-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.75rem 0;
}

.service-1-item {
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.service-1-item:hover {
  opacity: 0.9;
}

.service-1-item:hover .service-1-item-title {
  color: rgba(255, 255, 255, 0.9);
}

.service-1-item.active {
  opacity: 1;
}

.service-1-item.active:hover {
  opacity: 1;
}

.service-1-item-line {
  width: 2px;
  min-height: 20px;
  background: rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
  margin-top: 0.25rem;
  border-radius: 2px;
}

.service-1-item.active .service-1-item-line {
  background: rgba(255, 255, 255, 1);
  width: 4px;
}

.service-1-item-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-1-item-title {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
}

.service-1-item.active .service-1-item-title {
  font-weight: 600;
  color: #ffffff;
}

.service-1-item.active .service-1-item-title.slide-in-up,
.service-1-item.active .service-1-item-description.slide-in-up {
  animation: textSlideInUp 0.5s ease-out forwards;
}

.service-1-item.active .service-1-item-title.slide-in-down,
.service-1-item.active .service-1-item-description.slide-in-down {
  animation: textSlideInDown 0.5s ease-out forwards;
}

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

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

.service-1-item-description {
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
  margin: 0;
  display: none;
  max-width: 90%;
}

.service-1-item.active .service-1-item-description {
  display: block;
}

.service-1-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background: #3B82F6;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
  align-self: flex-start;
  margin-bottom: 1.5rem;
}

.service-1-button:hover {
  background: #2563EB;
}

.service-1-disclaimer {
  font-size: 0.75rem;
  font-weight: 300;
  color: #ffffff;
  line-height: 1.5;
  margin: 0;
  font-style: italic;
}

.service-1-card-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  position: relative;
  min-height: 520px;
  margin-top: -2rem;
  margin-bottom: -0.5rem;
}

.service-1-visual {
  position: relative;
  width: 100%;
  max-width: 580px;
  height: 80%;
  background: rgba(20, 20, 20, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
}

.service-1-visual-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

/* Horizontal lines */
.service-1-visual-grid::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.05) 50%, transparent 100%) 0 33.33%,
    linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.05) 50%, transparent 100%) 0 66.66%;
  background-size: 100% 1px;
  background-repeat: no-repeat;
}

/* Vertical lines */
.service-1-visual-grid::after {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.05) 50%, transparent 100%) 33.33% 0,
    linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.05) 50%, transparent 100%) 66.66% 0;
  background-size: 1px 100%;
  background-repeat: no-repeat;
}

.service-1-visual-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  width: 100%;
  height: 100%;
  padding: 2rem;
}

.service-1-large-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(40, 40, 40, 0.9);
  border: 2px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.service-1-large-circle img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.service-1-connector {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  white-space: nowrap;
}

.service-1-small-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(40, 40, 40, 0.9);
  border: 2px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-1-dashed-line,
.service-1-dashed-arrow {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1rem;
  letter-spacing: 2px;
  font-family: monospace;
  white-space: nowrap;
  flex-shrink: 0;
}

.service-1-moh-logo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(40, 40, 40, 0.9);
  border: 2px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.service-1-moh-logo img {
  width: 65%;
  height: 65%;
  object-fit: contain;
}

.service-1-nav-arrows {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  z-index: 2;
}

.service-1-arrow-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1a1a;
  transition: opacity 0.2s ease;
  opacity: 0.3;
}

.service-1-arrow-btn:hover {
  opacity: 1;
}

.service-1-arrow-btn.hidden {
  opacity: 0;
  pointer-events: none;
}

.service-1-stage:not(.active):not(.slide-out-up):not(.slide-out-down) {
  display: none;
}

.service-1-stage.active {
  display: flex;
}

.service-1-stage {
  position: absolute;
  inset: 0;
  padding: 2rem;
}

.service-1-stage.slide-in-up {
  animation: slideInUp 0.4s ease-out forwards;
}

.service-1-stage.slide-in-down {
  animation: slideInDown 0.4s ease-out forwards;
}

.service-1-stage.slide-out-up {
  animation: slideOutUp 0.4s ease-out forwards;
}

.service-1-stage.slide-out-down {
  animation: slideOutDown 0.4s ease-out forwards;
}

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

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

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

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

.service-1-stage-image {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: 12px;
}

.service-1-stage-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.service-1-stage-bottom {
  align-items: flex-end;
  padding-bottom: 0;
}

.service-1-stage-bottom .service-1-center-card {
  margin-bottom: 0;
}

.service-1-center-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 0.5rem;
  width: 95%;
  height: 85%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-1-inner-card {
  background: rgba(255, 255, 255, 1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.service-1-inner-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 45%,
    rgba(255, 255, 255, 1) 100%
  );
  pointer-events: none;
  border-radius: 16px;
}

.service-1-inner-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 16px;
}

@media (max-width: 1024px) {
  .service-1-card {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
  }
  
  .service-1-card-left {
    order: 1;
  }
  
  .service-1-card-right {
    order: 2;
    min-height: 400px;
    margin-top: 0;
    align-items: center;
  }
  
  .service-1-visual {
    max-width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .service-1-section {
    padding: 4rem 0;
    width: 95%;
    max-width: 95%;
  }
  
  .service-1-wrapper {
    padding: 0 0.75rem;
  }
  
  .service-1-header {
    margin-bottom: 2rem;
  }
  
  .service-1-card {
    padding: 1.5rem 0.75rem;
  }
  
  .service-1-visual-content {
    flex-wrap: nowrap;
    gap: 0.5rem;
    padding: 1rem 0.5rem;
    overflow-x: auto;
    overflow-y: hidden;
    justify-content: center;
  }
  
  .service-1-large-circle {
    width: 80px;
    height: 80px;
  }
  
  .service-1-large-circle svg {
    width: 40px;
    height: 40px;
  }
  
  .service-1-small-circle {
    width: 40px;
    height: 40px;
  }
  
  .service-1-moh-logo {
    width: 60px;
    height: 60px;
  }
}

/* Problem Section */
.problem-section {
  padding: 4rem 0;
  background: linear-gradient(
    135deg,
    rgb(248, 252, 252) 0%,
    rgb(241, 243, 249) 100%
  );
  text-align: center;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-top: 3rem;
  margin-bottom: 3rem;
  position: relative;
  box-sizing: border-box;
}

.problem-title {
  font-size: clamp(1.8rem, 4vw + 0.8rem, 3.2rem);
  font-weight: 700;
  color: #0E2641;
  margin-bottom: 2.5rem;
  line-height: 1.2;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.problem-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto 2.5rem auto;
}

.problem-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 2rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  text-align: left;
  /* Hardware acceleration */
  transform: translateZ(0);
  will-change: transform;
}

.problem-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  color: #F4D09E;
  font-weight: bold;
}

.problem-text {
  font-size: clamp(0.9rem, 1.2vw + 0.4rem, 1.1rem);
  font-weight: 400;
  color: rgb(15 23 42);
  line-height: 1.4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.problem-bracket {
  font-size: clamp(0.8rem, 1vw + 0.3rem, 0.95rem);
  color: rgb(93, 105, 122, 0.5);
  font-weight: 500;
  margin-left: 1rem;
  flex-shrink: 0;
}

.problem-subtitle {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  font-weight: 500;
  color: rgb(71 85 105);
  line-height: 1.6;
  max-width: 1000px;
  margin: 0 auto;
  font-style: italic;
}

/* Responsive Design for Problem Section */
@media (max-width: 768px) {
  .problem-list {
    gap: 1rem;
  }
  
  .problem-item {
    padding: 0.75rem 1rem;
  }
  
  .problem-title {
    margin-bottom: 2rem;
  }
  
  .problem-text {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .problem-bracket {
    margin-left: 0;
    margin-top: 0.25rem;
    align-self: flex-end;
  }
}

/* Partners Section */
.partners-section {
  padding: 6rem 0 2rem 0;
  min-height: 40vh;
  background: #ffffff;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.partners-title {
  font-size: clamp(0.5rem, 2vw + 0.3rem, 1rem);
  font-weight: 600;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 3rem;
  line-height: 1.4;
  opacity: 0.6;
}

.partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
  margin: 3rem 0;
}

.partner-link {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.partner-link:hover {
  transform: scale(1.05);
}

.partner-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.6);
  transition: filter 0.3s ease;
}

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


/* Responsive Design for Partners Section */
@media (max-width: 768px) {
  .partners-logos {
    gap: 2rem;
  }
  
  .partner-link {
    padding: 0.5rem;
  }
  
  .partner-logo {
    height: 50px;
  }
}

@media (max-width: 480px) {
  .partners-logos {
    gap: 1.5rem;
  }
  
  .partner-logo {
    height: 40px;
  }
}

/* More Locations Section */
.more-locations-section {
  padding: 0 0 4rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffffff;
}

.more-locations-link {
  display: block;
  width: 70%;
  max-width: 70%;
  text-decoration: none;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
}

.more-locations-link:hover .more-locations-content::before {
  background: rgba(255, 255, 255, 0.4);
}

.more-locations-link:hover .more-locations-text {
  color:  rgba(255, 255, 255, 0.6);
}

.more-locations-content {
  background-image: url('../assets/partners/more-locations.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding: 4rem 2rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

.more-locations-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  z-index: 1;
}

.more-locations-text {
  position: relative;
  z-index: 2;
  font-size: clamp(0.5rem, 2vw + 0.3rem, 1rem);
  font-weight: 600;
  color: #9CA3AF;
  margin: 0;
  text-align: center;
  padding: 5px;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .more-locations-link {
    width: 85%;
    max-width: 85%;
  }
  
  .more-locations-content {
    padding: 3rem 1.5rem;
    min-height: 250px;
  }
}



.feature-icon-bg {
  width: 75px;
  height: 75px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.feature-icon-bg span {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.feature-icon-1 {
  background: url('../assets/others/icon1.png') center/cover no-repeat;
}

.feature-icon-2 {
  background: url('../assets/others/icon2.png') center/cover no-repeat;
}

.feature-title {
  font-size: 1rem;
  font-weight: 400;
  color: white;
  margin-bottom: 0.75rem;
}

.feature-description {
  font-size: 0.85rem;
  font-weight: 300;
  color: #a0aec0;
  line-height: 1.6;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.feature-link {
  color: #3B82F6;
  text-decoration: none;
  font-weight: 400;
  font-size: 0.85rem;
  margin-bottom: 0;
  padding-bottom: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.feature-link span {
  font-size: 0.9rem;
}

.feature-metric {
  font-size: 0.75rem;
  font-weight: 300;
  color: #FFFFFF;
  margin: 0;
  padding-top: 0.75rem;
  padding-bottom: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex: 1;
  max-width: 460px;
  cursor: pointer;
}

.feature-card-link:hover .feature-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

@media (max-width: 768px) {
  .hero { 
    padding: 3rem 0;
    min-height: auto;
  }
  
  .hero-content-centered {
    padding: 0 1rem;
  }
  
  .hero-title {
    font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  }
  
  .hero-subtitle {
    font-size: clamp(0.875rem, 1vw, 1rem);
    max-width: 100%;
  }
  
  .features-cards {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .feature-card {
    max-width: 100%;
  }
}

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

/* Decorative Underline */
.decorative-underline {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.underline-image {
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: auto;
  z-index: 1000;
  display: block;
  pointer-events: none;
  mix-blend-mode: multiply;
}

/* Adjust highlighter for very small screens where problem-title breaks to 3 lines */
@media (max-width: 400px) {
  .underline-image {
    bottom: 0;
    width: 100%;
    left: 0;
    height: auto;
    transform: scale(0.8);
  }
}

/* Contact Section */
.contact-section {
  padding: 6rem 0 0 0;
  background: #ffffff;
}
.contact-title {
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.5rem);
  font-weight: 600;
  color: #0E2641;
  text-align: center;
  margin-bottom: 0.75rem;
}
.contact-subtitle {
  font-size: 1rem;
  color: #6b7280;
  text-align: center;
  margin-bottom: 3rem;
}
.contact-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
}
.form-input, .form-textarea {
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  background: #ffffff;
  color: #1f2937;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: #0E2641;
  box-shadow: 0 0 0 3px rgba(14, 38, 65, 0.1);
}
.form-input::placeholder, .form-textarea::placeholder {
  color: #9ca3af;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  font-size: 1rem;
  font-weight: 400;
}
.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #ffffff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  border: 1px solid #d1d5db;
  border-radius: 8px;
}

.form-select:focus {
  outline: none;
  border-color: #0E2641;
  box-shadow: 0 0 0 3px rgba(14, 38, 65, 0.1);
}

.form-select option {
  padding: 0.5rem;
  background: #ffffff;
  color: #1f2937;
}
.contact-button {
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  background: #0E2641;
  color: #F4D09E;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease;
  align-self: center;
  min-width: 160px;
}
.contact-button:hover:not(.disabled) {
  background: #1a3a5c;
}

.contact-button.disabled {
  background: #9ca3af;
  color: #e5e7eb;
  cursor: not-allowed;
}

/* Testimonial Section */
.testimonial-section {
  padding: 8rem 0;
  background: #ffffff;
  text-align: center;
}

.testimonial-arc {
  position: relative;
  width: 100%;
  max-width: 550px;
  height: 220px;
  margin: 0 auto 1.5rem auto;
}

.arc-svg {
  width: 100%;
  height: 100%;
}

.arc-icon {
  position: absolute;
  width: 36px;
  height: 36px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.1);
}

.arc-icon-1 {
  top: 45%;
  left: 15%;
}

.arc-icon-2 {
  top: 12%;
  left: 50%;
  transform: translateX(-50%);
}

.arc-icon-3 {
  top: 50%;
  right: 28%;
}

.arc-icon-4 {
  top: 28%;
  right: 15%;
}

.testimonial-quote {
  font-size: clamp(0.875rem, 1.2vw + 0.4rem, 1rem);
  font-style: italic;
  font-weight: 400;
  color: #374151;
  line-height: 1.8;
  max-width: 480px;
  margin: 0 auto 2.5rem auto;
  padding: 0 1rem;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 1.5rem;
  max-width: 400px;
  margin: 0 auto;
  position: relative;
}

.testimonial-author::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #e5e7eb 20%, #e5e7eb 80%, transparent 100%);
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  overflow: hidden;
}

.author-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-name {
  font-size: 1.1rem;
  font-weight: 600;
  background: linear-gradient(90deg, #0ABAB5 0%, #3B82F6 50%, #020e34 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}

.author-title {
  font-size: 0.9rem;
  font-weight: 400;
  color: #6b7280;
  margin: 0;
}

.testimonial-signature {
  margin-top: 1.5rem;
}

.signature-svg {
  width: 180px;
  height: 60px;
}

@media (max-width: 768px) {
  .testimonial-section {
    padding: 5rem 0;
  }
  
  .testimonial-arc {
    height: 150px;
    margin-bottom: 1.5rem;
  }
  
  .arc-icon {
    width: 32px;
    height: 32px;
  }
  
  .arc-icon svg {
    width: 16px;
    height: 16px;
  }
}
@media (max-width: 768px) {
  .contact-section {
    padding: 4rem 0;
  }
  .contact-form {
    padding: 0 1rem;
  }
}

/* Footer Styles */
.footer {
  padding: 2rem 0;
  margin-top: 4rem;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 85vw;
  height: 1px;
  background-color: #e5e7eb;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright p {
  margin: 0;
  color: #6b7280;
  font-size: 0.875rem;
}

.footer-email {
  color: #6b7280;
  text-decoration: none;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
}

.footer-contact-link {
  color: #6b7280;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-contact-link:hover {
  color: #4b5563;
}

.footer-email-link {
  color: #6b7280;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-email-link:hover {
  color: #4b5563;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-logo-image {
  height: 30px;
  width: auto;
}

.footer-linkedin {
  color: #6b7280;
  display: flex;
  align-items: center;
  transition: color 0.2s ease;
}

.footer-linkedin:hover {
  color: #4b5563;
}

.footer-email:hover {
  color: #4b5563;
}

@media (max-width: 640px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .footer-copyright {
    order: 2;
  }
  
  .footer-social {
    order: 1;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .footer-email {
    margin-right: 1rem;
  }
}

/* CTA Section */
.cta-section {
  padding: 0;
  background-color: #121e2d;
  color: white;
  margin-top: 4rem;
  position: relative;
  overflow: hidden;
}

.cta-container {
  display: flex;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  flex-wrap: wrap;
}

.cta-content {
  flex: 1;
  padding: 6rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-title {
  font-size: clamp(2rem, 3.5vw + 0.5rem, 3.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
  line-height: 1.2;
}

.cta-subtitle {
  font-size: clamp(1.5rem, 2.5vw + 0.5rem, 2.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #6b8aab;
  line-height: 1.2;
}

.cta-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  color: #a0aec0;
  max-width: 90%;
}

.cta-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.cta-benefits li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
  color: #e2e8f0;
}

.cta-benefits-wrapper {
  flex: 1;
  padding: 6rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-action {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
  width: 100%;
}

.cta-button {
  background: #0E2641;
  color: #F4D09E;
  font-weight: 700;
  padding: 1rem 2.5rem;
  min-height: 50px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-block;
  text-decoration: none;
  font-size: 1.2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
  background: #1a3a5c;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.check-circle {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4ade80;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .cta-container {
    flex-direction: column;
  }
  
  .cta-content {
    padding: 4rem 2rem;
  }
  
  .cta-description {
    max-width: 100%;
  }
  
  .cta-benefits-wrapper {
    padding: 0 2rem 4rem;
  }
}

@media (max-width: 768px) {
  .cta-content {
    padding: 3rem 1.5rem;
  }
  
  .cta-benefits-wrapper {
    padding: 0 1.5rem 3rem;
  }
  
  .cta-button {
    padding: 0.9rem 2rem;
    font-size: 1.1rem;
    min-height: 45px;
  }
}

/* Service 2 Section - Inherits Service 1 Styles */
.service-2-section { padding: 6rem 0; background: #000000; width: 90%; max-width: 90%; margin: 0 auto; border-radius: 20px; overflow: hidden; }
.service-2-wrapper { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.service-2-header { text-align: center; margin-bottom: 0; }
.service-2-label { display: inline-block; padding: 0.4rem 1rem; background: rgba(255, 255, 255, 0.1); border-radius: 9999px; font-size: 0.875rem; font-weight: 700; color: #a855f7; margin-bottom: 1.5rem; }
.service-2-title { font-size: clamp(1.25rem, 2.5vw + 0.5rem, 2rem); font-weight: 300; color: #ffffff; margin-bottom: 1rem; line-height: 1.2; }
.service-2-subtitle { font-size: clamp(0.875rem, 1.2vw + 0.4rem, 1rem); font-weight: 300; color: rgba(255, 255, 255, 0.6); line-height: 1.5; }
.service-2-card { background: rgba(30, 30, 30, 0.6); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 24px; padding: 3rem 1rem 2.5rem 3rem; display: grid; grid-template-columns: 1fr 1.3fr; gap: 3rem; max-width: 1200px; margin: 10rem auto 4rem auto; }
.service-2-card-left { display: flex; flex-direction: column; padding-top: 1rem; }
.service-2-card-title { font-size: clamp(1.1rem, 2.2vw + 0.4rem, 1.75rem); font-weight: 600; color: #ffffff; margin-bottom: 2rem; line-height: 1.3; max-width: 100%; }
.service-2-card-list { list-style: none; padding: 0; margin: 0 0 2rem 0; display: flex; flex-direction: column; gap: 1.25rem; }
.service-2-item { display: flex; align-items: flex-start; gap: 1rem; padding: 0.75rem 0; transition: opacity 0.2s ease, transform 0.2s ease; cursor: pointer; }
.service-2-item:hover { opacity: 0.9; }
.service-2-item:hover .service-2-item-title { color: rgba(255, 255, 255, 0.9); }
.service-2-item.active { opacity: 1; }
.service-2-item.active:hover { opacity: 1; }
.service-2-item-line { width: 2px; min-height: 20px; background: rgba(255, 255, 255, 0.3); flex-shrink: 0; margin-top: 0.25rem; border-radius: 2px; }
.service-2-item.active .service-2-item-line { background: rgba(255, 255, 255, 1); width: 4px; }
.service-2-item-content { flex: 1; display: flex; flex-direction: column; gap: 0.5rem; }
.service-2-item-title { font-size: 1rem; font-weight: 500; color: rgba(255, 255, 255, 0.6); }
.service-2-item.active .service-2-item-title { font-weight: 600; color: #ffffff; }
.service-2-item.active .service-2-item-title.slide-in-up,
.service-2-item.active .service-2-item-description.slide-in-up { animation: textSlideInUp 0.5s ease-out forwards; }
.service-2-item.active .service-2-item-title.slide-in-down,
.service-2-item.active .service-2-item-description.slide-in-down { animation: textSlideInDown 0.5s ease-out forwards; }
.service-2-item-description { font-size: 0.875rem; font-weight: 300; color: rgba(255, 255, 255, 0.5); line-height: 1.5; margin: 0; display: none; max-width: 90%; }
.service-2-item.active .service-2-item-description { display: block; }
.service-2-button { display: inline-flex; align-items: center; justify-content: center; padding: 0.75rem 1.5rem; background: #a855f7; color: #ffffff; font-size: 0.875rem; font-weight: 500; border-radius: 8px; text-decoration: none; transition: background 0.3s ease; margin-bottom: 1.5rem; width: fit-content; }
.service-2-button:hover { background: #9333ea; }
.service-2-disclaimer { font-size: 0.75rem; color: #ffffff; font-style: italic; }
.service-2-card-right { display: flex; flex-direction: column; align-items: flex-end; justify-content: flex-end; position: relative; min-height: 520px; margin-top: -2rem; margin-bottom: -0.5rem; }
.service-2-nav-arrows { display: flex; justify-content: flex-end; gap: 0.5rem; margin-bottom: 0.75rem; z-index: 2; }
.service-2-arrow-btn { width: 36px; height: 36px; border-radius: 50%; background: rgba(255, 255, 255, 0.9); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; color: #1a1a1a; transition: opacity 0.2s ease; opacity: 0.3; }
.service-2-arrow-btn:hover { opacity: 1; }
.service-2-arrow-btn.hidden { opacity: 0; pointer-events: none; }
.service-2-visual { position: relative; width: 100%; max-width: 580px; height: 80%; background: rgba(20, 20, 20, 0.9); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 16px; overflow: hidden; }
.service-2-visual-grid { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 0; }
.service-2-visual-grid::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.05) 50%, transparent 100%) 0 33.33%, linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.05) 50%, transparent 100%) 0 66.66%; background-size: 100% 1px; background-repeat: no-repeat; }
.service-2-visual-grid::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.05) 50%, transparent 100%) 33.33% 0, linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.05) 50%, transparent 100%) 66.66% 0; background-size: 1px 100%; background-repeat: no-repeat; }
.service-2-visual-content { position: relative; z-index: 1; display: flex; align-items: center; justify-content: center; gap: 1.5rem; width: 100%; height: 100%; padding: 2rem; }
.service-2-stage { position: absolute; inset: 0; padding: 2rem; display: none; }
.service-2-stage.active { display: flex; }
.service-2-stage.slide-in-up { animation: slideInUp 0.4s ease-out forwards; }
.service-2-stage.slide-in-down { animation: slideInDown 0.4s ease-out forwards; }
.service-2-stage.slide-out-up { animation: slideOutUp 0.4s ease-out forwards; }
.service-2-stage.slide-out-down { animation: slideOutDown 0.4s ease-out forwards; }
.service-2-stage:not(.active):not(.slide-out-up):not(.slide-out-down) { display: none; }
.service-2-stage-image { max-width: 90%; max-height: 90%; object-fit: contain; border-radius: 12px; }
.service-2-stage-bg { background-size: cover; background-position: center; background-repeat: no-repeat; }
.service-2-large-circle { width: 100px; height: 100px; border-radius: 50%; background: rgba(40, 40, 40, 0.9); border: 2px solid rgba(255, 255, 255, 0.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; overflow: hidden; }
.service-2-large-circle img { width: 32px; height: 32px; object-fit: contain; image-rendering: -webkit-optimize-contrast; image-rendering: crisp-edges; }
.service-2-connector { display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; white-space: nowrap; }
.service-2-small-circle { width: 50px; height: 50px; border-radius: 50%; background: rgba(40, 40, 40, 0.9); border: 2px solid rgba(255, 255, 255, 0.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.service-2-dashed-line, .service-2-dashed-arrow { color: rgba(255, 255, 255, 0.5); font-size: 1rem; letter-spacing: 2px; font-family: monospace; white-space: nowrap; flex-shrink: 0; }
.service-2-moh-logo { width: 100px; height: 100px; border-radius: 50%; background: rgba(40, 40, 40, 0.9); border: 2px solid rgba(255, 255, 255, 0.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; overflow: hidden; }
.service-2-moh-logo img { width: 65%; height: 65%; object-fit: contain; }
.service-2-emr-logos { display: flex; gap: 0.5rem; flex-shrink: 0; }
.service-2-emr-logo { width: 50px; height: 50px; border-radius: 50%; background: rgba(40, 40, 40, 0.9); border: 2px solid rgba(255, 255, 255, 0.15); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.service-2-emr-logo img { width: 65%; height: 65%; object-fit: contain; }
.service-2-center-card { background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 24px; padding: 0.5rem; width: 95%; height: 85%; display: flex; align-items: center; justify-content: center; }
.service-2-inner-card { background: rgba(255, 255, 255, 1); border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 16px; padding: 0; width: 100%; height: 100%; margin: 0; display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative; }
.service-2-inner-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 0%, transparent 45%, rgba(255, 255, 255, 1) 100%); pointer-events: none; border-radius: 16px; }
.service-2-inner-image { width: 100%; height: 100%; object-fit: contain; border-radius: 16px; }

@media (max-width: 1024px) {
  .service-2-card { grid-template-columns: 1fr; gap: 2rem; padding: 2rem; }
  .service-2-card-left { order: 1; }
  .service-2-card-right { order: 2; min-height: 400px; margin-top: 0; align-items: center; }
  .service-2-visual { max-width: 100%; justify-content: center; }
}

@media (max-width: 768px) {
  .service-2-section { padding: 4rem 0; width: 95%; max-width: 95%; }
  .service-2-wrapper { padding: 0 0.75rem; }
  .service-2-card { padding: 1.5rem 0.75rem; }
  .service-2-card-right { min-height: 350px; }
  .service-2-visual-content { flex-wrap: nowrap !important; gap: 0.5rem !important; padding: 1rem 0.5rem !important; overflow-x: auto; overflow-y: hidden; justify-content: center; }
}
