/*64px max*/
/*48px max*/
/*24px max*/
/*20px max*/
/*16px max*/
.hero-pods {
  padding-top: 140px;
  position: relative;
  background-color: #01214A;
  z-index: 2;
  margin: 0 auto;
  text-align: center;
  overflow: hidden;
  min-height: calc(100vh - 100px);
}
@media (max-width: 39.9375em) {
  .hero-pods {
    padding-top: 100px;
  }
}

.hero-pods__background-image {
  position: absolute;
  left: 50%;
  width: 96%;
  transform: translate(-50%, -15%);
  z-index: -1;
  pointer-events: none;
}
@media (max-width: 39.9375em) {
  .hero-pods__background-image {
    top: 19%;
    max-width: unset;
    width: 717px;
  }
}

.hero-pods__heading-container {
  max-width: 900px;
  margin: 0 auto;
}

.hero-pods__heading {
  font-family: "Space Grotesk", Arial, Helvetica, sans-serif;
  font-size: clamp(2.625rem, 0.7372881356rem + 3.7288135593vw, 4rem);
  color: #FFF48B;
  letter-spacing: -2px;
  padding-top: 100px;
}

.pods-hero {
  padding-top: 30px; /* Top padding for the hero section */
}

.pods-hero__title {
  color: #003F48;
  margin-bottom: 30px;
}

.pods-hero__subtitle {
  font-size: clamp(0.875rem, 0.3601694915rem + 1.0169491525vw, 1.25rem);
  line-height: 1.2;
  max-width: 100%;
}

.pods-solutions {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-left: 20px;
  width: 100%;
  margin: auto; /* Center the whole block */
  position: relative; /* For positioning arrows */
  margin-bottom: 50px;
}
@media (min-width: 40em) {
  .pods-solutions {
    padding-left: 120px; /* More padding on desktop */
  }
}

/* Responsive heading for medium screens and up */
@media (min-width: 768px) {
  .pods-solutions__heading {
    font-size: 2.5rem; /* md:text-4xl, slightly larger */
    line-height: 2.75rem;
  }
}
/* Pods Solutions Container Element - This now scrolls */
.pods-solutions__container {
  display: flex;
  flex-direction: row;
  gap: 6rem;
  padding: 1rem;
  overflow-x: auto; /* Allows horizontal scrolling */
  scroll-snap-type: x mandatory; /* Snaps to cards */
  scroll-behavior: smooth; /* Smooth scrolling for navigation */
  scroll-padding-left: 1rem; /* Padding for snapping alignment */
  width: 100%;
  max-width: 100%;
  -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
  scrollbar-width: none; /* Hide scrollbar for Firefox */
  -ms-overflow-style: none; /* Hide scrollbar for IE/Edge */
  position: relative; /* For absolute positioned arrows inside */
}
@media (max-width: 39.9375em) {
  .pods-solutions__container {
    gap: 1.5rem;
  }
}

.pods-solutions__container::-webkit-scrollbar {
  display: none; /* Hide scrollbar for Chrome, Safari, Opera */
}

/* Responsive container width for medium screens and up */
/* Pods Solutions Card Element */
.pods-solutions__card {
  position: relative;
  flex-shrink: 0; /* Prevents cards from shrinking */
  overflow: hidden;
  border-radius: 60px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Softer shadow for modern look */
  background-color: white; /* Ensure background is white if image doesn't cover fully */
  scroll-snap-align: start; /* Snap to the start of each card */
  border: 1px solid #1f1f1f;
  /* Mobile default width and height */
  width: calc(100% - 2rem); /* Full width minus padding on container, so it fits */
  height: 350px;
  cursor: pointer; /* Indicate it's interactive */
}

/* Desktop width and height */
@media (min-width: 768px) {
  .pods-solutions__card {
    width: 472px;
    height: 472px;
  }
}
/* Pods Solutions Image Element */
.pods-solutions__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease, filter 0.3s ease; /* Smooth transition for hover effects */
}

/* Pods Solutions Text Overlay Element (bottom text) */
.pods-solutions__text-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 35px 35px;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.3), transparent);
  color: white;
  font-size: clamp(1.125rem, 0.6101694915rem + 1.0169491525vw, 1.5rem);
  font-weight: 600;
  text-align: left;
  z-index: 2; /* Ensure it's above the image */
}

