﻿.vm-sec{
  padding:30px 20px;
  background:#f9f7f3;
}

/* ===== HEADING ===== */
.vm-head{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:15px;
  margin-bottom:40px; 
}

.vm-card:hover{
  transform:translateY(-6px);

  box-shadow:
    0 18px 40px rgba(0,0,0,0.06),
    0 0 0 1px rgba(201,167,77,0.15);
}

.vm-head span{
  flex:1;
  height:1px;
  max-width:120px;
  background:#e5e5e5;
}

.vm-head h3{
  font-size:16px;
  letter-spacing:2px;
  color:#2f5d50;
}

/* ===== GRID ===== */
.vm-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
  max-width:1100px;
  margin:auto;
}

/* ===== CARD ===== */
.vm-card{
  position:relative;
  text-align:center;

  background:rgba(255,255,255,0.75);
  backdrop-filter:blur(10px);

  padding:30px 25px;
  border-radius:14px;

  border:1px solid rgba(0,0,0,0.05);
  box-shadow:0 10px 30px rgba(0,0,0,0.04);

  transition:all 0.35s ease;
}

/* GOLD LINE */
.vm-top-line{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:3px;
  background:linear-gradient(to right,#c9a74d,#e6c873,#c9a74d);
  border-radius:14px 14px 0 0;
}

/* ICON */
.vm-icon{
  display:flex;
  justify-content:center;
  align-items:center;
  margin-bottom:18px;
}

.vm-icon svg{
  width:36px;
  height:36px;
  stroke:#c9a74d;
  fill:none;
  stroke-width:1.4;
}

.vm-card:hover .vm-icon svg{
  transform:scale(1.08);
  transition:0.3s;
}

/* TITLE */
.vm-card h4{
  font-size:12px;
  letter-spacing:2.2px;
  color:#c9a74d;
  margin-bottom:12px;
  font-weight:600;
}

/* TEXT */
.vm-card p{
  font-size:14px;
  color:#000;
  line-height:1.7;
  max-width:260px;
  margin:auto;
}

/* HOVER */
.vm-card:hover{
  transform:translateY(-8px);

  box-shadow:
    0 20px 50px rgba(0,0,0,0.08),
    0 0 0 1px rgba(201,167,77,0.2);
}

.vm-card:hover .vm-top-line{
  box-shadow:0 0 12px rgba(201,167,77,0.4);
}

@media(max-width:768px){

  .vm-grid{
    display:grid;
    grid-template-columns:1fr; /* ✅ one below another */
    gap:16px;
  }

  .vm-card{
    width:100%;
    padding:22px;
    border-radius:12px;
  }
   .vm-sec{
    padding:50px 15px;
  }

   


}