/* Import Fonts */
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&family=Raleway:wght@400;600&display=swap");

/* CSS Variables */
:root {
  /* Color Palette */
  --color-primary: #1a237e;
  --color-primary-light: #03045e;
  --color-secondary: #fefae0;
  --color-tertiary: #e0f7fa;
  --color-hover: #0077b6;
  --color-accent: #a9d6e5;
  --color-accent-lighter: #e6f4fa;
  --color-text: #000;
  --color-text-2: #03045e;
  --color-background: #03045e;
  --color-white: #fff;
  --color-light-bg: #f4f4f4;

  /*Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;

  /* Layout Dimensions */
  --header-height: 4rem;
  --border-radius: 0.5rem;

  /* Typography */
  --font-primary: "Open Sans", sans-serif;
  --font-size-base: 0.938rem;
  --font-size-small: 0.813rem;

  /* Weights */
  --weight-regular: 400;
  --weight-semi-bold: 800;

  /* Z-Index Hierarchy */
  --z-tooltip: 10;
  --z-fixed: 100;
  --z-modal: 1000;

  /* Transitions */
  --transition-speed: 250ms;
}

/* Responsive Typography */
@media screen and (min-width: 1024px) {
  :root {
    --font-size-base: 1rem;
  }
}

/* Modern CSS Reset */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base Styles */
html {
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  background-color: var(--color-white);
  color: var(--color-text);
  line-height: 1.6;
  padding-top: var(--header-height);
}

/* Typography & Links */
ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-speed) ease;
}

img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* Layout Utility */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.service-hero {
  background: linear-gradient(165deg, #03045e 0%, #023e8a 55%, #0077b6 100%);
  padding: var(--spacing-xl) 0;
  min-height: 50vh;
  display: flex;
  align-items: center;
}

.service-hero__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  width: 100%;
}

.service-hero__content {
  max-width: 800px;
}

.service-hero__breadcrumb {
  margin-bottom: var(--spacing-md);
  color: var(--color-white);
  font-size: 0.875rem;
  opacity: 0.9;
}

.service-hero__breadcrumb a {
  color: var(--color-white);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.service-hero__breadcrumb a:hover {
  text-decoration: underline;
  opacity: 1;
}

.service-hero__breadcrumb span {
  opacity: 0.8;
}

.service-hero__heading {
  color: var(--color-white);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-sm);
  letter-spacing: -0.02em;
}

.service-hero__subheading {
  color: var(--color-white);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: var(--spacing-md);
  opacity: 0.9;
}

.service-hero__description {
  color: var(--color-white);
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: var(--spacing-md);
  opacity: 0.85;
  max-width: 720px;
}

/* Desktop (1200px and up) */
@media screen and (min-width: 75em) {
  .service-hero {
    padding: var(--spacing-lg) 0;
  }

  .service-hero__heading {
    font-size: 3.5rem;
    width: 1200px;
  }
}

/* Tablet (768px to 1199px) */
@media screen and (max-width: 74.9375em) {
  .service-hero {
    padding: var(--spacing-lg) 0;
  }

  .service-hero__heading {
    font-size: 2.75rem;
  }

  .service-hero__subheading {
    font-size: 1.25rem;
  }

  .service-hero__description {
    font-size: 1rem;
  }
}

/* Mobile (767px and below) */
@media screen and (max-width: 47.9375em) {
  .service-hero {
    padding: var(--spacing-md) 1rem;
    min-height: auto;
  }

  .service-hero__container {
    padding: 0 var(--spacing-sm);
  }

  .service-hero__breadcrumb {
    font-size: 0.75rem;
    margin-bottom: var(--spacing-sm);
  }

  .service-hero__heading {
    font-size: 2rem;
    letter-spacing: -0.01em;
  }

  .service-hero__subheading {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-sm);
  }

  .service-hero__description {
    font-size: 1rem;
    line-height: 1.5;
  }
}

/* Small Mobile (375px and below) */
@media screen and (max-width: 23.4375em) {
  .service-hero__heading {
    font-size: 1.75rem;
  }

  .service-hero__subheading {
    font-size: 1rem;
  }

  .service-hero__description {
    font-size: 0.875rem;
  }
}