/* Full Description Overlay Element */
.pods-solutions__full-description {
  position: absolute;
  inset: 0; /* Covers the entire card */
  background-color: #BFECE5; /* Dark transparent overlay */
  color: white;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  opacity: 0; /* Initially hidden */
  visibility: hidden; /* Ensure it's not interactive when hidden */
  transition: opacity 0.3s ease, visibility 0.3s ease; /* Smooth transition */
  pointer-events: none; /* Does not block mouse events when hidden */
  border-radius: 55px; /* Match card border radius */
  z-index: 3; /* Ensure it's above the image and bottom text */
}

/* Styling for the title within the full description */
.pods-solutions__full-description-title {
  font-size: clamp(1.125rem, 0.6101694915rem + 1.0169491525vw, 1.5rem);
  font-weight: 600;
  margin-bottom: 8px;
  margin-top: 14px;
  color: #000000;
}
@media (max-width: 63.9375em) {
  .pods-solutions__full-description-title {
    margin-bottom: 6px;
    margin-top: 10px;
  }
}

/* Styling for the content within the full description */
.pods-solutions__full-description-content {
  color: #000000;
  font-size: clamp(0.8rem, 0.3601694915rem + 1.0169491525vw, 1rem);
  line-height: 1.2;
  margin-bottom: 0;
}
.pods-solutions__full-description-content--last {
  line-height: 1;
}
@media (min-width: 64em) {
  .pods-solutions__full-description-content {
    font-size: 14px;
  }
}
@media (max-width: 63.9375em) {
  .pods-solutions__full-description-content {
    line-height: 1;
  }
  .pods-solutions__full-description-content--last {
    line-height: 1;
    font-size: 11px;
    margin-top: 6px;
  }
}

/* Hover effect for the card */
.pods-solutions__card:hover .pods-solutions__image {
  filter: brightness(0.7); /* Slightly dim the image */
  transform: scale(1.05); /* Slight zoom effect */
}

.pods-solutions__card:hover .pods-solutions__full-description {
  opacity: 1; /* Make visible */
  visibility: visible;
  pointer-events: auto; /* Enable interaction when visible */
}

/* Navigation Arrows */
.pods-solutions__nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.8);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #333;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 10;
  transition: background-color 0.3s ease, transform 0.3s ease, opacity 0.3s ease; /* Added opacity to transition */
}

.pods-solutions__nav-arrow:hover {
  background-color: white;
  transform: translateY(-50%) scale(1.05);
}

.pods-solutions__nav-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.pods-solutions__nav-arrow--left {
  left: 1rem;
}

.pods-solutions__nav-arrow--right {
  right: 1rem;
}

.who-we-work-with {
  background-color: #081935; /* Dark blue background from image */
  width: 100%;
  color: white; /* Default text color for this section */
  padding-top: 50px;
  padding-bottom: 50px;
}

/* Desktop specific size */
@media (min-width: 768px) {
  .who-we-work-with {
    padding-top: 50px;
    padding-bottom: 60px;
  }
}
/* Who We Work With Heading Element */
.who-we-work-with__heading {
  font-size: clamp(1.875rem, 0.3305084746rem + 3.0508474576vw, 3rem); /* Large font size */
  margin-bottom: 0.5rem;
  text-align: left;
  color: #FFF48B;
}

/* Who We Work With Description Element */
.who-we-work-with__description {
  font-size: clamp(0.875rem, 0.3601694915rem + 1.0169491525vw, 1.25rem);
  line-height: 1.4;
  margin-bottom: 2rem;
  color: #FFF48B;
}

/* Flex container for the cards */
.cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}

/* General Card Item Styling (non-size/responsiveness specific) */
.card-item {
  background-color: #BFECE5; /* bg-white */
  border-radius: 1.2rem; /* rounded-lg */
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); /* shadow-lg */
  padding: 1.5rem; /* p-6 */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  /* Allow flex-basis/width to dictate the primary size, but allow some growth */
  flex-grow: 1;
  flex-shrink: 0; /* Prevents cards from shrinking too much, lets card-fixed-size control primary size */
  box-sizing: border-box; /* Include padding and border in the element's total width and height */
}

