.content p {
  font-size: 15px;
  color: #777777;
  margin-bottom: 3rem;
  line-height: 1.617em;
}

.gallery-section-12 {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 40px 20px;
}

.gallery-12 {
  display: flex;
  justify-content: center;
  gap: 80px;
  max-width: 1200px;
  width: 100%;
  flex-wrap: wrap;
}

/* CARD */
.card-12 {
  width: 295px;
  height: 300px;
  border-radius: 1px;

  /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15); */
  text-align: center;
}

/* IMAGE */
.card-12 img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  border-style: solid;
  border-color: #dbdbdb;
  border-radius: 5px 5px 5px 5px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
}
.card-12 p {
  margin-top: 25px;
  color: #7a7a7a;
}

/* ✅ Tablet */
@media (max-width: 992px) {
  .card-12 {
    width: 45%; /* 2 per row */
  }
}

/* ✅ Mobile */
@media (max-width: 600px) {
  .card-12 {
    width: 100%; /* 1 per row */
  }
}

/* video section*/
.custom-layout {
  padding: 60px 20px;
  background: #ffffff;
}

/* MAIN FLEX */
.main-box {
  max-width: 1125px;

  margin: auto;
  display: flex;
  gap: 20px;
}

/* LEFT + RIGHT = 50% */
.left-side,
.right-side {
  width: 50%;
  margin-top: 50px;
}

/* VIDEO */
.video-box video {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

/* LEFT CONTENT */
.left-content {
  margin-top: 20px;
  margin-top: 25px;
  color: #7a7a7a;
}


.left-content p {
  margin-bottom: 10px;
  margin-top: 25px;
  color: #7a7a7a;
}

.left-content ul  {
  margin-bottom: 10px;
  
  
  padding-left: 20px;
  list-style-position: inside;
}

/* RIGHT IMAGE ROW */
.image-row {
  display: flex;
  gap: 20px;
}

.img-box {
  width: 50%;
  background: #fff;
  padding: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.img-box img {
  width: 100%;
  height: 200px;
  object-fit: contain;
}

/* RIGHT CONTENT */
.right-content {
  margin-top: 20px;
}

.right-content ul {
  padding-left: 20px;
}

.card-12 ul {
  padding-left: 20px; /* 👈 bullet + text dono shift honge */
  margin-top: 5px;
  list-style-position: inside;
  padding-left: 5px;
  margin-top: 25px;
  color: #7a7a7a;
}

/* ✅ Tablet (<= 992px) */
@media (max-width: 992px) {
  .main-box {
    flex-wrap: wrap; /* 🔥 wrap enable */
  }

  .left-side,
  .right-side {
    width: 100%; /* 🔥 full width */
    margin-top: 20px;
  }

  .video-box video {
    height: auto; /* 🔥 responsive height */
  }

  .image-row {
    justify-content: center;
  }

  .img-box {
    width: 45%; /* 🔥 2 images in one row */
  }
}

/* ✅ Mobile (<= 768px) */
@media (max-width: 768px) {
  .main-box {
    flex-direction: column; /* 🔥 ek ke niche ek */
  }

  .left-side,
  .right-side {
    width: 100%;
  }

  .image-row {
    flex-direction: column; /* 🔥 ek row me ek hi */
    align-items: center;
  }

  .img-box {
    width: 100%; /* 🔥 full width */
  }

  .video-box video {
    height: auto;
  }
}

@media (max-width: 600px) {
  .card-12 {
    width: 100%;
    height: auto; /* 🔥 height hata do taki content niche aaye */
  }

  .card-12 img {
    height: auto; /* 🔥 image responsive ho jaye */
  }

  .card-12 p {
    margin-top: 10px; /* optional spacing */
  }
}
@media (max-width: 768px) {
  .video-box video {
    height: 320px; /* 🔥 height thodi kam kar di */
  }
}
@media (max-width: 768px) {
  .video-box + .left-content {
    text-align: center; /* 🔥 text center */
  }
}