: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, BlinkMacMacSystemFont, "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);
}

/* Hexagons Background */
.hexagons-background {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hexagons-background svg {
  position: absolute;
  right: -210px;
  top: 24.5%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  color: var(--customer-accent);
}

.hexagons-background polygon {
  stroke: currentColor;
  fill: none;
}

.hexagon-1 {
  opacity: 0.3;
}

.hexagon-2 {
  opacity: 0.4;
}

.hexagon-3 {
  opacity: 0.5;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent;
  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: #ffffff;
}

.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;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--customer-medium);
  cursor: pointer;
  margin-left: auto;
  padding-right: 20px;
}

.header.scrolled .mobile-menu-btn {
  color: #ffffff;
}

/* Navigation menu */
.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;
  text-align: center;
}

.nav.active {
  transform: translateY(0);
  display: flex;
}

.nav a {
  color: var(--customer-medium);
  text-decoration: none;
  font-size: 2rem;
  font-weight: 400;
  transition: color 0.2s ease-in-out;
  padding: 0.5rem 0;
}

.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;
  color: var(--customer-medium);
  cursor: pointer;
  z-index: 1002;
}

.close-btn:hover {
  color: var(--customer-light);
}

@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: translateX(0);
    z-index: auto;
    padding-left: 70px;
  }

  .nav a {
    font-size: 1rem;
  }

  .close-btn {
    display: none;
  }

  .header-left {
    padding-left: 100px;
  }
}

/* Hero Section */
.hero {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
  min-height: 100vh;
  text-align: center;
  margin-top: -80px;
  padding-top: 250px;
}

.hero-content {
  max-width: 40rem;
  width: 100%;
  padding-top: 0;
  margin-top: 15rem;
}

.hero h1 {
  font-size: 2.5rem;
  /* Adjusted for coordination */
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 1rem;
  /* Adjusted for coordination */
  color: white;
}

.hero p {
  font-size: 1rem;
  /* Adjusted for coordination */
  margin-bottom: 1.5rem;
  /* Adjusted for coordination */
  color: var(--customer-medium);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
  /* Adjusted for coordination */
}

.hero-actions .btn {
  padding: 0.75rem 2rem;
  font-size: 1rem;
  /* Adjusted for coordination */
  background-color: #f67d84;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: background-color 0.2s ease-in-out;
}

.hero-actions .btn:hover {
  background-color: #0029d2;
  color: #fff;
}

/* New class for the background gradient effect */
.highlight-text-background {
  background: linear-gradient(to bottom, transparent 50%, var(--customer-accent) 50%);
  display: inline-block;
  padding: 0 0.2em;
  line-height: 1;
  white-space: nowrap;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--customer-medium);
  font-size: 0.875rem;
}

.feature-item {
  display: flex;
  align-items: center;
}

.check-icon {
  width: 1rem;
  height: 1rem;
  margin-right: 0.5rem;
  color: var(--customer-accent);
}

/* What Drives Us Section */
.drives-us-section {
  position: relative;
  z-index: 5;
  padding: 8rem 1rem;
  background-color: var(--customer-dark);
}

.drives-us-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.drives-us-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05), 8px 8px 0px 0px #f67d84;
  margin-left: -8rem;
}

.drives-us-content {
  color: var(--customer-medium);
  margin-left: 5rem;
  margin-right: 0;
}

.drives-us-content h2 {
  font-size: 2rem;
  /* Adjusted for coordination */
  margin-bottom: 1rem;
  color: white;
}

.drives-us-content p {
  font-size: 1rem;
  /* Adjusted for coordination */
  margin-bottom: 1rem;
  line-height: 1.6;
}

.read-more-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--customer-accent);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.2s ease;
}

.read-more-link:hover {
  color: var(--customer-light);
}

/* Trusted By Section */
.logo-showcase-section {
  width: 100%;
  padding: 3rem 1rem;
  background-color: var(--customer-dark);
  color: var(--customer-light);
  text-align: center;
}

.logo-showcase-container {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
}

.tech-partner-text {
  position: relative;
  font-size: 1rem;
  /* Adjusted for coordination */
  max-width: 900px;
  margin: 0 auto 2rem;
  text-align: center;
  color: var(--customer-medium);
  padding-top: 1rem;
}

.tech-partner-text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 1px;
  background-color: var(--customer-light);
  opacity: 0.2;
  transform: translateX(-50vw);
  pointer-events: none;
  z-index: 10;
}