/* Custom fixed size for cards to ensure 345x345 */
.card-fixed-size {
  width: 345px;
  height: 345px;
  /* Ensure cards scale down on smaller screens if they cannot fit 345px */
  max-width: 100%;
  height: auto; /* Allow height to adjust proportionally */
}

.card-item img {
  margin-top: 30px;
  border-radius: 9999px; /* rounded-full */
  margin-bottom: 35px; /* mb-4 */
  width: 122px; /* Explicit width for placeholder */
  height: 122px; /* Explicit height for placeholder */
}
@media (max-width: 39.9375em) {
  .card-item img {
    margin-top: 20px;
    margin-bottom: 25px;
    width: 100px; /* Explicit width for placeholder */
    height: 100px; /* Explicit height for placeholder */
  }
}

.card-item h2 {
  font-size: clamp(0.875rem, 0.3601694915rem + 1.0169491525vw, 1.25rem); /* text-xl */
  line-height: 1.75rem; /* leading-7 */
  font-weight: 600; /* font-semibold */
  color: #081935; /* text-gray-700 */
}

.card-item p {
  font-weight: 400;
  font-size: clamp(0.8rem, 0.3601694915rem + 1.0169491525vw, 1rem); /* text-base */
  line-height: 1.5rem; /* leading-6 */
  color: #081935; /* text-gray-500 */
  margin-top: 0.3rem;
  max-width: 336px;
}

/* Responsive width for cards using flex-basis (original class name) */
/* Mobile: 1 card per row */
.card-responsive-width {
  flex-basis: 100%;
}

/* Tablet (md breakpoint): 2 cards per row */
@media (min-width: 768px) {
  .card-responsive-width {
    flex-basis: calc(50% - 32px); /* 50% width minus half of the gap on each side */
  }
}
/* Desktop (lg breakpoint): 3 cards per row */
@media (min-width: 1024px) {
  .cards-container {
    gap: 50px;
  }
  .card-responsive-width {
    flex-basis: calc(33.333333% - 96px); /* 33.33% width minus (2/3) of the gap on each side */
  }
}
/* Who We Work With Cards Container Element (Grid Layout) */
.who-we-work-with__cards-container {
  display: grid;
  grid-template-columns: 1fr; /* Single column on mobile */
  gap: 1.5rem; /* Gap between cards */
  width: 100%;
  justify-content: space-between;
}

/* Responsive grid for larger screens */
@media (min-width: 768px) {
  .who-we-work-with__heading {
    font-size: 3rem;
  }
  .who-we-work-with__cards-container {
    grid-template-columns: repeat(2, 345px); /* Two columns on desktop */
    gap: 4.5rem;
  }
}
@media (min-width: 1224px) { /* Adjust for larger desktops to show 3 cards */
  .who-we-work-with__cards-container {
    grid-template-columns: repeat(3, 345px); /* Three columns on larger desktops */
  }
}
/* Who We Work With Individual Card Element */
.who-we-work-with__card {
  background-color: #a4dbdd; /* Light teal background from image */
  border-radius: 1.5rem; /* More pronounced border-radius from image */
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Deeper shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Subtle transition for hover */
  height: 345px; /* Fixed height for desktop */
  width: 100%; /* Default width for mobile */
  box-sizing: border-box; /* Include padding in width/height */
}

/* Desktop specific size */
@media (min-width: 768px) {
  .who-we-work-with__card {
    width: 345px;
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
/* Hover effect for card */
.who-we-work-with__card:hover {
  transform: translateY(-5px); /* Lift effect */
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3); /* Deeper shadow on hover */
}

/* Who We Work With Circle Element (placeholder for image/icon) */
.who-we-work-with__circle {
  width: 100px; /* Example size */
  height: 100px;
  background-color: #6a6a6a; /* Gray circle color from image */
  border-radius: 50%;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0; /* Prevent shrinking if text is long */
}

/* Who We Work With Card Text Content */
.who-we-work-with__card-text {
  color: #1a202c; /* Dark text on light card background */
  font-size: 1rem;
  line-height: 1.4;
  flex-grow: 1; /* Allow text to take available space */
  display: flex;
  flex-direction: column;
  justify-content: center; /* Center text vertically within remaining space */
}

.who-we-work-with__card-text strong {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

/*# sourceMappingURL=pods.css.map */
