/* CSS Variables for theming */
:root {
  --background: #000000;
  --foreground: #ffffff;
  --secondary: #404040;
  --primary: #D52B1E;
  --text-muted: #a3a3a3;
  --border: #333333;
  --footer-bg: #000000;
  --footer-border: #333333;
  --primary-hover: #b91c1c;
  --card-bg: #404040;
  --card-hover: #4a4a4a;
  --container-bg: #2a2a2a;
}

[data-theme="light"] {
  --background: #ffffff;
  --foreground: #000000;
  --secondary: #f5f5f5;
  --primary: #D52B1E;
  --text-muted: #666666;
  --border: #e5e5e5;
  --footer-bg: #f5f5f5;
  --footer-border: #e5e5e5;
  --primary-hover: #b91c1c;
  --card-bg: #f0f0f0;
  --card-hover: #e8e8e8;
  --container-bg: #ebebeb;
}

/* Navbar Styles - Ensure fixed positioning */
.navbar {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  background: var(--background) !important;
  border-bottom: 1px solid var(--border) !important;
  z-index: 1000 !important;
  transition: background-color 0.3s ease !important;
}

.secondary-navbar {
  position: fixed !important;
  top: 80px !important;
  left: 0 !important;
  right: 0 !important;
  background: var(--secondary) !important;
  border-bottom: 1px solid var(--border) !important;
  z-index: 999 !important;
  transition: background-color 0.3s ease !important;
}

.container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--hero-bg);
  color: var(--foreground);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  padding-top: 10px;
  width: 100%;
}

.services-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 2rem;
  width: 100%;
  background: var(--hero-bg);
  padding: 4rem 2rem;
  padding-top: 0;
  margin-top: 0;
  padding-top: 4rem;
  transition: background-color 0.3s ease;
}

.services-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.services-icon {
  padding-top: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.services-icon img {
  filter: brightness(0) saturate(100%) invert(100%);
  transition: filter 0.3s ease;
}

[data-theme="light"] .services-icon img {
  filter: brightness(0) saturate(100%) invert(0%);
}

.services-title {
  font-size: 3.5rem;
  font-weight: 300;
  margin: 0 0 1.5rem 0;
  padding-top: 2rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--foreground);
  transition: color 0.3s ease;
}

.services-highlight {
  font-size: 3.6rem;
  color: var(--primary);
  font-weight: 600;
}

.services-description {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 0;
  font-weight: 300;
  transition: color 0.3s ease;
}

.content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
}

.services-features {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin: 3rem 0;
  flex-wrap: wrap;
  padding: 3rem;
  border-radius: 16px;

 

}

html[data-theme="light"] .services-features {
  background-color: #e0e0e0 !important;
}

.service-card {
  background-color: var(--hero-bg);
  border-radius: 16px;
  box-shadow: 0 2px 16px 0 rgba(0,0,0,0.12);
  padding: 2.5rem 2rem 2rem 2rem;
  width: 370px;
  max-width: 95vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-color: var(--primary);
  background-color: var(--card-hover);
}

/* Dark mode specific styles */
/* [data-theme="dark"] .services-features .service-card {
  background-color: #404040;
} */

/* Light mode specific styles */
[data-theme="light"] .services-features .service-card {
  background-color: #f5f5f5;
}

[data-theme="light"] .services-features .service-card:hover {
  background-color: #ebebeb;
}

.service-icon {
  background: #181818;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

[data-theme="light"] .service-icon {
  background: #e5e5e5;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-icon img,
.service-icon svg {
  width: 48px;
  height: 48px;
  filter: brightness(0) saturate(100%) invert(100%);
  transition: filter 0.3s ease;
}

[data-theme="light"] .service-icon img,
[data-theme="light"] .service-icon svg {
  filter: brightness(0) saturate(100%) invert(0%);
}

.service-card h3 {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

[data-theme="light"] .service-card h3 {
  color: var(--foreground);
}

.service-desc {
  color: #bdbdbd;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

[data-theme="light"] .service-desc {
  color: var(--text-muted);
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  width: 100%;
}

.service-card ul li {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

[data-theme="light"] .service-card ul li {
  color: var(--foreground);
}

.service-card ul li .check {
  color: var(--primary);
  margin-right: 0.7em;
  font-size: 1.1em;
}

.service-card .primary-button {
  width: 100%;
  margin-bottom: 1rem;
  background: var(--foreground);
  color: var(--background);
  font-weight: 700;
  border: none;
  border-radius: 8px;
  padding: 0.9rem 0;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-card .primary-button:hover {
  background: #b91c1c;
}

.service-card .secondary-button {
  width: 100%;
  background: #181818;
  color: #fff;
  font-weight: 600;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 0.9rem 0;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s;
}

[data-theme="light"] .service-card .secondary-button {
  background: #f5f5f5;
  color: var(--foreground);
  border: 1px solid var(--border);
}

.service-card .secondary-button:hover {
  background: #232323;
}

[data-theme="light"] .service-card .secondary-button:hover {
  background: #e5e5e5;
}

.add-for-only {
  font-size: 2rem;
}

.ctaSection {
  text-align: center;
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 3rem 2rem;
  margin-top: 2rem;
}

.ctaSection h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--foreground);
  transition: color 0.3s ease;
}

.ctaSection p {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 2rem;
  font-size: 1.125rem;
  transition: color 0.3s ease;
}

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

.ctaPrimaryButton {
  background: var(--primary);
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 4px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.ctaPrimaryButton:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
}

.ctaSecondaryButton {
  background: transparent;
  color: var(--foreground);
  padding: 1rem 2rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.ctaSecondaryButton:hover {
  background: var(--foreground);
  color: var(--background);
  border-color: var(--foreground);
}

.footer {
  padding: 2rem;
  text-align: center;
  background: var(--footer-bg);
  border-top: 1px solid var(--footer-border);
  margin-top: auto;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.footer p {
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 300;
  transition: color 0.3s ease;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .services-hero {
    padding: 3rem 2rem;
    padding-top: 5rem;
    margin-top: 105px;
  }

  .services-title {
    font-size: 3rem;
  }

  .services-highlight {
    font-size: 3.1rem;
  }

  .services-features {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .services-hero {
    padding: 2rem 1rem;
    padding-top: 4.5rem;
    margin-bottom: 3rem;
    margin-top: 100px;
  }

  .services-title {
    font-size: 2.5rem;
  }

  .services-highlight {
    font-size: 2.6rem;
  }

  .services-description {
    font-size: 1.1rem;
  }

  .services-features {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  /* .service-card {
    padding: 1.5rem;
  } */
}

@media (max-width: 480px) {
  .services-hero {
    padding: 1.5rem 1rem;
    padding-top: 4rem;
    margin-top: 100px;
  }

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

  .services-highlight {
    font-size: 2.1rem;
  }

  /* .service-card {
    padding: 1.5rem;
  } */
} 

:root .communicationsIcon {
  filter: invert(0) brightness(0) saturate(1);
}
[data-theme="dark"] .communicationsIcon {
  filter: invert(1) brightness(2);
} 