/* Start custom CSS for html, class: .elementor-element-7f85e94 *//* =====================================================
   ABOUT PAGE SECTION WITH ICONS
===================================================== */
.about-page {
  width: 100%;
  min-height: 100vh;
  padding: 100px 20px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background: linear-gradient(to bottom, #05070d 0%, #0a1a2f 100%);
}

.about-container {
  width: 100%;
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  gap: 40px; /* space between boxes */
}

/* GLASSY BOXES */
.about-page .about-box {
  padding: 40px 35px 40px 35px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.4),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* HOVER EFFECT */
.about-page .about-box:hover {
  transform: translateY(-5px);
  box-shadow:
    0 30px 60px rgba(0, 180, 255, 0.45),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

/* ICONS */
.about-page .about-icon {
  font-size: 36px;
  color: #00b4ff;
  margin-bottom: 18px;
}

/* TITLE */
.about-page .about-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #ffffff, #7fd7ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: left;
}

/* TEXT PARAGRAPHS */
.about-page .about-box p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(234, 242, 255, 0.92);
  margin-bottom: 18px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .about-page .about-box {
    padding: 35px 28px;
  }

  .about-page .about-title {
    font-size: 26px;
  }

  .about-page .about-box p {
    font-size: 15.5px;
  }

  .about-page .about-icon {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .about-page .about-box {
    padding: 28px 20px;
    border-radius: 20px;
  }

  .about-page .about-title {
    font-size: 22px;
  }

  .about-page .about-box p {
    font-size: 15px;
  }

  .about-page .about-icon {
    font-size: 28px;
  }
}/* End custom CSS */