/* Vission Section CSS  */
.vision-section {
  padding: 100px 20px;
  background: radial-gradient(60% 60% at 50% 40%,
      rgba(199, 240, 255, 0.35),
      #ffffff 70%);
  overflow: hidden;
}

/* ---------- Header ---------- */
.vision-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 80px;
}

.vision-tag {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: #1bb3c7;
  margin-bottom: 14px;
}

.vision-heading {
  font-size: 44px;
  font-weight: 700;
  color: #0b2545;
  line-height: 1.25;
}

/* ---------- Content Grid ---------- */
.vision-container {
  /* padding: 0px 5%; */
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 460px 1fr;
  gap: 70px;
  align-items: center;
}

.vision-left,
.vision-right {
  font-size: 16px;
  line-height: 1.8;
  color: #4a5c6a;
}

/* ---------- Image Card ---------- */
.vision-image {
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(180deg,
      rgba(198, 253, 255, 0.7),
      rgba(207, 232, 255, 0.7));
  box-shadow:
    0 30px 60px rgba(94, 212, 255, 0.18),
    0 0 80px rgba(94, 212, 255, 0.25);
}

.vision-image img {
  width: 100%;
  border-radius: 16px;
  display: block;
}

/* ---------- Tablet ---------- */
@media (max-width: 1024px) {
  .vision-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .vision-image {
    order: 0;
    max-width: 480px;
    margin: 0 auto 40px;
  }
}

/* ---------- Mobile ---------- */
@media (max-width: 600px) {
  .vision-section {
    padding: 60px 20px;
  }

  .vision-heading {
    font-size: 32px;
  }

  .vision-left,
  .vision-right {
    font-size: 15px;
  }

  .vision-header {
    margin-bottom: 60px;
  }
}


.why-section {
  padding: 100px 20px;
  background: #ffffff;
  overflow: hidden;
}

.why-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #0b2545;
  margin-bottom: 70px;
}

/* Cards Grid */
.why-cards {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* Card */
.why-card {
  position: relative;
  background: #ffffff;
  border-radius: 28px;
  padding: 36px 32px;
  z-index: 1;
}

/* Gradient Border */
.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 28px;

  /* Border widths: top right bottom left */
  padding: 16px 4px 2px 4px;

  background: linear-gradient(125.39deg,
      #91E5DA 2.73%,
      #819BE4 79.28%);

  /* Mask magic */
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
}


/* Icon */
.why-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: #eafcff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.why-icon img {
  width: 28px;
  height: 28px;
}

/* Text */
.why-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #0b2545;
  margin-bottom: 16px;
}

.why-card p {
  font-size: 15px;
  line-height: 1.8;
  color: #5a6b7a;
}

