/* Start custom CSS for html, class: .elementor-element-f5284e6 */* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", Arial, sans-serif;
}

body {
  background: #eef1f7;
  color: #222;
}

.about-section {
  max-width: 1250px;
  margin: 60px auto;
  padding: 30px;
}

.about-top {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(145deg, #2563eb, #1e3a8a);
  color: #fff;
  border-radius: 24px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.about-top h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.about-top p {
  font-size: 17px;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
}

.about-grid {
  margin-top: -40px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 35px;
}

.card {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  border: 1px solid rgba(255,255,255,0.6);
}

.card h2 {
  font-size: 28px;
  margin-bottom: 12px;
  color: #1e3a8a;
}

.card p {
  font-size: 15px;
  opacity: 0.9;
  margin-bottom: 16px;
}

.card ul {
  list-style: none;
  margin-top: 10px;
  padding-left: 0;
}

.card ul li {
  padding: 10px 0;
  font-size: 15px;
  padding-left: 28px;
  position: relative;
}

.card ul li::before {
  content: "";
  width: 10px;
  height: 10px;
  background: #2563eb;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 14px;
}

.stats-box {
  margin-top: 25px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.stat {
  flex: 1 1 150px;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}

.stat-number {
  font-size: 26px;
  font-weight: 700;
  color: #1e3a8a;
}

.stat-label {
  font-size: 12px;
  opacity: 0.7;
  margin-top: 4px;
}

.company-box {
  background: #f9fafc;
  padding: 22px;
  border-radius: 16px;
  margin-bottom: 20px;
  border: 1px solid #ececec;
}

.company-box strong {
  font-size: 13px;
  color: #1e3a8a;
  text-transform: uppercase;
  margin-bottom: 3px;
  display: block;
}

.company-box span {
  font-size: 15px;
}

.cta-box {
  background: linear-gradient(120deg, #1e40af, #2563eb);
  padding: 25px;
  color: #fff;
  border-radius: 18px;
  margin-top: 25px;
  text-align: center;
  font-size: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

@media(max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

@media(max-width: 600px) {
  .about-top h1 {
    font-size: 30px;
  }
}/* End custom CSS */