
/* PCL Form Card */
.pcl-form-card {
  width: 100%;
  max-width: 550px;
  background: #1e232a;
  padding: 45px 35px;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.pcl-sub-heading {
  color: #a0a5b5;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.pcl-heading {
  color: #ffffff;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 12px;
}

.pcl-heading span {
  font-weight: 800;
}

.pcl-accent-bar {
  width: 40px;
  height: 4px;
  background-color: #8a2be2;
  margin-bottom: 30px;
}

/* PCL Form Layout */
.pcl-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 25px;
}

.pcl-form-group input,
.pcl-form-group select {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid transparent;
  outline: none;
  border-radius: 3px;
  background: #ffffff;
  font-size: 14px;
  color: #000000;
  font-weight: 500;
}

.pcl-form-group select {
  background: #e9ecef;
  color: #000000;
  font-weight: 600;
  cursor: pointer;
}

.pcl-form-group input::placeholder {
  color: #999999;
}

/* PCL Submit Button */
#pclSubmitBtn {
  background-color: #fc0000;
  color: #ffffff;
  border: none;
  padding: 13px 35px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 3px;
  transition: background-color 0.4s ease;
}

#pclSubmitBtn:hover {
  background-color: #ac0000;
}


/* মডাল ডিফল্ট অবস্থায় হাইড থাকবে */
.pcl-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

/* যখন pcl-active ক্লাস যোগ হবে তখনই শুধু দেখাবে */
.pcl-modal-overlay.pcl-active {
  display: flex !important;
}

.pcl-modal-card {
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 8px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  transform: translateY(-20px);
  transition: transform 0.3s ease;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.pcl-modal-overlay.pcl-active .pcl-modal-card {
  transform: translateY(0);
}

.pcl-checkmark-icon {
  width: 60px;
  height: 60px;
  background: #28a745;
  color: #ffffff;
  font-size: 32px;
  line-height: 60px;
  border-radius: 50%;
  margin: 0 auto 15px auto;
}

.pcl-modal-card h3 {
  color: #222222;
  font-size: 22px;
  margin-bottom: 10px;
}

.pcl-modal-card p {
  color: #666666;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 25px;
}

#pclCloseModalBtn {
  background-color: #222222;
  color: #ffffff;
  border: none;
  padding: 10px 25px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 3px;
  cursor: pointer;
}

#pclCloseModalBtn:hover {
  background-color: #444444;
}

/* Responsive Grid */
@media (max-width: 500px) {
  .pcl-form-grid {
    grid-template-columns: 1fr;
  }
}