.elementor-914 .elementor-element.elementor-element-0fde813{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-f5e8f42 *//* === GLOBAL RESET === */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Segoe UI', sans-serif;
  color: #000;
}

/* === HERO SECTION === */
.hero {
  height: 90vh;
  background: url('https://archlimited.com/wp-content/uploads/2025/06/about-us-front.jpg') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1rem;
  margin-bottom: 4rem;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  max-width: 900px;
  line-height: 1.3;
  font-weight: bold;
  color: #000;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 0.5rem 1rem;
  border-radius: 10px;
}

/* === LAYOUT === */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}
.section {
  padding: 4rem 0;
  overflow: hidden;
}
.alt .row {
  flex-direction: row-reverse;
}
.row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}
.text, .image {
  flex: 1 1 45%;
  min-width: 300px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease;
}
.text.visible, .image.visible {
  opacity: 1;
  transform: translateY(0);
}
.text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #222;
}
.image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: 0.3s ease;
}
.image img:hover {
  transform: scale(1.03);
}

/* === STATS SECTION (HORIZONTAL, B&W) === */
.stats-section.bw {
  background: #000;
  color: #fff;
  padding: 4rem 0;
  text-align: center;
}
.stats-row {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.stat-box {
  background: #fff;
  color: #000;
  border-radius: 10px;
  padding: 2rem 1rem;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
  flex: 1 1 200px;
  min-width: 180px;
}
.stat-box:hover {
  background: #f0f0f0;
}
.stat-box .icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
.stat-box h2 {
  font-size: 2.2rem;
  margin-bottom: 0.3rem;
  color: #000;
  background-color: #fff;
  padding: 0.2em 0.6em;
  border-radius: 6px;
  display: inline-block;
}
.stat-box p {
  font-size: 1rem;
  color: #333;
}

/* === REVIEWS SECTION === */
.reviews-section {
  background: #f0f8ff;
  color: #000;
  padding: 4rem 0;
  text-align: center;
}
.section-heading {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  font-weight: bold;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}
.review-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  padding: 2rem;
  font-style: italic;
}
.review-card span {
  display: block;
  margin-top: 1.2rem;
  font-weight: 600;
  color: #003366;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .row {
    flex-direction: column !important;
  }
  .hero h1 {
    font-size: 2rem;
  }
}/* End custom CSS */