/* Mini-hero spacing (same as homepage) */
.about-hero {
    min-height: 20vh; /* smaller than homepage */
    padding: 12rem 2rem 4rem; /* same top spacing */
  }
  
  /* Smaller title */
  .about-title {
    font-size: clamp(3rem, 8vw, 5rem);
    margin-bottom: 1rem;
    color: #336699 !important;
  }
  
  .about-title::after {
    display: none !important;
  }
  
  
  /* Smaller subtitle */
  .about-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    max-width: 720px;
    margin: 0.5rem auto 0;
    opacity: 0.85;
    color: #475569;
  }
  
  /* ==========WHY CHOOSE US=========== */
  .why-hero {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

 /* =========================================================
   COMPARE SUMMARY — Executive Glass Panel
   ========================================================= */

/* -------------------------------------------------------
   CONTAINER
------------------------------------------------------- */
/* -------------------------------------------------------
   SECTION HEADER
------------------------------------------------------- */

.compare-summary {
  margin: 4rem auto;
  padding: 2rem 1rem;
  max-width: 1100px;
}

/* Title */
.compare-summary-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #336699;
  text-align: center;
  margin-bottom: 0.2rem;
  letter-spacing: -0.5px;
  position: relative;
  padding-bottom: 0.6rem;
}

/* Subtitle */
.compare-summary-description {
  text-align: center;
  color: #475569;
  margin-top: 0.2rem;
  margin-bottom: 3rem;
  font-size: 1.15rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* -------------------------------------------------------
   GRID LAYOUT
------------------------------------------------------- */
.compare-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 2rem;
}
/* -------------------------------------------------------
   CARD BASE STYLE
------------------------------------------------------- */
.compare-card {
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(14px);
  border-radius: 18px;
  border: 1px solid rgba(51,102,153,0.15);
  padding: 1.8rem 1.6rem;
  transition: box-shadow 0.4s ease, border-color 0.4s ease;
  display: flex;
  flex-direction: column;
}

/* Hover glow (light mode) */
.compare-card:hover {
  border-color: rgba(40,80,122,0.45);
  box-shadow: 0 12px 30px rgba(40,80,122,0.22);
}

/* -------------------------------------------------------
   CARD TITLE + UNDERLINE ANIMATION
------------------------------------------------------- */
.compare-card-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #336699;
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: 0.4rem;
}

/* Underline animation under title */
.compare-card-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background: #336699;
  opacity: 0;
  transition: width 0.35s ease, opacity 0.35s ease;
}

.compare-card:hover .compare-card-title::after {
  width: 60%;
  opacity: 1;
}

/* -------------------------------------------------------
   CARD CONTENT
------------------------------------------------------- */
.compare-card-content p {
  margin: 0.4rem 0;
  font-size: 1.1rem;
  color: #475569;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(51,102,153,0.12);
}

/* Labels (no underline here anymore) */
.compare-label {
  font-weight: 600;
  color: #28507a;
}

/* -------------------------------------------------------
   GLOSSARY
------------------------------------------------------- */

