: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: var(--customer-light);
  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: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header.scrolled .nav a,
.header.scrolled .logo {
  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;
}

.nav {
  display: none;
  padding-left: 70px;
  gap: 1.8rem;
}

.nav a {
  color: var(--customer-medium);
  text-decoration: none;
  transition: color 0.2s ease-in-out;
  display: flex;
  align-items: center;
}

.nav a:hover {
  color: #f67d84;
}

/* 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;
}

/* Hide mobile menu button when nav is active - using body class */
body.nav-active .mobile-menu-btn {
  display: none;
}

/* 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;
}

.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;
  }
}

/* Let's Collaborate Section */
.collaborate-section {
  background: linear-gradient(135deg, #030045 0%, #020929 50%, #000e1f 100%);
  min-height: 150px;
  max-height: 400px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 100px 0 40px 0;
  margin-top: 0;
  position: relative;
}

.collaborate-content {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}

.collaborate-title {
  font-size: 1.5rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.collaborate-underline {
  width: 305px;
  height: 6px;
  background-color: #f67d84;
  margin-bottom: 2rem;
}

/* How can we help you Section */
.help-section {
  background-color: white;
  padding: 100px 0;
  position: relative;
}

.help-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.help-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.help-subtitle {
  font-size: 1.2rem;
  color: #666666;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 4rem;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.contact-item {
  background-color: #d4cef7;
  padding: 2.5rem 2rem;
  border-radius: 1rem;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background-color: #333333;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.contact-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333333;
  margin-bottom: 1rem;
}

.contact-details {
  color: #666666;
  line-height: 1.6;
}

.phone-number {
  color: #4a90e2;
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.email-address {
  color: #4a90e2;
  font-weight: 500;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.address-line {
  color: #4a90e2;
  font-weight: 500;
  margin-bottom: 0.3rem;
  font-size: 1rem;
}

.contact-description {
  margin-top: 1rem;
  font-size: 0.95rem;
  line-height: 1.5;
  font-weight: bold;
}

/* 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) {
  .header-right .sign-in {
    display: block;
  }
}

@media (min-width: 768px) {
  .header {
    padding: 1.5rem 2.5rem;
  }

  .nav {
    display: flex;
  }

  .collaborate-title {
    font-size: 5rem;
  }

  .help-title {
    font-size: 4rem;
  }

  .collaborate-section {
    min-height: 280px;
    padding: 120px 0 50px 0;
  }
}

@media (min-width: 1024px) {
  .header {
    padding: 1.5rem 5rem;
  }

  .collaborate-title {
    font-size: 6rem;
  }

  .collaborate-section {
    min-height: 300px;
    padding: 130px 0 60px 0;
  }
}