.services-flow {
  padding: 3rem 3rem;
  background-color: var(--color-white);
  overflow-x: hidden;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.service-flow-wrapper {
  overflow-x: hidden;
  padding: 1rem 0;
  margin: 0 -1rem;
  -webkit-overflow-scrolling: touch;
}

.service-cards {
  display: flex;
  gap: 2rem;
  padding: 0.5rem 1rem;
  min-width: min-content;
}

.service-card {
  flex: 1;
  max-width: 250px;
  background: white;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid black;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 5px 5px 0px 0px #888888;
  border: 1px solid black;
}

.service-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary-light);
  opacity: 0.15;
  margin-bottom: 1.5rem;
}

.service-content h3 {
  color: var(--color-primary);
  font-size: 1.375rem;
  margin-bottom: 1rem;
}

.service-divider {
  width: 40px;
  height: 2px;
  background: var(--color-accent);
  margin-bottom: 1.5rem;
}

.service-description {
  color: var(--color-primary-light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-size: 1rem;
}

.service-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-benefits li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.75rem;
  color: var(--color-primary-light);
  font-size: 1rem;
}

.service-benefits li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--color-accent);
}

.service-arrow {
  position: absolute;
  right: -1.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-primary-light);
  opacity: 0.3;
  z-index: 1;
}

.service-card:last-child .service-arrow {
  display: none;
}

@media (max-width: 1280px) {
  .services-container {
    padding: 0 2rem;
  }
}

@media (max-width: 1024px) {
  .services-flow {
    padding: 3rem 1rem;
  }

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

  .service-flow-wrapper {
    margin: 0 -2rem;
    padding: 1rem 1rem;
    overflow: scroll;
  }
}

@media (max-width: 768px) {
  .services-flow {
    padding: 2rem 0rem;
  }

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

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

  .service-card {
    min-width: 260px;
    padding: 1.5rem;
  }

  .service-number {
    font-size: 2rem;
  }

  .service-content h3 {
    font-size: 1.25rem;
  }
}

.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 30px;
}

/* Process Section */
.process {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.process__step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
}

.process__step:nth-child(even) {
  grid-template-columns: 1fr auto;
}

.step__number {
  font-size: 80px;
  font-weight: 800;
  background: linear-gradient(135deg, #0077b6 0%, #03045e 100%);
  -webkit-background-clip: text;
  color: transparent;
  line-height: 1;
  padding: 20px;
}

.step__content {
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  border: 1px solid black;
}

.step__content:hover {
  transform: translateY(-5px);
  box-shadow: 5px 5px 0px 0px #888888;
}

.step__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  fill: #03045e;
}

.step__title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #1a2a38;
}

.step__description {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
}

