.elementor-469 .elementor-element.elementor-element-b669ba5{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}.elementor-469 .elementor-element.elementor-element-9fd1a97{width:100%;max-width:100%;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-9fd1a97 *//* Hero Image */
.asp-hero .hero-image img {
  width: 50% !important;
  max-width: 520px !important;
  border-radius: 20px !important;
  padding: 5px !important;
  box-sizing: border-box !important; /* This fixes the width + padding conflict */
  box-shadow: 0 12px 30px rgba(18, 50, 74, 0.12) !important;
  background: #ffffff !important;
}
 /* Add a white background behind the image for further clarity */

/* Stats Section Container General Styling */
.asp-stats-container {
  margin-bottom: 48px;
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, #ffffff, #f3f4f6); /* Subtle gradient */
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

/* Headline and Supporting Text */
.asp-stats-container h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  color: #12324a;
  margin-bottom: 16px;
}
.asp-stats-container p {
  color: #9aa4ab;
  margin-bottom: 28px;
}

/* Full Stats Section Sizing */
.stats {
  display: flex;
  flex-direction: column;
  gap: 20px; /* Add spacing between rows */
}

/* Top Row of Two Stats */
.stat-row {
  display: flex;
  justify-content: space-around; /* Space out the two stats evenly */
  gap: 20px; /* Add spacing between the columns */
  flex-wrap: wrap; /* Ensures responsiveness */
}

/* Individual Stat Block */
.stat {
  text-align: center;
  width: 100%; /* Default to 100% for single-column layout */
}
.stat-row .stat {
  width: calc(50% - 10px); /* Ensure 2 stats fit in the top row in columns */
}

/* Centered Stat (Below the Row of Two) */
.stat-center {
  margin: 0 auto; /* Automatically center */
  width: 50%; /* Make it narrower compared to the row above */
}

/* Styling for Numbers */
.stat .num {
  font-size: 36px;
  font-family: 'Montserrat', sans-serif;
  color: #d6b86a;
  font-weight: 700;
}

/* Styling for Labels */
.stat .label {
  font-family: 'Playfair Display', serif; /* Use sophisticated serif font */
  font-size: 15px;
  color: #6c757d;
  font-style: italic;
  line-height: 1.6;
  margin-top: 8px;
}

/* Sources */
.sources {
  font-size: 12px;
  color: #9aa4ab;
  margin-top: 20px;
  font-style: italic;
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-b669ba5 *//* Modern Airy Minimal - B Version Condensed Layout */
:root {
  --bg: #f7f7f7;
  --panel: #ffffff;
  --accent: #d6b86a;
  --dark: #12324a;
  --muted: #9aa4ab;
  --card-shadow: rgba(19,50,74,0.06);
  --radius: 10px;
  --max-width: 1200px;
  --section-padding: 20px;
  --card-padding: 16px;
  --gap: 14px;
}

.asp-b-solutions, .asp-b-home {
  font-family: 'Open Sans', sans-serif;
  color: var(--dark);
  background-color: var(--bg);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 16px;
}

/* Hero Section - Condensed */
.asp-hero {
  min-height: 480px;
  display: flex;
  align-items: center;
  position: relative;
  background-size: cover;
  background-position: center;
  margin-bottom: var(--section-padding);
}
.asp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(18,50,74,0.45);
}
.asp-hero .hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  gap: 24px;
  align-items: center;
}
.asp-hero .hero-left {
  flex: 1.1;
}
.asp-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 12px;
}
.asp-hero p.lead {
  color: rgba(255,255,255,0.92);
  font-size: 16px;
  margin-bottom: 16px;
  line-height: 1.4;
}
.btn-cta {
  display: inline-block;
  background: var(--accent);
  color: var(--dark);
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(214,184,106,0.12);
}

.asp-hero .hero-image {
  flex: 0.9;
  display: flex;
  justify-content: center;
}
.asp-hero .hero-image img {
  width: 100%;
  max-width: 460px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(18,50,74,0.12);
}

/* Services Grid - Condensed */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--gap);
  margin-bottom: var(--section-padding);
}
.service-card {
  background: var(--panel);
  border-radius: var(--radius);
  padding: var(--card-padding);
  box-shadow: 0 4px 12px rgba(18,50,74,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(18,50,74,0.1);
}
.service-card .icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(18,50,74,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.service-card h3 {
  margin: 0 0 6px 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
}
.service-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
}

/* Experience Grid - Condensed */
.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--gap);
  margin-bottom: var(--section-padding);
}
.experience-card {
  background: var(--panel);
  padding: var(--card-padding);
  border-radius: var(--radius);
  box-shadow: 0 4px 12px var(--card-shadow);
  border-left: 4px solid rgba(214,184,106,0.8);
}
.experience-card h4 {
  margin-top: 0;
  margin-bottom: 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
}
.experience-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
}

/* CTA Band - Condensed */
.cta-band {
  background: var(--panel);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  box-shadow: 0 8px 20px var(--card-shadow);
  margin-bottom: var(--section-padding);
}
.cta-band h2 {
  margin: 0 0 8px 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
}
.cta-band p {
  color: var(--muted);
  margin-bottom: 16px;
  font-size: 15px;
}

/* Footer */
.asp-footer {
  padding: 20px 0;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}

/* Section Spacing */
section {
  margin-bottom: var(--section-padding);
}
h2 {
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 12px;
  font-size: 26px;
}
.section-intro {
  color: var(--muted);
  margin-bottom: 20px;
  font-size: 15px;
}

/* Responsive - Mobile Condensed */
@media (max-width: 1024px) {
  .asp-hero {
    min-height: 360px;
    padding: 20px 0;
  }
  .asp-hero .hero-inner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  .asp-hero .hero-left, .asp-hero .hero-image {
    width: 100%;
  }
  .asp-hero h1 {
    font-size: 28px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .experience-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .asp-hero {
    min-height: 280px;
  }
  .asp-hero h1 {
    font-size: 24px;
  }
  .btn-cta {
    padding: 8px 16px;
    font-size: 14px;
  }
  .container {
    padding: 0 12px;
  }
  :root {
    --section-padding: 16px;
    --card-padding: 12px;
  }
}/* End custom CSS */