/* Tablet */
@media (max-width: 1024px) {
  .why-cards {
    grid-template-columns: 1fr 1fr;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .why-section {
    padding: 60px 20px;
  }

  .why-title {
    font-size: 30px;
  }

  .why-cards {
    grid-template-columns: 1fr;
  }
}

/* ================================
   SUCCESS BY THE NUMBERS SECTION
================================ */

.stats-section {
  padding: 120px 20px;
  background: #ffffff;
  overflow: hidden;
}

/* ---------- Header ---------- */
.stats-header {
  max-width: 1194px;
  margin: 0 auto 80px;
}

.stats-header h2 {
  font-family: 'Satoshi Variable', sans-serif;
  font-weight: 900;
  font-size: 60px;
  line-height: 110%;
  color: #013A70;
  margin-bottom: 20px;
}

.stats-header p {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 160%;
  color: #65737E;
  max-width: 560px;
}

/* ---------- Cards Wrapper ---------- */
.stats-cards-wrapper {
  position: relative;
  max-width: 1194px;
  margin: auto;
}

/* ---------- Glow Background (Figma BG) ---------- */
.stats-bg {
  position: absolute;
  width: 1094px;
  height: 112px;
  left: 50%;
  top: 60px;
  transform: translateX(-50%);
  border-radius: 10px;

  background:
    radial-gradient(96.07% 101.33% at 3.93% 70.38%,
      #41FFD6 10.42%,
      #02DAEA 55.91%,
      #8881EF 100%);

  opacity: 0.4;
  filter: blur(100px);
  z-index: 0;
}

/* ---------- Cards Grid ---------- */
.stats-cards {
  position: relative;
  z-index: 1;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 38px;
}

/* ---------- Individual Card ---------- */
.stat-card {
  height: 204px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 12px;

  box-shadow:
    24.8083px 1.90833px 57.25px -1.90833px rgba(106, 50, 237, 0.1);

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* ---------- Number ---------- */
.stat-number {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 500;
  font-size: 60px;
  line-height: 66px;
  color: #010E17;
}

/* ---------- Label ---------- */
.stat-label {
  margin-top: 8px;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  color: #65737E;
}

/* ================================
   RESPONSIVE
================================ */

/* Tablet */
@media (max-width: 1200px) {
  .stats-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-bg {
    width: 90%;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .stats-section {
    padding: 60px 20px;
  }

  .stats-header h2 {
    font-size: 36px;
  }

  .stats-header p {
    font-size: 16px;
  }

  .stats-cards {
    grid-template-columns: 1fr;
  }

  .stat-number {
    font-size: 48px;
  }
}

/* =========================
   Philosophy Section
========================= */

.philosophy {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 20px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  grid-template-rows: auto auto 1fr;
  column-gap: 40px;
  row-gap: 30px;
  font-family: "Inter", sans-serif;
  overflow: hidden;
}

/* =========================
   Header
========================= */

.philosophy-header {
  grid-column: 1 / -1;
  text-align: center;
  margin-bottom: 60px;
}

.philosophy-header span {
  display: block;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 600;
  color: #00a6b6;
  margin-bottom: 8px;
}

.philosophy-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: #0b2b4c;
}

/* =========================
   Image + Background
========================= */

.image-pattern {
  position: absolute;
  left: -40px;
  top: 130px;
  width: 560px;
  z-index: 0;
  opacity: 0.9;
}

.image-gradient-card {
  position: absolute;
  left: 0;
  top: 280px;
  width: 520px;
  height: 360px;
  border-radius: 16px;
  background: linear-gradient(135deg,
      rgba(198, 253, 255, 0.6),
      rgba(207, 232, 255, 0.6));
  z-index: 0;
}

.philosophy-image {
  position: relative;
  grid-row: 2 / 4;
  z-index: 1;
}

.philosophy-image img {
  width: 520px;
  max-width: 100%;
  border-radius: 16px;
  display: block;
}

/* =========================
   Description
========================= */

.philosophy-desc {
  grid-column: 2;
  font-size: 16px;
  line-height: 1.7;
  color: #4b5d73;
  max-width: 480px;
}

/* =========================
   Features
========================= */

.philosophy-features {
  grid-column: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 10px;
}

.feature-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 26px 22px;
  border: 1px solid #eef3f7;
  box-shadow: 0 12px 30px rgba(15, 35, 60, 0.05);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 166, 182, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.feature-icon img {
  width: 22px;
  height: 22px;
}

.feature-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: #0b2b4c;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #5b6f86;
}

/* =========================
   Responsive
========================= */

@media (max-width: 992px) {
  .philosophy {
    grid-template-columns: 1fr;
    padding: 80px 20px;
  }

  .philosophy-image,
  .philosophy-desc,
  .philosophy-features {
    grid-column: 1;
  }

  .image-gradient-card,
  .image-pattern {
    display: none;
  }

  .philosophy-image img {
    margin: 0 auto;
  }

  .philosophy-desc {
    text-align: center;
    margin: 0 auto;
  }

  .philosophy-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .philosophy {
    padding: 60px 20px;
  }

  .philosophy-header h2 {
    font-size: 32px;
  }
}


/* =========================
   TEAM SECTION
========================= */

.team-section {
  padding: 140px 20px;
  background: #ffffff;
  overflow: hidden;
}

.team-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 80px;
  align-items: center;
}

/* -------------------------
   LEFT CONTENT
-------------------------- */

.team-tag {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #15989C;
}

.team-title {
  font-family: 'Satoshi Variable', sans-serif;
  font-weight: 700;
  font-size: 45px;
  line-height: 141%;
  color: #010E17;
  margin: 16px 0 24px;
}

.team-description {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 160%;
  color: #65737E;
  margin-bottom: 20px;
}

.team-highlight {
  font-family: 'Satoshi Variable', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 160%;

  background: linear-gradient(93.86deg,
      #014980 8.18%,
      #078285 64.76%,
      #013A70 100.23%);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* -------------------------
   RIGHT VISUAL AREA
-------------------------- */

.team-right {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 48 / 46;
  height: auto;
}

/* Glow Effects */
.team-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.glow-1 {
  width: 75%;
  height: 39.13%;
  background: #66A8FF;
  opacity: 0.6;
  top: 8.7%;
  left: 16.66%;
}

.glow-2 {
  width: 66.66%;
  height: 47.82%;
  background: #1BBABF;
  opacity: 0.5;
  bottom: 8.7%;
  left: 8.33%;
}

.glow-3 {
  width: 62.5%;
  height: 39.13%;
  background: #ADE6FF;
  opacity: 0.6;
  top: 0;
  right: 4.16%;
}

/* -------------------------
   AVATARS
-------------------------- */

.team-avatar {
  position: absolute;
  border-radius: 50%;
  object-fit: cover;
}

/* Sizes */
.size-lg {
  width: 20.62%;
  height: auto;
  aspect-ratio: 1;
}

.size-md {
  width: 18.12%;
  height: auto;
  aspect-ratio: 1;
}

.size-sm {
  width: 15.83%;
  height: auto;
  aspect-ratio: 1;
}

.size-xs {
  width: 12.91%;
  height: auto;
  aspect-ratio: 1;
}

/* Positions */
.pos-1 {
  left: 51.45%;
  top: 39.13%;
}

.pos-2 {
  left: 78.95%;
  top: 44.13%;
}

.pos-3 {
  left: 62.08%;
  top: 68.47%;
}

.pos-4 {
  left: 21.04%;
  top: 78.26%;
}

.pos-5 {
  left: 37.50%;
  top: 61.30%;
}

.pos-6 {
  left: 18.95%;
  top: 48.04%;
}

.pos-7 {
  left: 31.66%;
  top: 29.78%;
}

.pos-8 {
  left: 76.45%;
  top: 25.43%;
}

.pos-9 {
  left: 51.45%;
  top: 10.86%;
}

.pos-10 {
  left: 14.79%;
  top: 5.00%;
}

/* -------------------------
   RESPONSIVE
-------------------------- */

@media (max-width: 1024px) {
  .team-container {
    grid-template-columns: 1fr;
  }

  .team-left {
    text-align: center;
  }

  .team-description {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  .team-right {
    margin-top: 60px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 600px) {
  .team-section {
    padding: 60px 20px;
  }

  .team-title {
    font-size: 32px;
  }
}
/* Premium Bio Section Styling */
.bio-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    max-width: 1000px;
    margin: 60px auto;
    padding: 40px;
    background: linear-gradient(135deg, #ffffff 0%, #f4f9f9 100%);
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(7, 43, 70, 0.08);
    border: 1px solid rgba(21, 152, 156, 0.15);
    transition: transform 0.3s ease;
}
.bio-section:hover {
    transform: translateY(-5px);
}
@media (min-width: 768px) {
    .bio-section {
        flex-direction: row;
        align-items: stretch;
        padding: 50px;
    }
}

.bio-image {
    flex-shrink: 0;
    position: relative;
}
.bio-image img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #ffffff;
    box-shadow: 0 15px 35px rgba(7, 43, 70, 0.15);
    transition: all 0.4s ease;
}
.bio-image::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #15989C 0%, transparent 50%, #072B46 100%);
    z-index: -1;
    opacity: 0.6;
    animation: rotateGradient 10s linear infinite;
}
@keyframes rotateGradient {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.bio-image:hover img {
    transform: scale(1.05);
    box-shadow: 0 20px 45px rgba(21, 152, 156, 0.3);
}
@media (min-width: 768px) {
    .bio-image img {
        width: 300px;
        height: 300px;
    }
}

.bio-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.bio-content h1 {
    font-size: 2.5rem;
    color: #072B46;
    margin-bottom: 5px;
    font-weight: 700;
}
.bio-content h2 {
    font-size: 1.25rem;
    color: #15989C;
    margin-bottom: 25px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.bio-content p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 20px;
}

.bio-socials {
    margin-top: auto;
    display: flex;
    gap: 15px;
}
.bio-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #072B46;
    color: #ffffff;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 15px rgba(7, 43, 70, 0.2);
}
.bio-socials a:hover {
    background-color: #15989C;
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(21, 152, 156, 0.4);
}

/* ==========================================================================
   Premium UI Profile Design (Samim Mondal)
   ========================================================================== */
.premium-profile-wrapper {
    position: relative;
    overflow: hidden;
    background-color: #f8fafc;
    padding: 80px 20px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
}

/* Abstract Background Shapes */
.premium-bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.5;
    animation: float 20s ease-in-out infinite;
}
.shape-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(21,152,156,0.15) 0%, rgba(21,152,156,0) 70%);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}
.shape-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(7,43,70,0.1) 0%, rgba(7,43,70,0) 70%);
    bottom: -150px;
    left: -150px;
    animation-delay: -5s;
}
.shape-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(21,152,156,0.1) 0%, rgba(21,152,156,0) 70%);
    top: 50%;
    left: 20%;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