/* Media Queries */
@media screen and (max-width: 768px) {
  .services-description {
    font-size: 0.9rem;
  }

  .process__step,
  .process__step:nth-child(even) {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .step__number {
    font-size: 80px;
  }

  .step__content::before {
    height: 4px;
    width: 100%;
    top: 0;
    left: 0;
  }
}

/*************************
 * Projects Section
 *************************/
/* Custom Properties */
:root {
  --color-operator: #f5e6d3;    /* Deep navy blue */
  --color-service: #03045e;     /* Warm cream */
  --color-duration: #d4a5a5;    /* Dusty rose */
  --color-text: #1f2937;
  --color-text-light: #4b5563;
  --color-border: #e5e7eb;
  --color-white: #ffffff;
  --container-max-width: 1200px;
  --card-border-radius: 25px;
  --transition-speed: 0.3s;
}
/* Root Variables */
:root {
  --color-white: #ffffff;
  --color-bg-light: #ffffff;
  --color-text: #1f2937;
  --color-text-light: #6b7280;
  --color-text-dark: #111827;
  --color-primary: #2563eb;
  --color-border: #e5e7eb;
  --color-operator: #f5e6d3;    /* Deep navy blue */
  --color-service: #03045e;     /* Warm cream */
  --color-duration: #d4a5a5;    /* Dusty rose */
  --transition-speed: 0.3s;
  --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --container-max-width: 1200px;
  --card-height: clamp(350px, 60vh, 400px);
}

/* Base Section Styles */
.projects-section {
  padding: 2rem 1rem;
  background-color: var(--color-accent-lighter);
  margin: 0 auto;
  width: 100%;
  overflow: hidden;
}

.project-container {
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  max-width: 1200px;
}

/* Header Styles */
.services-header {
  max-width: var(--container-max-width);
  margin: 0 auto 1.5rem auto;
}

.services-title {
  font-size: clamp(1.25rem, 5vw, 2rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-text);
}

.services-title span {
  font-size: clamp(1.75rem, 4vw, 2rem);
  font-weight: 800;
  background: linear-gradient(
    45deg,
    var(--color-primary) 0%,
    var(--color-hover) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
  text-align: left;
  line-height: 1.2;
}

.services-description {
  font-size: clamp(0.875rem, 3vw, 1.15rem);
  color: var(--color-text-light);
  max-width: 800px;
  line-height: 1.6;
}

/* Carousel Container */
.carousel-container {
  position: relative;
  overflow: hidden;
  margin: 0 -1rem;
  padding: 0 1rem;
}

/* Carousel Track */
.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  margin: 0 -0.5rem;
}

.carousel-slide {
  flex: 0 0 100%;
  padding: 0 0.5rem;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

.carousel-slide.active {
  opacity: 1;
}

.card {
  display: flex;
  flex-direction: column;
  background-color: var(--color-bg-light);
  border-radius: 0 25px 0px 0px;
  transition: transform var(--transition-speed) ease,
              box-shadow var(--transition-speed) ease;
  overflow: hidden;
  border: 1px solid black;
  height: 400px;
}

.card:hover {
  box-shadow: var(--card-shadow);
  transform: translate(-2px, -2px);
}

.card-image {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-speed) ease;
}

.card:hover .card-image img {
  transform: scale(1.1);
}

.card-content {
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  position: relative;
  z-index: 5;
  transition: opacity 0.3s ease-in-out 0.1s, /* Added delay for fade out */
              transform 0.3s ease-in-out 0.1s;
}

.card:hover .card-content {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.3s ease-in-out,
              transform 0.3s ease-in-out;
}

.card-hover-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(100%);
  transition: opacity 0s ease-in-out 0.1s, /* Added delay for fade in */
              visibility 0.3s ease-in-out 0.2s,
              transform 1s ease-in-out 0.2s;
  z-index: 10;
}

.card:hover .card-hover-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}


.card-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.card-description {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--color-text-light);
  margin-bottom: 0.5rem;
}

/* Card Tags */
.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.card-tag {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  border-radius: 10px;
  font-size: 0.75rem;
  font-weight: 500;
  transition: all var(--transition-speed) ease;
}

.card-tag.operator {
  background-color: var(--color-operator);
  color: var(--color-background);
}

.card-tag.service {
  background-color: var(--color-service);
  color: var(--color-white);
}

.card-tag.duration {
  background-color: var(--color-duration);
  color: var(--color-text);
}

.card-tag-static {
  font-family: var(--font-primary);
  font-size: 0.75rem;
  padding: 0.35rem 1rem;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
  border-radius: 4px;
  display: inline-block;
  position: relative;
  background-color: var(--color-service);
  color: var(--color-white);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.card-tag-static:hover {
  transform: translateY(-1px);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

/* Card CTA */
.card-cta {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: auto;
  color: var(--color-primary);
  font-weight: 500;
  font-size: 0.8rem;
  text-decoration: none;
  transition: all var(--transition-speed) ease;
}

.card-cta:hover {
  gap: 0.5rem;
}

/* Navigation Controls */
.carousel-navigation {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
}

/* Carousel Arrows Container */
.carousel-arrows {
  display: flex;
  gap: 1rem;
  align-items: center;
}

/* Arrow Buttons */
.carousel-button {
  background: var(--color-service);
  color: var(--color-white);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-speed);
  border: 1px solid var(--color-service);
  font-size: 1.25rem;
  position: relative;
  z-index: 2;
}

.carousel-button:hover {
  background: var(--color-white);
  color: var(--color-service);
  transform: translateY(-2px);
}

.carousel-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* Dots Navigation */
.carousel-dots {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-text);
  cursor: pointer;
  transition: all var(--transition-speed);
  border: 1px solid var(--color-service);
}

