/* ===================================================
   ALCHOTECH ABOUT PAGE STYLES
   File: assets/css/about.css
   =================================================== */

/* Page Hero Banner */
.about-hero-section {
  padding-top: 140px;
  padding-bottom: 70px;
  background-color: #0d0f19;
  position: relative;
  overflow: hidden;
}

.about-hero-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
}

/* Company Introduction Section */
.about-intro-section {
  padding: 90px 0;
  background-color: #ffffff;
}

.about-img-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  border: 1px solid #e2e8f0;
}

.about-img-frame img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-img-frame:hover img {
  transform: scale(1.03);
}

.about-experience-badge {
  position: absolute;
  top: 25px;
  right: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 5;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

/* Attached small circle at bottom-left corner (~ 7 o'clock) matching reference */
/* .about-experience-badge::before {
  content: "";
  position: absolute;
  bottom: 12px;
  left: 6px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f8fafc;
  box-shadow: -3px 3px 10px rgba(15, 23, 42, 0.08);
  z-index: -1;
}

.about-experience-badge:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 102, 255, 0.18);
} */

.badge-circle-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  z-index: 2;
  gap: 10px;
}

.about-experience-badge .exact-counter-number {
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  color: #0066ff;
  font-family: "Poppins", "Outfit", "Inter", sans-serif;
  margin-bottom: 2px;
  line-height: 1;
}

.about-experience-badge .exact-counter-number .odometer {
  font-family: inherit !important;
  font-size: 80px !important;
  font-weight: 700 !important;
  color: #0066ff !important;
  line-height: 1 !important;
  vertical-align: baseline !important;
  stroke: none !important;
  -webkit-text-stroke-width: 0 !important;
}

.about-experience-badge .exact-counter-number .suffix {
  color: #0066ff;
  font-weight: 500;
  font-size: 32px;
  line-height: 1;
  margin-left: 2px;
  margin-top: 4px;
}

.about-experience-badge .badge-text {
  font-size: 12.5px;
  font-weight: 400;
  color: #ffffff9f;
  line-height: 1.35;
  margin: 0;
  text-align: center;
  max-width: 140px;
}

@media (max-width: 991px) {
  .about-experience-badge {
    left: 20px !important;
    right: auto !important;
    top: 20px !important;
  }
}

@media (max-width: 576px) {
  .about-experience-badge {
    top: 15px !important;
    left: 15px !important;
    right: auto !important;
    padding: 8px 12px !important;
  }

  .about-experience-badge::before {
    width: 30px;
    height: 30px;
    bottom: 8px;
    left: 4px;
  }

  .about-experience-badge .exact-counter-number .odometer {
    font-size: 80px !important;
  }

  .about-experience-badge .exact-counter-number .suffix {
    font-size: 20px !important;
    margin-top: 2px !important;
  }

  .about-experience-badge .badge-text {
    font-size: 16px !important;
    max-width: 100% !important;
  }
}

/* Our Mission Card */
.mission-card {
  background: linear-gradient(135deg, #1053f3 0%, #0c3eb7 100%);
  border-radius: 24px;
  padding: 45px 50px;
  color: #ffffff;
  box-shadow: 0 20px 40px rgba(16, 83, 243, 0.2);
  position: relative;
  overflow: hidden;
}

.mission-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.mission-quote-icon {
  width: 140px;
  height: 100px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.2rem;
  color: #ffffff;
}

.mission-quote-text {
  font-size: 1.65rem;
  line-height: 1.55;
  font-weight: 400;
  font-style: italic;
}

@media (max-width: 991px) {
  .mission-card {
    padding: 30px 24px !important;
    border-radius: 20px !important;
  }

  .mission-quote-icon {
    width: 80px !important;
    height: 80px !important;
    font-size: 2.4rem !important;
    border-radius: 16px !important;
  }

  .mission-quote-text {
    font-size: 1.25rem !important;
    line-height: 1.5 !important;
  }
}

@media (max-width: 576px) {
  .mission-card {
    padding: 24px 18px !important;
  }

  .mission-quote-icon {
    width: 70px !important;
    height: 70px !important;
    font-size: 2rem !important;
  }

  .mission-quote-text {
    font-size: 1.1rem !important;
    line-height: 1.45 !important;
  }
}

/* Our Approach Cards */
.approach-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 35px 30px;
  height: 100%;
  transition: all 0.35s ease;
}

