/** Shopify CDN: Minification failed

Line 329:0 Unexpected "}"

**/
/* About Us Section Styles */

.about-us {
  position: relative;
  overflow: visible; /* allow content to extend the page */
}

.about-us__container {
  max-width: 140rem;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.about-us__header {
  text-align: center;
  /* Reduced space between subtitle and content to bring sections closer */
  margin-bottom: 2.5rem;
}

.about-us__title {
  margin-bottom: 1.5rem;
  color: rgb(var(--color-foreground));
}

.about-us__title--underlined {
  position: relative;
  text-align: center;
}

.about-us__title--underlined::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--title-underline-color, #2d3748);
  border-radius: 2px;
}

.about-us__subtitle {
  font-size: 1.8rem;
  color: rgba(var(--color-foreground), 0.7);
  margin: 0;
}

/* Main Content Layout */
.about-us__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* Slightly smaller horizontal gap so content and images sit closer */
  gap: 4rem;
  /* Align items to the start so image tops line up with headings/text */
  align-items: start;
}

/* Images Side */
.about-us__images {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-us__image-wrapper {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  line-height: 0; /* remove inline gap */
  margin: 0;
}

.about-us__image-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.about-us__image--main {
  /* Prefer aspect ratio to avoid unexpected cropping */
  aspect-ratio: 16 / 9;
  height: auto;
}

.about-us__images-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.about-us__image--secondary {
  /* Prefer square thumbnails via aspect-ratio */
  aspect-ratio: 1 / 1;
  height: auto;
}

.about-us__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block; /* prevent bottom whitespace */
}

/* Ensure all media inside this section scale within the viewport */
.about-us img,
.about-us video,
.about-us iframe {
  max-width: 100% !important;
  height: auto !important;
}

/* Robust text wrapping to avoid clipping */
.about-us,
.about-us p,
.about-us h1,
.about-us h2,
.about-us h3,
.about-us h4,
.about-us h5,
.about-us h6 {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.about-us__image-wrapper:hover .about-us__image {
  transform: scale(1.05);
}

/* Text Content Side */
.about-us__text-content {
  padding: 2rem 0;
}

.about-us__main-heading {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.2;
  color: rgb(var(--color-foreground));
  margin: 0 0 2.5rem 0;
}

.about-us__description {
  font-size: 1.6rem;
  line-height: 1.7;
  color: rgba(var(--color-foreground), 0.8);
  margin: 0 0 3rem 0;
}

.about-us__description p {
  margin: 0 0 2rem 0;
}

.about-us__description p:last-child {
  margin-bottom: 0;
}

.about-us__features {
  font-size: 1.5rem;
  line-height: 1.6;
  color: rgba(var(--color-foreground), 0.75);
  margin: 0 0 3rem 0;
}

.about-us__features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-us__features li {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 1.2rem;
}

.about-us__features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  background: #2d3748;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: bold;
}

.about-us__button-wrapper {
  margin: 3rem 0;
}

.about-us__button {
  background: #2d3748;
  color: white !important;
  padding: 1.5rem 3rem;
  border-radius: 3rem;
  font-size: 1.6rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
  box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
  border: none;
  cursor: pointer;
}

.about-us__button:hover {
  background: #1a202c;
  color: white !important;
  text-decoration: none;
}

/* Statistics */
.about-us__stats {
  display: flex;
  gap: 4rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(var(--color-foreground), 0.1);
}

.about-us__stat {
  text-align: center;
  flex: 1;
}

