/* =========================
   SMART VISION DESIGN
========================= */

.vision-modern{
  padding: 90px 0;
  background:
    radial-gradient(900px 420px at 15% 0%, rgba(30,198,198,.12), transparent 60%),
    linear-gradient(180deg,#f6fffb 0%, #ffffff 100%);
}

.vision-card{
  max-width: 900px;
  margin: auto;
  padding: 50px 40px;
  text-align: center;
  background: #ffffff;
  border-radius: 26px;
  position: relative;
  box-shadow: 0 24px 60px rgba(0,0,0,.08);
  transition: .35s ease;
}

/* Thin green frame on hover */
.vision-card::before{
  content:"";
  position:absolute;
  inset: 14px;
  border-radius: 20px;
  border: 1.5px solid rgba(30,198,198,.45);
  opacity: 0;
  transition: .35s ease;
}

.vision-card:hover::before{
  opacity: 1;
}

/* Icon */
.vision-icon{
  width: 74px;
  height: 74px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: rgba(30,198,198,.15);
  display: grid;
  place-items: center;
}

.vision-icon img{
  width: 38px;
}

/* Badge */
.vision-badge{
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: .6px;
  color: #0c6e6d;
  background: rgba(30,198,198,.15);
  margin-bottom: 16px;
}

/* Title */
.vision-title{
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 900;
  color: #003436;
  margin-bottom: 18px;
}

.vision-title span{
  color: #1ec6c6;
}

/* Text */
.vision-text{
  max-width: 760px;
  margin: auto;
  font-size: 17px;
  line-height: 1.75;
  font-weight: 600;
  color: #4b5f5f;
}

/* Hover lift */
.vision-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 34px 80px rgba(0,0,0,.12);
}

/* Mobile */
@media(max-width:600px){
  .vision-card{
    padding: 36px 22px;
  }
}






/* ===============================
   MANAGEMENT TESTIMONIAL (FINAL)
================================ */

.mgmt-section{
  padding:80px 0;
  background:#f1f3f3;
}

/* LEFT */
.mgmt-left{
  padding:0 40px;
}
.mgmt-badge{
  font-size:12px;
  font-weight:800;
  letter-spacing:.8px;
  color:#0c6e6d;
}
.mgmt-title{
  font-size:36px;
  font-weight:900;
  color:#003436;
  margin:10px 0 12px;
}
.mgmt-desc{
  font-size:15.5px;
  line-height:1.7;
  color:#4b5f5f;
}

/* CARD */
.mgmt-card{
  padding:22px;
}

/* Bubble */
.mgmt-bubble{
  position:relative;
  background:#ffffff;
  padding:28px 28px 36px;
  border-radius:18px;
  box-shadow:0 14px 34px rgba(0,0,0,.12);
  border:2px solid transparent;
  transition:.3s ease;
}

/* Tail */
.mgmt-bubble::after{
  content:"";
  position:absolute;
  bottom:-14px;
  left:50%;
  transform:translateX(-50%);
  width:0;
  height:0;
  border-left:14px solid transparent;
  border-right:14px solid transparent;
  border-top:14px solid #ffffff;
}

/* Green accent */
.mgmt-bubble::before{
  content:"";
  position:absolute;
  bottom:0;
  left:0;
  width:110px;
  height:10px;
  background:#0c6e6d;
  border-radius:0 10px 0 18px;
}



/* TEXT */
.mgmt-text{
  font-size:15.5px;
  line-height:1.8;
  color:#5a6f6f;
  margin:0;
}

/* AUTHOR */
.mgmt-author{
  margin-top:30px;
  display:flex;
  align-items:center;
  gap:14px;
  justify-content:center;
}
.mgmt-photo{
  width:64px;
  height:64px;
  border-radius:50%;
  overflow:hidden;
  border:3px solid #fff;
  box-shadow:0 6px 18px rgba(0,0,0,.2);
}
.mgmt-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.mgmt-info h4{
  margin:0;
  font-size:15.5px;
  font-weight:800;
  color:#003436;
}
.mgmt-info span{
  font-size:13.5px;
  color:#7a8c8c;
}

/* 👉 HOVER – ONLY ONE CARD */
.mgmt-item:hover .mgmt-bubble{
  border-color:#0c6e6d;
  box-shadow:0 24px 56px rgba(12,110,109,.28);
  transform:translateY(-6px);
}

/* MOBILE */
@media(max-width:768px){
  .mgmt-left{padding:0 20px 30px;}
  .mgmt-title{font-size:28px;}
}


/* ===============================
   QUOTATION MARK INSIDE BUBBLE
================================ */

.mgmt-card{
  position: relative;
}

/* Big quotation mark */
.mgmt-card::after{
  content: "“";
  position: absolute;
  right: 28px;
  bottom: 22px;
  font-size: 90px;
  font-weight: 900;
  color: rgba(0, 128, 128, 0.12); /* soft green */
  font-family: serif;
  line-height: 1;
  pointer-events: none;
}


.mgmt-card:hover::after{
  color: rgba(0, 128, 128, 0.25);
}

