:root {
  --customer-dark: #030045;
  --customer-light: #aea2ff;
  --customer-medium: rgb(255, 255, 255);
  --customer-accent: #f67d84;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #00008b;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  background-color: #ffffff;
}

.container {
  position: relative;
  z-index: 3;
  background-color: var(--customer-dark);
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #030045;
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
  z-index: 9999;
  padding: 1rem 0;
}

.header.scrolled {
  background-color: #030045;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header.scrolled .nav a {
  color: white;
}

.header.scrolled .logo {
  color: #ffffff;
}

.header.scrolled .mobile-menu-btn {
  color: #ffffff;
}

.header-left {
  display: flex;
  align-items: center;
  padding-left: 100px;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: bold;
}

.logo img {
  width: 24px;
  height: 24px;
}

/* Mobile menu button */
.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--customer-medium);
  cursor: pointer;
  margin-left: auto;
  padding-right: 20px;
  z-index: 1000;
  position: relative;
}



/* Navigation menu - Full screen mobile navigation */
.nav {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--customer-dark);
  padding: 2rem;
  gap: 2rem;
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
  z-index: 1001;
  justify-content: center;
  align-items: center;
}

.nav.active {
  transform: translateY(0);
  display: flex;
}

.nav a {
  color: var(--customer-medium);
  text-decoration: none;
  font-size: 2rem;
  transition: color 0.2s ease-in-out;
}

.nav a:hover {
  color: #f67d84;
}

.header.scrolled .nav a:hover {
  color: #f67d84;
}

/* Close button for mobile menu */
.close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 2.5rem;
  color: var(--customer-medium);
  cursor: pointer;
}

/* Keep desktop styles */
@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }

  .nav {
    display: flex;
    position: static;
    flex-direction: row;
    width: auto;
    height: auto;
    background-color: transparent;
    padding: 0;
    gap: 1.8rem;
    transform: translateY(0);
    z-index: auto;
    padding-left: 70px;
  }

  .nav a {
    font-size: 1rem;
  }

  .close-btn {
    display: none;
  }

  .header-left {
    padding-left: 100px;
  }
}

/* Services Section Styles */
.services-section {
  background-color: #f8fafc;
  padding: 120px 0 80px 0;
  margin-top: 0;
  position: relative;
}

.services-content {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}

.services-header {
  text-align: left;
  margin-bottom: 4rem;
  max-width: 900px;
}

.services-title {
  font-size: 1rem;
  font-weight: 300;
  color: #000000;
  margin-bottom: 1rem;
  line-height: 1.1;
  background: linear-gradient(to bottom, transparent 50%, #f67d84 50%);
  display: inline-block;
}

.services-title2 {
  font-size: 1rem;
  font-weight: 300;
  color: #000000;
  margin-bottom: 1rem;
  line-height: 1.1;
  background: linear-gradient(to bottom, transparent 50%, #f67d84 50%);
  display: inline-block;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.service-card {
  background: white;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.service-card.new::before {
  content: "NEW";
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #4c1d95;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
}

.service-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1.5rem;
  color: #3b82f6;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.service-title .highlight {
  color: #e91e63;
}

.service-description {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

/* Logo Showcase Section Styles */
.logo-showcase-section {
  background-color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.logo-showcase-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.tech-partner-text {
  font-size: 2rem;
  font-weight: 700;
  color: var(--customer-dark);
  margin-bottom: 3rem;
  text-align: center;
}

.logo-carousel-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 20px 0;
}

.logo-carousel-inner {
  display: flex;
  animation: scroll-logos 30s linear infinite;
  white-space: nowrap;
  will-change: transform;
}

.logo-carousel-wrapper:hover .logo-carousel-inner {
  animation-play-state: paused;
}

.logo-image {
  height: 70px;
  margin: 0 40px;
  flex-shrink: 0;
  transition: filter 0.3s ease;
  opacity: 0.8;
}

.logo-image:hover {
  filter: grayscale(0%);
  opacity: 1;
}

@keyframes scroll-logos {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Footer Styles */
.footer *,
.footer *::before,
.footer *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.footer {
  width: 100%;
  background-color: #030045;
  color: #ffffff;
  padding-top: 4rem;
  padding-bottom: 6rem;
  position: relative;
  overflow: hidden;
  min-height: 500px;
}

.footer-column img {
  width: 1250px;
  height: auto;
  /* This maintains the aspect ratio */
  max-width: 100%;
}

.footer-content-container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-top: 3rem;
  padding-bottom: 5rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .footer-content-container {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer .logo {
  margin-bottom: 1.5rem;
}

.description-text {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.column-heading {
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.heading-underline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 3rem;
  height: 0.1875rem;
  background-color: #2563eb;
}

.link-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 1rem;
}

.link-item {
  color: inherit;
  text-decoration: none;
}

.link-item:hover {
  text-decoration: underline;
}

.contact-info {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 1rem;
}

/* Footer bottom row with LinkedIn icon */
.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 1rem;
}

.social-icon-link {
  color: white;
  font-size: 1.5rem;
  transition: color 0.2s ease-in-out;
}

.social-icon-link:hover {
  color: var(--customer-light);
}

/* Responsive Styles */
@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }

  .nav {
    display: flex;
    position: static;
    flex-direction: row;
    width: auto;
    height: auto;
    background-color: transparent;
    padding: 0;
    gap: 1.8rem;
    transform: translateY(0);
    z-index: auto;
    padding-left: 70px;
  }

  .nav a {
    font-size: 1rem;
  }

  .close-btn {
    display: none;
  }

  .header-left {
    padding-left: 100px;
  }

  .header {
    padding: 1.5rem 2.5rem;
  }

  .services-title {
    font-size: 2.5rem;
  }

  .services-title2 {
    font-size: 2.5rem;
  }

  .services-section {
    padding: 140px 0 100px 0;
  }
}

@media (min-width: 1024px) {
  .header {
    padding: 1.5rem 5rem;
  }

  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .services-section {
    padding: 160px 0 120px 0;
  }
}