.photomantra-b1{
  background:#5a024d;
  color:#fff;
  font-family:Arial, Helvetica, sans-serif;
}

/* CONTAINER (DESKTOP DEFAULT) */
.photomantra-b2{
  width:95%;
  max-width:1500px;
  margin:auto;
  padding:50px 0;
}

/* GRID */
.photomantra-b3{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:26px;
}

/* CARD */
.photomantra-b4{
  background:#881e1b;
  border:1px solid #881e1b;
  padding:36px 28px;
  text-align:center;
  position:relative;
  transition:0.35s ease;
  display:flex;
  flex-direction:column;
  justify-content:center;
  border-radius: 16px;
}

.photomantra-b4:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 40px rgba(255, 255, 255, 0.6);
}

/* ICON */
.photomantra-b5{
  width:62px;
  height:62px;
  margin:0 auto 18px;
  
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:30px;
  color:#f4a300;
}

/* TITLE */
.photomantra-b6{
  font-size:18px;
  font-weight:500;
  margin-bottom:12px;
  line-height:1.35;
  color: #DDB68D;
}

/* TEXT */
.photomantra-b7{
  font-size:13.5px;
  color:#bdbdbd;
  line-height:1.6;
  margin-bottom:18px;
}

/* BUTTON */
.photomantra-b8{
  margin-top:auto;
  padding:11px 22px;
  background:#FFEABD;
  color:#000000;

  font-size:12px;
  letter-spacing:1px;
  cursor:pointer;
  border-radius: 8px;
}

/* ================= BREAKPOINTS ================= */

/* Tablet */
@media (max-width:1024px){
  .photomantra-b3{
    grid-template-columns:repeat(3,1fr);
  }
}

/* Mobile */
@media (max-width:768px){
  .photomantra-b3{
    grid-template-columns:repeat(2,1fr);
    gap:16px;
  }
}

/* ===== PERFECT MOBILE WIDTH FIX ===== */
@media (max-width:576px){
  .photomantra-b2{
    width:96%;            /* EXACT WIDTH */
    padding:30px 0;
  }

  .photomantra-b4{
    aspect-ratio:1 / 1;   /* PERFECT SQUARE */
    padding:16px;
  }

  .photomantra-b5{
    width:40px;
    height:40px;
    font-size:24px;
    margin-bottom:10px;
  }

  .photomantra-b6{
    font-size:14.5px;
    margin-bottom:8px;
  }

  .photomantra-b7{
    font-size:12px;
  }

  .photomantra-b8{
    font-size:11px;
    padding:8px 14px;
  }
}
@media (max-width:390px){
  .photomantra-b2{
    width:96vw;          /* viewport-locked */
  }

  .photomantra-b3{
    gap:12px;
  }

  .photomantra-b4{
    aspect-ratio:1 / 1;
    padding:12px;
  }

  .photomantra-b5{
    width:40px;
    height:40px;
    font-size:22px;
  }

  .photomantra-b6{
    font-size:14px;
  }

  .photomantra-b7{
    font-size:11.5px;
  }

  .photomantra-b8{
    font-size:10.5px;
    padding:7px 12px;
  }
}

/* ===== ULTRA SMALL (320px SAFE) ===== */
@media (max-width:340px){
  .photomantra-b6{font-size:13px;}
  .photomantra-b7{font-size:11px;}
}
/* Very Small Devices */
@media (max-width:380px){
  .photomantra-b2{
    width:96%;
  }
}