/* Main Profile Container */
.premium-profile {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}
@media (min-width: 992px) {
    .premium-profile {
        grid-template-columns: 1fr 1fr;
    }
}

/* Left Content Area */
.profile-content-area {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.profile-badge {
    display: inline-block;
    align-self: flex-start;
    padding: 8px 16px;
    background: rgba(21, 152, 156, 0.1);
    color: #15989C;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 1px solid rgba(21, 152, 156, 0.2);
}
.profile-name {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 800;
    color: #072B46;
    line-height: 1.1;
    margin: 0;
    letter-spacing: -1px;
}
.text-gradient {
    background: linear-gradient(135deg, #072B46 0%, #15989C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Quote Card (Glassmorphism) */
.profile-quote-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-left: 4px solid #15989C;
    padding: 24px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    position: relative;
    margin: 10px 0;
}
.quote-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 2rem;
    color: rgba(21, 152, 156, 0.15);
    z-index: 0;
}
.quote-text {
    position: relative;
    z-index: 1;
    font-size: 1.15rem;
    font-weight: 500;
    color: #072B46;
    font-style: italic;
    margin: 0;
    line-height: 1.6;
}

/* Bio Text */
.profile-bio-text p {
    font-size: 1.125rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 16px;
}
.profile-bio-text p:last-child {
    margin-bottom: 0;
}

/* Call to Action */
.profile-actions {
    margin-top: 10px;
}
.premium-social-btn {
    display: inline-flex;
    align-items: center;
    background: #072B46;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    padding: 6px 24px 6px 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(7, 43, 70, 0.2);
}
.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    margin-right: 15px;
    transition: transform 0.3s ease;
}
.premium-social-btn:hover {
    background: #15989C;
    box-shadow: 0 15px 30px rgba(21, 152, 156, 0.3);
    transform: translateY(-2px);
    color: white;
}
.premium-social-btn:hover .btn-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Right Image Area */
.profile-image-area {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.image-wrapper-3d {
    position: relative;
    width: 100%;
    max-width: 450px;
    aspect-ratio: 1 / 1;
    perspective: 1000px;
}
.image-glow-ring {
    position: absolute;
    inset: -15px;
    background: conic-gradient(from 0deg, #15989C, #072B46, #4facfe, #15989C);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    filter: blur(20px);
    opacity: 0.6;
    animation: morphRing 15s linear infinite;
}
@keyframes morphRing {
    0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; transform: rotate(0deg); }
    50% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; transform: rotate(180deg); }
    100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; transform: rotate(360deg); }
}

.main-portrait {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    position: relative;
    z-index: 2;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 8px solid white;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.image-wrapper-3d:hover .main-portrait {
    transform: scale(1.03) rotateY(-5deg) rotateX(5deg);
}

/* Floating Glass Card */
.floating-glass-card {
    position: absolute;
    bottom: 30px;
    left: -30px;
    z-index: 3;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    padding: 16px 24px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    animation: floatCard 6s ease-in-out infinite;
}
@media (max-width: 768px) {
    .floating-glass-card {
        bottom: -20px;
        left: 20px;
        right: 20px;
        justify-content: center;
    }
}
@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}
.glass-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #072B46, #15989C);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 8px 16px rgba(21, 152, 156, 0.3);
}
.glass-text {
    display: flex;
    flex-direction: column;
}
.glass-title {
    font-weight: 800;
    color: #072B46;
    font-size: 1.1rem;
}
.glass-subtitle {
    color: #64748b;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