.logo-showcase-heading {
  font-size: 1.125rem;
  /* Adjusted for coordination */
  font-weight: 600;
  margin-bottom: 2rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  border-top: 1px solid rgba(var(--customer-light), 0.2);
  padding-top: 1rem;
  margin-top: 0;
}

.logo-carousel-wrapper {
  position: relative;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  padding: 1rem 0;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.logo-carousel-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  animation: infinite-scroll 25s linear infinite;
}

.logo-image {
  height: 2.5rem;
  max-width: 120px;
  margin: 0 1.5rem;
  object-fit: contain;
}

@keyframes infinite-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Unified Platform Section with Wave Animation */
.unified-platform-section {
  background-color: #fff;
  color: #1a202c;
  position: relative;
  z-index: 0;
  overflow: hidden;
  padding-top: 0;
  margin-top: 0;
}

/* Hero Section */
.hero-section {
  max-width: 960px;
  margin-left: 5rem;
  margin-right: auto;
  padding: 0rem 0rem;
}

@media (max-width: 767px) {
  .hero-section {
    padding: 2rem 1rem;
    margin-left: auto;
    text-align: center;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle,
  .hero-description,
  .hero-button {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 768px) {
  .hero-section {
    padding-top: 1rem;
    padding-bottom: 2rem;
  }

  .hidden-md-block {
    display: block;
  }
}

@media (min-width: 1024px) {
  .hero-section {
    padding-top: 2rem;
    padding-bottom: 5rem;
  }
}

.hero-subtitle {
  color: #f67d84;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 2.5rem;
  /* Adjusted for coordination */
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1.5rem;
  color: #1a202c;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }
}

.hero-description {
  font-size: 1rem;
  /* Adjusted for coordination */
  color: #4a5568;
  max-width: 42rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 1.125rem;
  }
}

.hero-button {
  background-color: #f67d84;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: background-color 0.2s ease-in-out;
}

.hero-button:hover {
  background-color: #0029d2;
  color: #fff;
}

.arrow-icon {
  font-size: 1.25rem;
  line-height: 1;
}

/* Feature Cards Section */
.feature-cards-section {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding: 0rem 1rem;
  background-color: #fff;
}

@media (max-width: 767px) {
  .feature-cards-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
    margin: 0;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (min-width: 768px) {
  .feature-cards-section {
    padding-top: 2rem;
    padding-bottom: 5rem;
    margin-left: 4rem;
  }
}

@media (min-width: 1024px) {
  .feature-cards-section {
    padding-top: 3rem;
    padding-bottom: 6rem;
  }
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .feature-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
}

.feature-content {
  position: relative;
  padding-left: 1rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.feature-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, #f67d84, #f67d84, #f67d84);
}

.feature-title {
  font-size: 1.25rem;
  /* Adjusted for coordination */
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #1a202c;
  min-height: 3.75rem;
}

.feature-description {
  font-size: 0.9rem;
  /* Adjusted for coordination */
  color: #4a5568;
  flex-grow: 1;
}

.learn-more-link {
  font-size: 0.9rem;
  /* Adjusted for coordination */
  color: #f67d84;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  text-decoration: none;
  margin-top: auto;
}

.learn-more-link .arrow-icon {
  font-size: 1rem;
}

/* Contact Us Section - Full Width */
.contact-us-section {
  position: relative;
  z-index: 1;
  background-color: var(--customer-dark);
  margin-top: -1px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-right: 1rem;
}

.contact-container {
  max-width: 1200px;
  margin-left: 1rem;
  margin-right: auto;
  padding: 0;
}

/* Adjust for smaller screens to match hero-section's responsiveness */
@media (max-width: 767px) {
  .contact-us-section {
    padding-right: 1rem;
    height: auto;
    flex-direction: column;
    align-items: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .contact-button-container {
    margin-right: 1rem;
    margin-left: auto;
  }

  .text-group {
    margin-right: 1rem;
  }
}

@media (min-width: 768px) {
  .contact-container {
    margin-left: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .contact-container {
    margin-left: 5rem;
  }
}

.banner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  border-radius: 12px;
  width: 100%;
  height: 100%;
  max-width: 1200px;
  padding: 5rem 1rem;
  padding-left: 0;
  margin-left: 0;
}

@media (max-width: 767px) {
  .banner {
    padding: 0;
    margin: 0;
    justify-content: center;
    align-items: center;
  }

  .contact-button-container {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 768px) {
  .banner {
    flex-direction: row;
    justify-content: space-between;
    padding: 3rem 2rem;
    padding-left: 0;
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .banner {
    padding: 3rem 4rem;
    padding-left: 0;
  }
}

/* Update the text-group alignment */
.text-group {
  position: relative;
  z-index: 10;
  text-align: left;
  color: white;
  margin-left: 0;
  padding-left: 0rem;
  margin-right: 17rem;
}

/* For mobile, ensure text stays left-aligned */
@media (min-width: 768px) {
  .text-group {
    text-align: left;
    margin-left: 0;
    padding-left: 0;
  }
}

.subtitle {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  color: white;
  opacity: 0.8;
  margin-left: 0;
  padding-left: 0;
}

@media (max-width: 767px) {
  .text-group {
    margin: 0;
    text-align: center;
    padding: 1rem;
  }

  .subtitle,
  .title {
    text-align: center;
    margin-left: 0;
  }
}

.title {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
  margin: 0.5rem 0;
  margin-left: 0;
  padding-left: 0;
}

@media (min-width: 768px) {
  .title {
    font-size: 1.875rem;
  }
}

@media (min-width: 1024px) {
  .title {
    font-size: 2.25rem;
  }
}

.sparkle-container {
  position: relative;
  width: 9rem;
  height: 9rem;
  flex-shrink: 0;
  margin-right: 2rem;
  display: none;
}

@media (min-width: 768px) {
  .sparkle-container {
    display: block;
  }
}

.twinkle {
  position: absolute;
  animation: twinkle 1.5s ease-in-out infinite;
}

.twinkle:nth-child(1) {
  top: 10%;
  left: 20%;
  animation-delay: 0s;
  width: 40px;
  height: 40px;
}

.twinkle:nth-child(2) {
  top: 50%;
  left: 10%;
  animation-delay: 0.5s;
  width: 36px;
  height: 36px;
}

.twinkle:nth-child(3) {
  bottom: 15%;
  right: 20%;
  animation-delay: 1s;
  width: 32px;
  height: 32px;
}

@keyframes twinkle {

  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

.contact-button-container {
  margin-left: auto;
  margin-right: 10rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 767px) {
  .contact-button-container {
    margin-left: auto;
    margin-right: auto;
    margin-top: 0.5rem;
    margin-bottom: 0;
  }
}

/* Added styles for .contact-button */
.contact-button {
  padding: 0.75rem 1.5rem;
  margin-top: 2.5em;
  border-radius: 9999px;
  background-color: white;
  color: var(--customer-dark);
  border: 1px solid white;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  /* Adjusted for coordination */
}

.contact-button:hover {
  background-color: #0029d2;
  color: white;
  border-color: var(--customer-dark);
}

/* Blog Section Styles */
.blog-section {
  font-family: -apple-system, BlinkMacMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  margin: 0;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 150px;
  padding-right: 30px;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  min-height: 90vh;
  box-sizing: border-box;
  color: #333;
}

@media (max-width: 767px) {
  .blog-section {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .blog-section h2 {
    margin-left: 0;
    text-align: center;
    width: 100%;
  }

  .blog-link-container {
    text-align: center;
  }
}

.blog-container {
  max-width: 1200px;
  width: 100%;
  padding: 0;
  margin: 0;
}

.blog-section h2 {
  font-size: 2rem;
  /* Adjusted for coordination */
  font-weight: 600;
  color: #333;
  margin-bottom: 40px;
  text-align: left;
  margin-left: -78px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
  padding-left: 0;
  padding-right: 0;
  margin-right: 0;
}

.article-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05), 4px 4px 0px 0px #f67d84;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease-in-out;
}

.article-card:hover {
  transform: translateY(-5px);
}

.card-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-content h3 {
  font-size: 1.125rem;
  /* Adjusted for coordination */
  font-weight: 600;
  color: #333;
  margin-top: 0;
  margin-bottom: 15px;
  line-height: 1.4;
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05), 4px 4px 0px 0px var(--customer-accent);
}

.article-card:not(:first-child):hover,
.article-card:first-child:hover {
  background-color: var(--customer-dark);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05), 4px 4px 0px 0px var(--customer-accent);
}

.article-card:hover .card-content h3,
.article-card:hover .author-names,
.article-card:hover .date {
  color: white;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.tag {
  background-color: #e0e7ff;
  color: #4f46e5;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.author-info {
  display: flex;
  align-items: center;
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid #eee;
}

.avatars {
  display: flex;
  margin-right: 10px;
}

.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #e0e7ff;
  color: #4f46e5;
  font-size: 0.7rem;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  text-transform: uppercase;
  text-align: center;
  line-height: 1;
  padding: 2px;
  box-sizing: border-box;
}

.author-details {
  display: flex;
  flex-direction: column;
}

.author-names {
  font-size: 0.9rem;
  /* Adjusted for coordination */
  font-weight: 500;
  color: #555;
  margin: 0;
}

.date {
  font-size: 0.8rem;
  color: #777;
  margin: 0;
}

.blog-link-container {
  text-align: right;
  margin-top: 20px;
  width: 100%;
}

.blog-link {
  font-size: 0.9rem;
  /* Adjusted for coordination */
  color: #4f46e5;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease-in-out;
}

.blog-link:hover {
  color: #3730a3;
  text-decoration: underline;
}

/* Responsive adjustments for blog section */
@media (max-width: 768px) {
  .blog-section h2 {
    margin-left: 0;
    text-align: center;
    width: 100%;
    padding-right: 2rem;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }
}

/* Footer section - Updated mobile 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;
  
}

.footer-column img {
  width: 1250px;
  height: auto;
  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;
  /* Updated from 0.9rem for mobile consistency */
  line-height: 1.8;
  margin-bottom: 1rem;
}

.column-heading {
  font-weight: 600;
  font-size: 1.25rem;
  /* Updated from 1.125rem for mobile consistency */
  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;
  /* Updated from 0.9rem for mobile consistency */
}

.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;
  /* Updated from 0.9rem for mobile consistency */
}

/* New styles for footer bottom row */
.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;
  }

  .hero-actions {
    flex-direction: row;
    justify-content: center;
  }

  .hero-features {
    flex-direction: row;
    justify-content: center;
    gap: 1.5rem;
  }
}

