/* ============================================
   services.css - Source Area Solutions
   Services Page Styles
   ============================================ */

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

body {
  font-family: 'Inter', sans-serif;
  background-color: #0A0E17;
  color: #EDF2F8;
  line-height: 1.5;
  scroll-behavior: smooth;
  overflow-x: hidden;
  padding-top: 90px;
}

h1, h2, h3, h4 {
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ===== NAVBAR (same as other pages) ===== */
.navbar {
  position: fixed;
  top: 30px;
  width: 100%;
  background: rgba(8, 12, 20, 0.92);
  backdrop-filter: blur(16px);
  z-index: 1000;
  border-bottom: 1px solid rgba(46, 143, 217, 0.2);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(6, 10, 18, 0.98);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/*.navbar.hide-nav {
  top: -80px;
  opacity: 0;
  pointer-events: none;
}

.navbar.show-nav {
  top: 30px;
  opacity: 1;
  pointer-events: auto;
}*/

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-wrapper {
  position: relative;
}

.logo-img {
  height: 32px;
  width: auto;
  position: relative;
  z-index: 2;
}

.logo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 42px;
  height: 42px;
  background: radial-gradient(circle, rgba(46, 143, 217, 0.3), transparent);
  border-radius: 50%;\n  filter: blur(8px);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.company-name {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.3px;
  color: #FFFFFF;
}

.brand-tagline {
  font-size: 0.55rem;
  letter-spacing: 1px;
  color: #88C9F0;
  text-transform: uppercase;
}

.area-highlight {
  color: #E65A5A;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  align-items: center;
}

.nav-menu li a {
  text-decoration: none;
  color: #E2E8F0;
  font-weight: 500;
  font-size: 0.8rem;
  transition: 0.25s;
  position: relative;
}

.nav-menu li a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: #2E8FD9;
  transition: width 0.25s;
}

.nav-menu li a:hover::after,
.nav-menu li a.active-nav::after {
  width: 100%;
}

.nav-menu li a:hover {
  color: #2E8FD9;
}

.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background: #111724;
  min-width: 230px;
  border-radius: 12px;
  padding: 0.75rem 0;
  top: 40px;
  left: -20px;
  box-shadow: 0 20px 35px -8px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(230, 90, 90, 0.2);
  backdrop-filter: blur(8px);
  z-index: 1001;
  pointer-events: auto;
}

.dropdown-content a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.6rem 1.5rem;
  font-size: 0.85rem;
  color: #EDF2F8;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  pointer-events: auto;
}

.dropdown-content a i {
  width: 20px;
  color: #2E8FD9;
}

.dropdown-content a:hover {
  background: rgba(46, 143, 217, 0.1);
  color: #60A5FA;
  padding-left: 1.8rem;
}

.dropdown:hover .dropdown-content {
  display: block;
  pointer-events: auto;
}

.external-link i {
  font-size: 0.7rem;
  margin-left: 4px;
}

.nav-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: white;
}

.nav-progress {
  height: 2px;
  background: linear-gradient(90deg, #E65A5A, #1B2A4A);
  width: 0%;
  transition: width 0.2s;
}

/* ===== SERVICES HERO ===== */
.services-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: 8rem 2rem 4rem;
  overflow: hidden;
}

.services-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0A0F1A, #111827);
  z-index: 0;
}

.services-hero-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(46, 143, 217, 0.15), transparent 70%);
  animation: subtleShift 12s infinite alternate;
}

