: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: 2;
  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: 1000;
  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-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;
  /* Show by default on mobile */
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--customer-medium);
  cursor: pointer;
  margin-left: auto;
  /* Pushes the button to the right */
  padding-right: 20px;
}

/* Navigation menu */
.nav {
  display: none;
  /* Hidden by default for mobile */
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  /* Full viewport width */
  height: 100vh;
  /* Full viewport height */
  background-color: var(--customer-dark);
  padding: 2rem;
  gap: 2rem;
  /* Increased gap for better spacing */
  transform: translateY(-100%);
  /* Start off-screen from the top */
  transition: transform 0.3s ease-in-out;
  z-index: 1001;
  /* Above header */
  justify-content: center;
  align-items: center;
  text-align: center;
}

.nav.active {
  transform: translateY(0);
  /* Slide down to cover full screen */
  display: flex;
  /* Show when active */
}

.nav a {
  color: var(--customer-medium);
  text-decoration: none;
  font-size: 2rem;
  /* Larger font size for full-screen menu */
  font-weight: 400;
  transition: color 0.2s ease-in-out;
  padding: 0.5rem 0;
  /* Add vertical padding for better touch targets */
}

.nav a:hover {
  color: #f67d84;
}

.header.scrolled .nav a:hover {
  color: #f67d84;
}

/* Close button for mobile menu */
.close-btn {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  font-size: 2.5rem;
  /* Larger close button */
  color: var(--customer-medium);
  cursor: pointer;
  z-index: 1002;
  /* Above the nav overlay */
}

.close-btn:hover {
  color: var(--customer-light);
}

/* New About Section Styles */
.section-about-1 {
  background-color: #ffffff;
  padding: 120px 0 80px 0;
  margin-top: 0;
  position: relative;
}

.about-content {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}

.about-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #2563eb;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.about-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 2rem;
  line-height: 1.1;
  max-width: 800px;
}

.about-subtitle {
  font-size: 1.25rem;
  color: #4f46e5;
  font-weight: 500;
  margin-bottom: 2.5rem;
  font-style: italic;
}

.about-description {
  font-size: 1.125rem;
  color: #6b7280;
  line-height: 1.7;
  max-width: 900px;
  margin-bottom: 0;
}

.about-description p {
  margin-bottom: 1.5rem;
}

.about-description p:last-child {
  margin-bottom: 0;
  font-weight: 600;
  color: #4f46e5;
}

/* Quote Section Styles */
.quote-section {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 50%, #1e40af 100%);
  padding: 50px 0;
  position: relative;
  color: white;
  max-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote-content {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.quote-text {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 1.5rem;
  font-style: italic;
  position: relative;
}

.quote-author {
  text-align: center;
  position: relative;
  display: block;
}

.author-name-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.author-name,
.author-role {
  display: block;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.author-name {
  font-size: 1.1rem;
  font-weight: 600;
  opacity: 0.9;
}

.author-role {
  font-size: 0.95rem;
  opacity: 0.8;
  margin-right: 2rem;
}

.linkedin-icon {
  margin-left: 10px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  color: white;
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 6px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.linkedin-icon:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.author-name:hover+.linkedin-icon,
.author-role:hover~.author-name-container .linkedin-icon,
.quote-author:hover .linkedin-icon {
  opacity: 1;
  visibility: visible;
}

/* Trusted Partner Section Styles */
.trusted-partner-section {
  background-image: url("/images/pexels-ann-h-45017-6589270.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  padding: 100px 0;
  position: relative;
  color: white;
}

.trusted-partner-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.trusted-partner-content {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.partner-title {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(to bottom, transparent 75%, #f67d84 50%);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-align: left;
}

.partner-subtitle {
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 3rem;
  line-height: 1.6;
  max-width: 800px;
  text-align: left;
  /* Removed white-space: nowrap; to allow text to wrap on mobile */
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-top: 3rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 1rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.feature-content {
  flex: 1;
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.feature-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin: 0;
}

/* 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) {
  .mobile-menu-btn {
    display: none;
    /* Hide on larger screens */
  }

  .nav {
    display: flex;
    /* Always show on larger screens */
    position: static;
    flex-direction: row;
    width: auto;
    height: auto;
    background-color: transparent;
    padding: 0;
    gap: 1.8rem;
    transform: translateX(0);
    z-index: auto;
    padding-left: 70px;
    /* Keep original padding */
  }

  .nav a {
    font-size: 1rem;
    /* Adjust font size for desktop */
  }

  .close-btn {
    display: none;
    /* Hide on larger screens */
  }

  .header-left {
    padding-left: 100px;
    /* Keep original padding */
  }

  .header {
    padding: 1.5rem 2.5rem;
  }

  .about-title {
    font-size: 3rem;
  }

  .section-about-1 {
    padding: 140px 0 100px 0;
  }

  .about-content {
    max-width: 1100px;
  }

  .quote-text {
    font-size: 1.4rem;
  }

  .quote-section {
    padding: 60px 0;
  }

  .partner-title {
    font-size: 3rem;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .header {
    padding: 1.5rem 5rem;
  }

  .about-title {
    font-size: 3.5rem;
  }

  .section-about-1 {
    padding: 160px 0 120px 0;
  }

  .about-content {
    max-width: 1200px;
  }

  .quote-text {
    font-size: 1.5rem;
  }

  .quote-section {
    padding: 70px 0;
  }

  .partner-title {
    font-size: 3.5rem;
  }

  .trusted-partner-section {
    padding: 120px 0;
  }
}