.dot:hover {
  background: var(--color-text-light);
}

.dot.active {
  background: var(--color-service);
  transform: scale(1.2);
}

/* Responsive Adjustments */
@media (max-width: 767px) {
  .carousel-navigation {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .carousel-arrows {
    width: 100%;
    justify-content: space-between;
    order: 2;
  }
  
  .carousel-dots {
    position: static;
    transform: none;
    order: 1;
  }
}

@media (min-width: 768px) {
  
  .carousel-button {
    width: 48px;
    height: 48px;
  }
  
  .dot {
    width: 12px;
    height: 12px;
  }
}

@media (min-width: 1024px) {
  .carousel-navigation {
    margin-top: 1rem;
  }
  
  .carousel-button {
    opacity: 0.8;
  }
  
  .carousel-button:hover {
    opacity: 1;
  }
}

/* The rest of the styles remain the same... */

/* View All Button */
.view-all-projects {
  text-align: left;
  margin-top: 3rem;
}

.view-all-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background-color: var(--color-service);
  color: var(--color-white);
  border-radius: 0 15px 0 0;
  font-weight: 500;
  transition: all var(--transition-speed);
  border: 1px solid var(--color-service);
}

.view-all-button:hover {
  background-color: var(--color-white);
  color: var(--color-service);
  transform: translateY(-2px);
}