@media (min-width: 768px) {
  .header {
    padding: 1.5rem 2.5rem;
  }

  .hexagons-background svg {
    width: 800px;
    height: 800px;
  }

  .hero {
    text-align: left;
    padding: 2rem 2.5rem;
    align-items: flex-start;
  }

  .hero-content {
    max-width: 48rem;
  }

  .hero h1 {
    font-size: 3.5rem;
    /* Adjusted for coordination */
  }

  .hero p {
    font-size: 1.125rem;
    /* Adjusted for coordination */
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .hero-features {
    justify-content: flex-start;
  }

  .logo-image {
    height: 3.5rem;
    max-width: 150px;
  }

  .drives-us-container {
    flex-direction: row;
    align-items: center;
    gap: 4rem;
  }

  .drives-us-image {
    flex: 1;
  }

  .drives-us-content {
    flex: 1;
  }

  .drives-us-content h2 {
    font-size: 2.25rem;
    /* Adjusted for coordination */
  }
}

@media (min-width: 1024px) {
  .header {
    padding: 1.5rem 5rem;
  }

  .hexagons-background svg {
    width: 1000px;
    height: 1000px;
  }

  .hero {
    flex-direction: row;
    justify-content: space-between;
    padding: 3rem 5rem;
  }

  .hero-content {
    max-width: 36rem;
    margin-right: 3rem;
  }

  .hero h1 {
    font-size: 4rem;
    /* Adjusted for coordination */
  }

  .hero p {
    font-size: 1.25rem;
    /* Adjusted for coordination */
  }
}

@media (min-width: 1280px) {
  .hexagons-background svg {
    width: 1200px;
    height: 1200px;
  }
}

@media (max-width: 767px) {
  .drives-us-image img {
    margin-left: 0;
  }

  .drives-us-content {
    margin-left: 0;
    padding-left: 1rem;
    padding-right: 1rem;
    text-align: center;
  }

  .drives-us-content h2 {
    font-size: 1.75rem;
  }

  .read-more-link {
    text-align: center;
    width: 100%;
  }

  .text-group {
    margin-right: 1rem;
    padding-left: 1rem;
  }
}

html {
  overflow-x: hidden;
}

/* Typewriter Effect */
#typewriter-paragraph::after {
  content: "|";
  animation: blink 1s infinite;
  color: var(--customer-light);
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

@media (max-width: 767px) {
  .hexagons-background svg {
    width: 400px;
    height: 400px;
    right: -100px;
    top: 20%;
  }

  .hexagon-1 {
    transform: translate(50, 0) scale(2) rotate(15);
  }

  .hexagon-2 {
    transform: translate(-100, 25) scale(1.5) rotate(-5);
  }

  .hexagon-3 {
    transform: translate(150, -50) scale(1) rotate(30);
  }
}