.approach-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 35px -10px rgba(16, 83, 243, 0.12);
  border-color: rgba(16, 83, 243, 0.3) !important;
}

.approach-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: #1053f3;
  opacity: 0.85;
}

/* What Sets Us Apart Cards - Clean Light Theme Design (No Heavy Shadows / Gradients) */
.feature-box-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 32px 28px;
  height: 100%;
  box-shadow: none;
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.feature-box-item:hover {
  transform: translateY(-5px);
  border-color: #1053f3;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
}

.feature-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #1053f3;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.feature-box-item:hover .feature-icon-circle {
  transform: scale(1.06);
}

.feature-title {
  color: #0f172a !important;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
}

.feature-desc {
  color: #475569 !important;
  font-size: 14.5px;
  line-height: 1.65;
}

.feature-img-wrapper {
  display: none !important;
}

/* Company Credentials Section Background */
#company-credentials {
  background-color: #f8fafc;
  background-image: url("../images/backgrounds/blue-circle-ring-alchotech.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

/* Company Credentials Trust Block */
.trust-block-box {
  background: #ffffff;
  border: 2px solid #cbd5e1;
  border-radius: 24px;
  padding: 45px;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.04);
}

.trust-badge-header {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(16, 83, 243, 0.06);
  color: #1053f3;
  padding: 8px 18px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
}

.trust-item-card {
  position: relative;
  overflow: hidden;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 22px 24px;
  height: 100%;
  transition: all 0.3s ease;
}

.trust-item-card:hover {
  border-color: #1053f3;
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
}

.trust-card-watermark {
  position: absolute;
  bottom: -8px;
  right: 12px;
  font-size: 5.8rem;
  color: #1053f3;
  opacity: 0.12 !important;
  pointer-events: none;
  transition:
    transform 0.4s ease,
    opacity 0.4s ease;
  z-index: 1;
}

.trust-item-card:hover .trust-card-watermark {
  opacity: 0.22;
  transform: scale(1.1) rotate(-5deg);
}

.trust-item-label {
  font-size: 0.82rem;
  text-uppercase: uppercase;
  letter-spacing: 1px;
  color: #64748b;
  font-weight: 600;
}

.trust-item-value {
  font-size: 1.05rem;
  color: #0f172a;
  font-weight: 700;
}

/* Key Metrics Inline Card - Divider Dots Style (Matching Reference Image 1) */
.about-metrics-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.about-metric-item {
  position: relative;
  padding: 8px 0;
}

.about-metric-item:not(:last-child) {
  border-right: 1px solid #e2e8f0;
}

/* Small blue ring/dot on vertical divider line */
.about-metric-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 2px solid #0066ff;
  background: #ffffff;
  z-index: 2;
}

.about-metric-item .exact-counter-number {
  font-size: 42px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", "Outfit", "Inter", sans-serif;
  letter-spacing: -0.5px;
}

.about-metric-item .exact-counter-number .odometer {
  font-family: inherit !important;
  font-size: 70px !important;
  font-weight: 700 !important;
  color: #0066ff !important;
  line-height: 1 !important;
  stroke: none !important;
  -webkit-text-stroke-width: 0 !important;
}

.about-metric-item .exact-counter-number .suffix {
  color: #0f172a;
  font-weight: 800;
  font-size: 32px;
  line-height: 1;
  margin-left: 2px;
}

.about-metric-item .metric-label {
  font-size: 13.5px;
  font-weight: 500;
  color: #64748b;
  margin-top: 4px;
}

@media (max-width: 576px) {
  .about-metric-item .exact-counter-number {
    font-size: 26px;
  }

  .about-metric-item .exact-counter-number .odometer {
    font-size: 26px !important;
  }

  .about-metric-item .exact-counter-number .suffix {
    font-size: 20px;
  }

  .about-metric-item .metric-label {
    font-size: 11px;
  }
}