@keyframes subtleShift {
  0% { opacity: 0.4; transform: scale(1);}
  100% { opacity: 0.8; transform: scale(1.05);}
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
  padding: 0.4rem 1rem;
  border-radius: 40px;
  font-size: 0.8rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(46, 143, 217, 0.3);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #2E8FD9;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.services-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.gradient-text {
  background: linear-gradient(135deg, #FFFFFF, #2E8FD9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto;
  color: #B0B8D0;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: -3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  color: #94A3B8;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== QUICK NAVIGATION TABS ===== */
.services-tabs {
  position: sticky;
  top: 70px;
  background: #0D121C;
  padding: 1rem 0;
  border-bottom: 1px solid #1F2838;
  z-index: 99;
}

.tabs-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

.tab-btn {
  background: transparent;
  border: 1px solid #2A3343;
  color: #94A3B8;
  padding: 0.6rem 1.2rem;
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Inter', sans-serif;
}

.tab-btn:hover {
  border-color: #2E8FD9;
  color: #2E8FD9;
}

.tab-btn.active {
  background: #2E8FD9;
  border-color: #2E8FD9;
  color: white;
}

/* ===== SEO SERVICES OVERVIEW SECTION ===== */
.services-overview {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #0A0F1A, #0D1221);
  border-bottom: 1px solid #1F2838;
}

.overview-header {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.overview-header h2 {
  font-size: 2.5rem;
  color: #FFFFFF;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #FFFFFF, #2E8FD9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.overview-header p {
  font-size: 1rem;
  color: #B0B8D0;
  line-height: 1.6;
}

.services-categories-overview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.category-overview-card {
  background: #111722;
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid #1F2838;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.category-overview-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(46, 143, 217, 0.1), transparent);
  transition: left 0.5s;
}

.category-overview-card:hover {
  border-color: #2E8FD9;
  background: #131827;
  transform: translateY(-4px);
}

.category-overview-card:hover::before {
  left: 100%;
}

.category-overview-card .category-icon {
  width: 60px;
  height: 60px;
  background: rgba(46, 143, 217, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.category-overview-card .category-icon i {
  font-size: 1.8rem;
  color: #2E8FD9;
}

.category-overview-card h3 {
  font-size: 1.25rem;
  color: #FFFFFF;
  margin-bottom: 0.75rem;
}

.category-overview-card p {
  font-size: 0.95rem;
  color: #94A3B8;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.category-overview-card .learn-more {
  display: inline-block;
  color: #2E8FD9;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s;
}

.category-overview-card .learn-more:hover {
  color: #FFFFFF;
  transform: translateX(4px);
}

.services-keywords {
  margin-top: 3rem;
  padding: 2rem;
  background: rgba(46, 143, 217, 0.05);
  border-radius: 12px;
  border-left: 4px solid #2E8FD9;
}

.services-keywords h3 {
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.services-keywords p {
  color: #B0B8D0;
  font-size: 0.95rem;
  line-height: 1.8;
  word-wrap: break-word;
}

/* Hero Quick Info */
.hero-quick-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(46, 143, 217, 0.2);
}

.info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: #E2E8F0;
}

.info-item i {
  color: #2E8FD9;
  font-size: 1.2rem;
}

.info-item strong {
  color: #FFFFFF;
}

/* ===== SERVICE CATEGORIES ===== */
.service-category {
  display: none;
  padding: 4rem 0;
  background: #0A0E17;
}

.service-category.active-category {
  display: block;
  animation: fadeIn 0.5s ease;
}

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

.category-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #1F2838;
}

.category-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #1B2A4A, #0F172A);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #2E8FD940;
}

.category-icon i {
  font-size: 2rem;
  color: #2E8FD9;
}

.category-header p {
  color: #94A3B8;
  margin-top: 0.25rem;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: #111722;
  border-radius: 20px;
  padding: 1.8rem;
  transition: all 0.3s;
  border: 1px solid #1F2838;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(230, 90, 90, 0.05), transparent);
  transition: left 0.5s;
}

.service-card:hover::before {
  left: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: #2E8FD9;
  box-shadow: 0 20px 30px -12px rgba(46, 143, 217, 0.15);
}

.service-card i {
  font-size: 2.2rem;
  color: #2E8FD9;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.service-card p {
  color: #94A3B8;
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.service-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
}

.service-benefits span {
  font-size: 0.7rem;
  color: #64748B;
  display: flex;
  align-items: center;
  gap: 4px;
}

.service-benefits span i {
  font-size: 0.7rem;
  margin: 0;
  color: #2E8FD9;
}

.service-btn {
  background: transparent;
  border: 1px solid #2E8FD9;
  color: #2E8FD9;
  padding: 0.5rem 1.2rem;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Inter', sans-serif;
}

.service-btn:hover {
  background: #2E8FD9;
  color: white;
}

/* Computing & Auxiliary Grids */
.computing-grid .service-card,
.auxiliary-grid .service-card {
  text-align: center;
}

/* Platforms Showcase */
.platforms-showcase {
  background: #0D121C;
  border-radius: 20px;
  padding: 1.5rem;
  margin-bottom: 2.5rem;
  border: 1px solid #1F2838;
}

.platforms-showcase h3 {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.platforms-showcase h3 i {
  color: #2E8FD9;
}

.platform-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
}

.platform-card {
  background: #111722;
  border-radius: 16px;
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid #2A3343;
  transition: all 0.3s;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.platform-card:hover {
  border-color: #2E8FD9;
  transform: translateX(5px);
}

.platform-card i:first-child {
  font-size: 1.8rem;
  color: #2E8FD9;
}

.platform-card h4 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.platform-card p {
  font-size: 0.7rem;
  color: #94A3B8;
}

.platform-card .fa-external-link-alt {
  margin-left: auto;
  font-size: 0.8rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.platform-card:hover .fa-external-link-alt {
  opacity: 1;
}

.klinikahub {
  background: linear-gradient(135deg, #1B2A4A, #0F172A);
  border-color: #2E8FD9;
}

/* ===== MODAL ===== */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(8px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: #111722;
  border-radius: 24px;
  border: 1px solid #2A3343;
  animation: modalFadeIn 0.3s;
  max-width: 90%;
  width: 550px;
}

@keyframes modalFadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.modal-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  border-bottom: 1px solid #1F2838;
}

.modal-header i {
  font-size: 2rem;
  color: #2E8FD9;
}

.modal-close {
  position: absolute;
  right: 1.5rem;
  top: 1rem;
  font-size: 1.8rem;
  cursor: pointer;
  color: #94A3B8;
  transition: color 0.2s;
}

.modal-close:hover {
  color: #2E8FD9;
}

.modal-body {
  padding: 1.5rem;
}

.modal-features {
  margin: 1rem 0;
  padding: 1rem;
  background: #0D121C;
  border-radius: 12px;
}

.modal-features h4 {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.modal-features ul {
  list-style: none;
  padding-left: 0;
}

.modal-features li {
  margin: 0.5rem 0;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.modal-features li i {
  color: #2E8FD9;
  font-size: 0.8rem;
}

.modal-tech-stack {
  margin: 1rem 0;
}

.modal-tech-stack h4 {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.tech-badge {
  display: inline-block;
  background: #1B2A4A;
  padding: 0.2rem 0.8rem;
  border-radius: 20px;
  font-size: 0.7rem;
  margin: 0.25rem;
}

.modal-cta {
  margin-top: 1.5rem;
  text-align: center;
}

.modal-cta .btn-primary {
  background: #2E8FD9;
  padding: 0.7rem 1.5rem;
  border-radius: 40px;
  color: white;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-block;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #0A0E17, #0D121C);
  border-top: 1px solid #1F2838;
}

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

.cta-container h3 {
  font-size: 2rem;
}

.cta-container p {
  margin: 1rem 0;
  color: #94A3B8;
}

.btn-primary {
  background: #2E8FD9;
  padding: 0.85rem 2rem;
  border-radius: 40px;
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-primary:hover {
  background: #1B5A99;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -5px rgba(46, 143, 217, 0.4);
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

/* ===== FOOTER ===== */
.footer {
  background: #05080F;
  position: relative;
  margin-top: 0;
}

.footer-wave {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.footer-wave svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
}

.footer-main {
  padding: 3rem 0 2rem;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2rem;
  padding: 0 32px;
}

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

.footer-logo-img {
  height: 42px;
  width: auto;
}

.footer-logo-text {
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
}

.footer-desc {
  color: #94A3B8;
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  max-width: 280px;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  width: 36px;
  height: 36px;
  background: #111722;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94A3B8;
  transition: all 0.3s;
  border: 1px solid #1F2838;
  text-decoration: none;
}

.social-icons a:hover {
  background: #2E8FD9;
  color: white;
  border-color: #2E8FD9;
  transform: translateY(-3px);
}

.footer-col h4 {
  color: white;
  font-size: 1rem;
  margin-bottom: 1.2rem;
  position: relative;
  display: inline-block;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 30px;
  height: 2px;
  background: #2E8FD9;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.75rem;
}

.footer-col ul li a {
  color: #94A3B8;
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.2s;
}

.footer-col ul li a:hover {
  color: #2E8FD9;
  padding-left: 5px;
}

.contact-info li {
  display: flex;
  gap: 12px;
  align-items: center;
  color: #94A3B8;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.contact-info li i {
  width: 20px;
  color: #2E8FD9;
}

.footer-bottom {
  border-top: 1px solid #1A202E;
  padding: 1.5rem 0;
}

.footer-bottom-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0 32px;
}

.footer-bottom p {
  color: #64748B;
  font-size: 0.75rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: #64748B;
  text-decoration: none;
  font-size: 0.75rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #2E8FD9;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-hero h1 {
    font-size: 2.8rem;
  }
  
  .overview-header h2 {
    font-size: 2rem;
  }
  
  .services-categories-overview {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .tabs-wrapper {
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding-bottom: 8px;
  }
  
  .tab-btn {
    white-space: nowrap;
  }
}

@media (max-width: 850px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: #0C111C;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    padding: 2rem;
    gap: 1.5rem;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-toggle {
    display: block;
  }
  
  .services-hero h1 {
    font-size: 2rem;
  }
  
  .overview-header h2 {
    font-size: 1.8rem;
  }
  
  .services-categories-overview {
    grid-template-columns: 1fr;
  }
  
  .hero-quick-info {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .category-header {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-logo-wrapper {
    justify-content: center;
  }
  
  .footer-desc {
    margin-left: auto;
    margin-right: auto;
  }
  
  .social-icons {
    justify-content: center;
  }
  
  .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .contact-info li {
    justify-content: center;
  }
  
  .footer-bottom-container {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 20px;
  }
  
  .services-hero h1 {
    font-size: 1.5rem;
  }
  
  .overview-header h2 {
    font-size: 1.5rem;
  }
  
  .overview-header p {
    font-size: 0.9rem;
  }
  
  .services-keywords p {
    font-size: 0.85rem;
    line-height: 1.6;
  }
  
  .hero-quick-info {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .info-item {
    font-size: 0.85rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .platform-cards {
    grid-template-columns: 1fr;
  }
  
  .service-card {
    padding: 1.2rem;
  }
}