/* Loading States */
.card-image.loading {
  background: linear-gradient(110deg, #ececec 8%, #f5f5f5 18%, #ececec 33%);
  background-size: 200% 100%;
  animation: shimmer 1.5s linear infinite;
}

@keyframes shimmer {
  to {
    background-position: -200% 0;
  }
}

/* Tablet Breakpoint */
@media (min-width: 768px) {
  .carousel-slide {
    flex: 0 0 50%;
  }
  
  .project-container {
    padding: 0 2rem;
  }
  
  .card-content {
    padding: 1.5rem;
  }
  
  .card-title {
    font-size: 1.25rem;
  }
}

/* Desktop Breakpoint */
@media (min-width: 1024px) {
  .carousel-slide {
    flex: 0 0 33.333%;
  }
  
  .projects-section {
    padding: 4rem 2rem;
  }
  
  .carousel-navigation {
    margin-top: 3rem;
  }
  
  /* Hover Effects */
  .card {
    cursor: pointer;
  }
  
  .card:hover .card-content {
    transform: translateY(-10px);
  }
}

/* Large Desktop Breakpoint */
@media (min-width: 1280px) {
  .card-title {
    font-size: 1.375rem;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .carousel-track,
  .card,
  .card-image img,
  .carousel-button,
  .dot,
  .view-all-button {
    transition: none;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .card {
    border: 2px solid var(--color-text);
  }
  
  .carousel-button,
  .view-all-button {
    border: 2px solid currentColor;
  }
  
  .dot {
    border: 1px solid var(--color-text);
  }
}

/* Print Styles */
@media print {
  .carousel-navigation,
  .view-all-projects {
    display: none;
  }
  
  .carousel-track {
    transform: none !important;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .carousel-slide {
    opacity: 1;
  }
}

/* Base section styles */
.value-proposition-section {
  padding: 2rem 0;
  background-color: var(--color-white);
}

.vp-container {
  max-width: 1200px;
  margin: 0 auto;
}
/* Header styles */
.vp-section-header {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
  max-width: 100%;
  padding: 0 1rem;
}

.vp-title-group {
  flex: 1;
  max-width: 100%;
}

.vp-section-title {
  margin-bottom: 1rem;
  color: var(--color-text);
}

.vp-section-description {
  color: var(--color-text);
  margin-bottom: 1.5rem;
  max-width: 100%;
}

/* Grid layout */
.row {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.column {
  width: 100%;
  text-align: center;
}

/* Card styles */
.vp-card {
  border: 1px solid black;
  width: 100%;
  height: 100%;
  padding: 4em 2em;
  background-color: var(--color-background);
  border-radius: 0 25px 0px 25px;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.12);
  transition: 0.5s;
}

.vp-header {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-white);
  margin: 1em 0;
}

.vp-description {
  color: var(--color-white);
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.03em;
}

/* Icon styles */
.icon-wrapper {
  background-color: var(--color-white);
  position: relative;
  margin: auto;
  font-size: 30px;
  height: 2.5em;
  width: 2.5em;
  color: var(--color-text);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: 0.3s;
}

/* Hover effects */
.vp-card:hover {
  color: var(--color-white);
  box-shadow: 5px 5px 0px 0px black;
  transform: translateY(-5px);
  background-color: var(--color-white);
}

.vp-card:hover .icon-wrapper {
  background-color: var(--color-background);
  color: var(--color-white);
}

.vp-card:hover h3 {
  color: var(--color-text);
}

.vp-card:hover p {
  color: var(--color-text);
}

/* Desktop (default above) */
@media screen and (min-width: 1024px) {
  .row {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .column {
    width: calc(25% - 2rem);
  }

  .vp-container {
    padding: 0 2rem;
  }
}

/* Tablet (768px to 1024px) */
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .row {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .column {
    width: calc(50% - 0.75rem);
  }

  .vp-container {
    padding: 0 1.5rem;
  }

  .services-title span {
    font-size: 1.75rem;
  }

  .vp-card {
    padding: 1.25em 0.875em;
  }
}

/* Mobile (below 768px) */
@media screen and (max-width: 767px) {
  .value-proposition-section {
    padding: 4rem 1rem;
  }

  .vp-container {
    padding: 0 1rem;
  }

  .services-title span {
    font-size: 1.5rem;
  }

  .services-header {
    margin-bottom: 2rem;
  }

  .row {
    gap: 1.5rem;
  }

  .vp-card {
    padding: 2em 1.5em;
  }

  .vp-header {
    font-size: 14px;
  }

  .vp-description {
    font-size: 12px;
  }

  .icon-wrapper {
    font-size: 24px;
  }
}

.cta {
  background-color: var(--color-text);
  color: white;
  padding: 4rem 2rem;
  width: 100%;
}

.cta-container {
  width: 90%;
  max-width: 1110px;
  margin: 0 auto;
}

.columns {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
}

.text {
  flex: 1;
}

.heading {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  line-height: 1.2;
}

.sub-heading {
  font-size: 1.125rem;
  color: #B3B3B3;
  margin: 0;
  line-height: 1.6;
  max-width: 600px;
}

.button-container {
  flex-shrink: 0;
}

.button-cta {
  background-color: #a9d6e5;
  color: #03045e;
  border: none;
  padding: 1rem 2rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1.125rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.button-cta:hover {
  background-color: #0077b6;
  color: #fff;
  transform: translateY(-2px);
}

/* Desktop (1200px and up) */
@media screen and (min-width: 75em) {
  .cta {
    padding: 5rem 2rem;
  }

  .columns {
    gap: 6rem;
  }

  .heading {
    font-size: 1.75rem;
  }
}

/* Tablet (768px to 1199px) */
@media screen and (max-width: 74.9375em) {
  .cta {
    padding: 3.5rem 2rem;
  }

  .columns {
    gap: 3rem;
  }

  .heading {
    font-size: 2rem;
  }

  .sub-heading {
    font-size: 1rem;
  }
}

/* Mobile (767px and below) */
@media screen and (max-width: 47.9375em) {
  .cta {
    padding: 3rem 1.5rem;
  }

  .columns {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .text {
    width: 100%;
  }

  .heading {
    font-size: 1.25rem;
  }

  .sub-heading br {
    display: none;
  }

  .button-container {
    width: 100%;
  }

  .button-cta {
    width: 100%;
    max-width: 300px;
    padding: 0.875rem 1.5rem;
  }
}