.about-us__stat-number {
  display: block;
  font-size: 3.2rem;
  font-weight: 700;
  color: #3B82F6;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.about-us__stat-label {
  font-size: 1.4rem;
  color: rgba(var(--color-foreground), 0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

/* Tablet Styles */
@media screen and (max-width: 1024px) {
  .about-us__container {
    padding: 0 3rem;
  }
  
  .about-us__content {
    gap: 4rem;
  }
  
  .about-us__main-heading {
    font-size: 3rem;
  }
  
  .about-us__stats {
    gap: 3rem;
  }
  
  .about-us__stat-number {
    font-size: 2.8rem;
  }
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
  .about-us__container {
    padding: 0 2rem;
  }
  
  .about-us__header {
    margin-bottom: 4rem;
  }
  
  .about-us__content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  /* Promote children of images container into the grid so we can control order */
  .about-us__images { display: contents; }

  /* Order: main image (0), text (1), two images grid (2) */
  .about-us__image--main { order: 0; aspect-ratio: 16 / 9; height: auto; margin-bottom: 0.5rem; width: 100%; }
  .about-us__image-wrapper.about-us__image--main { width: 100%; max-height: none; }
  .about-us__text-content { order: 1; padding: 0; }
  .about-us__images-grid { order: 2; }
  
  /* Ensure two images sit side by side on mobile */
  .about-us__images-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .about-us__image--secondary { aspect-ratio: 1 / 1; height: auto; }
  .about-us__content, .about-us__text-content { overflow: visible; }
  
  /* Typographic clamps and wrapping to avoid cut text (override inline sizes) */
  .about-us__title { font-size: clamp(1.8rem, 6vw, 2.4rem) !important; }
  .about-us__subtitle { font-size: clamp(1.3rem, 4.8vw, 1.8rem) !important; }
  .about-us__main-heading { font-size: clamp(1.7rem, 5.2vw, 2.4rem) !important; margin-bottom: 1.4rem; overflow-wrap: anywhere; word-break: normal; hyphens: auto; }
  .about-us__description { font-size: clamp(1.3rem, 4.4vw, 1.6rem) !important; margin-bottom: 1.8rem; overflow-wrap: anywhere; word-break: break-word; hyphens: auto; }
  .about-us__features { font-size: clamp(1.2rem, 3.8vw, 1.5rem) !important; margin-bottom: 2rem; overflow-wrap: anywhere; hyphens: auto; }
  .about-us__text-content { overflow: visible; }
  .about-us__description h1,
  .about-us__description h2,
  .about-us__description h3,
  .about-us__description h4,
  .about-us__description h5,
  .about-us__description h6 { font-size: clamp(1.4rem, 5vw, 2rem) !important; line-height: 1.3; overflow-wrap: anywhere; word-break: break-word; hyphens: auto; }
  .about-us__description ul, .about-us__description ol { padding-left: 1.2rem; }
}

  /* Allow section to show overflowing content if needed on small screens */
  .about-us { overflow: visible; }
}

/* Keep stats horizontal and text readable on mobile */
@media screen and (max-width: 768px) {
  .about-us__stats {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2.4rem;
    padding-top: 1.6rem;
  }
  
  .about-us__stat { flex: 1; text-align: center; min-width: 0; display: flex; flex-direction: column; align-items: center; }
  
  .about-us__stat-number { font-size: clamp(1.6rem, 6vw, 2.2rem); line-height: 1; }
  
  .about-us__stat-label { font-size: clamp(0.9rem, 3.2vw, 1.1rem); line-height: 1.15; letter-spacing: 0; text-align: center; max-width: 12ch; word-break: keep-all; overflow-wrap: normal; hyphens: auto; text-wrap: balance; }
  
  .about-us__button {
    font-size: 1.5rem;
    padding: 1.3rem 2.5rem;
    width: 100%;
    text-align: center;
  }
}

/* Extra small screens */
@media screen and (max-width: 480px) {
  /* Keep stats horizontal even on small screens */
  .about-us__stats {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    margin-top: 2.5rem;
  }
  
  .about-us__stat {
    flex: 1;
  }
  
  .about-us__stat-number { font-size: clamp(1.4rem, 6.4vw, 1.8rem); }
  
  .about-us__stat-label { font-size: clamp(0.85rem, 3.4vw, 0.95rem); line-height: 1.15; letter-spacing: 0; max-width: 11ch; }
  
  /* Keep two columns if possible; fallback single column on very small */
  .about-us__images-grid { grid-template-columns: 1fr 1fr; }
  
  .about-us__image--main { height: auto; aspect-ratio: 16 / 9; width: 100%; }
  
  .about-us__main-heading {
    font-size: 2.2rem;
  }
  
  .about-us__description {
    font-size: 1.4rem;
  }
}
