.no-scroll{
  overflow: hidden;
}
.donate-hosp {
  margin-top: 30px;
  position: relative;
}
.donate-hosp img {
  width: 100%;
  border-radius: 30px;
}
.donate-hosp .overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(to right, rgba(0, 0, 0, 1), transparent); */
  background: linear-gradient(
    to left,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.4) 30%,
    transparent 100%
  );
  border-radius: 30px;
}
.donate-hosp .overlay-in {
  position: absolute;
  top: 50px;
  right: 50px;
}
.donate-hosp .overlay-in h1 {
  text-align: center;
  padding-right: 50px;
  color: white;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 25px;
}
.donate-hosp .overlay-in p {
  text-align: center;
  padding-right: 50px;
  color: white;
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
  margin-bottom: 25px;
}
.section-title-donate {
  display: none;
}
.st-johns-corporate-donate-listing-container {
  display: flex;
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px;
}

.st-johns-corporate-donate-listing-filter-section {
  min-width: 280px;
  margin-right: 30px;
}

.st-johns-corporate-donate-listing-filter-content {
  background-color: white;
  border-radius: 30px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.st-johns-corporate-donate-listing-filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.st-johns-corporate-donate-listing-filter-header h2 {
  font-weight: 600;
  color: #2A2E6D;
  font-size: 16px;
}

.st-johns-corporate-donate-listing-clear-all {
  color: #017CCC;
  cursor: pointer;
  font-size: 14px;
}

.st-johns-corporate-donate-listing-filter-options {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.st-johns-corporate-donate-listing-categories-title {
  font-weight: 400;
  margin-bottom: 20px;
  color: #2A2E6D;
  font-size: 16px;
}

.st-johns-corporate-donate-listing-filter-checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
}

.st-johns-corporate-donate-listing-filter-checkbox input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #25317b;
  border-radius: 4px;
  background-color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.st-johns-corporate-donate-listing-filter-checkbox
  input[type="checkbox"]:checked {
  background-color: #25317b;
}

.st-johns-corporate-donate-listing-filter-checkbox
  input[type="checkbox"]:checked::after {
  content: "✓";
  color: white;
  font-size: 14px;
  font-weight: bold;
}

.st-johns-corporate-donate-listing-filter-checkbox label {
  font-size: 14px;
  color: #2C2C2C;
  text-align: justify;
  font-weight: 400;
}


.st-johns-corporate-donate-listing-cards-section {
  flex-grow: 1;
}

.st-johns-corporate-donate-listing-cards-container {
  display: grid;
  gap: 25px;
}

.st-johns-corporate-donate-listing-card {
  background-color: white;
  border-radius: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.st-johns-corporate-donate-listing-card:hover
  .st-johns-corporate-donate-listing-image-overlay {
  opacity: 1;
}

.st-johns-corporate-donate-listing-card-image-container {
  position: relative;
  height: 220px;
}

.st-johns-corporate-donate-listing-card-image {
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  transition: all 0.3s ease;
}

.st-johns-corporate-donate-listing-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 78%);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.st-johns-corporate-donate-listing-card-image-container:hover
  .st-johns-corporate-donate-listing-image-overlay {
  opacity: 1;
}

.st-johns-corporate-donate-listing-know-more-btn {
  text-decoration: underline;
  background-color: transparent;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-size: 16px;
}

.st-johns-corporate-donate-listing-card-content {
  padding: 20px;
}

.st-johns-corporate-donate-listing-card-content h3 {
  margin-bottom: 10px;
  color: #222;
  font-weight: 600;
  font-size: 22px;
  display: -webkit-box;
  height: 60px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.st-johns-corporate-donate-listing-card-content p {
  color: #555;
  margin-bottom: 30px;
  font-size: 16px;
  height: auto;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.st-johns-corporate-donate-listing-donate-btn {
  width: max-content;
  padding: 6px 20px;
  background-color: #0E9BFF;
  color: white;
  border: none;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  border-radius: 25px;
  transition: all 0.3s ease;
  font-weight: 300;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.st-johns-corporate-donate-listing-donate-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-bottom: 5px;
  font-size: 30px;
  font-weight: 300;
  margin-left: 20px;
}

.st-johns-corporate-donate-listing-mobile-filter-toggle {
  display: none;
  background-color: inherit;
  color: #2a2e6d;
  padding: 12px;
  text-align: left;
  cursor: pointer;
  font-weight: 500;
  margin-bottom: 15px;
}

/* Mobile filter dropdown - modified to position absolute */
.st-johns-corporate-donate-listing-mobile-filter-dropdown {
  display: none;
  position: absolute;
  top: 52px; /* Adjusted to appear right below the toggle button */
  left: 0;
  right: 0;
  z-index: 100;
  background-color: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  margin: 0 20px;
}

/* Popup Styles */
.st-johns-corporate-donate-listing-popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.st-johns-corporate-donate-listing-popup-content {
  background-color: white;
  width: 90%;
  max-width: 887px;
  border-radius: 12px;
  padding: 0px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  text-align: center;
}

.st-johns-corporate-donate-listing-popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.st-johns-corporate-donate-listing-popup-header h2 {
  margin: 0;
  font-size: 1.5rem;
  color: #222;
}

.st-johns-corporate-donate-listing-popup-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #888;
}

.st-johns-corporate-donate-listing-donation-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.st-johns-corporate-donate-listing-donation-form input,
.st-johns-corporate-donate-listing-donation-form select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
}

.st-johns-corporate-donate-listing-donation-form button {
  background-color: #3498ff;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-weight: 600;
  font-size: 1.1rem;
  margin-top: 10px;
}

.st-johns-corporate-donate-listing-donation-form button:hover {
  background-color: #2080e9;
}

/* Mobile container */
.st-johns-corporate-donate-listing-mobile-container {
  display: none;
  position: relative;
  margin-bottom: 15px;
}
.margin-bottom{
    margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .st-johns-corporate-donate-listing-container {
    flex-direction: column;
  }

  .st-johns-corporate-donate-listing-filter-section {
    display: none;
  }

  .st-johns-corporate-donate-listing-mobile-container {
    display: block;
  }

  .st-johns-corporate-donate-listing-mobile-filter-toggle {
    margin-top: 20px;
    margin-bottom: 0;
    display: flex;
    justify-content: left; /* horizontally center */
    align-items: center; /* vertically center (if there's height) */
    text-align: center; /* for text inside */
  }

  .st-johns-corporate-donate-listing-mobile-filter-toggle img {
    margin-left: 10px;
  }
  .st-johns-corporate-donate-listing-mobile-filter-dropdown {
    display: none;
  }

  .st-johns-corporate-donate-listing-mobile-filter-dropdown.active {
    display: block;
  }

  .st-johns-corporate-donate-listing-cards-container {
    grid-template-columns: 1fr;
  }
  .donate-hosp .overlay-in {
    right: 10px;
  }
  #st-johns-corporate-know-more-popup .popup-content {
    overflow-y: scroll;
    height: 500px;
    overflow-x: hidden;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .st-johns-corporate-donate-listing-cards-container {
    grid-template-columns: repeat(1, 1fr);
  }
  #st-johns-corporate-know-more-popup .popup-content {
    overflow-y: scroll;
    height: 500px;
    overflow-x: hidden;
  }
}

@media screen and (min-width: 992px) and (max-width: 1240px) {
  .st-johns-corporate-donate-listing-cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
  #st-johns-corporate-know-more-popup .modal-content {
    padding: 2rem 2rem !important;
  }
}
@media screen and (max-width: 1024px) {
  #st-johns-corporate-know-more-popup .modal-content {
    padding: 2rem 2rem !important;
  }
}
@media screen and (min-width: 1241px) {
  .st-johns-corporate-donate-listing-cards-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Sticky Filter Styles */
@media screen and (min-width: 768px) {
  .st-johns-corporate-donate-listing-sticky-filter {
    position: sticky;
    top: 90px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
  }
  .section-title-donate {
    display: block;
  }
}
.stjohns-corporate-card-img {
  width: 100%;
  object-fit: cover;
  object-position: center;
  height: 100%;
}
.grid-container-awards {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  align-content: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 30px;
  padding: 3rem 30px;
  gap: 100px;
}

.grid-container-awards-one {
  align-content: center;
  text-align: center;
}

.donate-noe-para {
  color: #1d1d1f;
  font-size: 28px;
  font-weight: 600;
}

.donate-now {
  background-color: #2a2e6d;
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  display: block;
  width: max-content;
  margin: auto;
  text-decoration: none;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .grid-container-awards {
    grid-template-columns: 1fr;
  }
  .grid-container-awards {
    display: flex;
    flex-direction: column-reverse;
    gap: 40px;
  }
  .donate-noe-para {
    font-size: 16px;
    max-width: 228px;
    margin: auto;
  }
  .donate-now {
    margin-top: 30px;
  }
  .popup-content {
    height: 500px;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .popup-header {
    border-top-right-radius: 30px;
    border-top-left-radius: 30px;
  }
  .st-johns-corporate-donate-listing-popup-content {
    border-radius: 30px;
  }
  .inside{
    grid-template-columns:1fr;
  }
  #net-banking-content img{
    width: 100%;
  }
  .qr-section img{
    width: 100%;
  }
  .popup-container{
    width: 90% !important;
  }
}
@media screen and (max-width: 499px) {
  .donate-hosp img {
    height: 411px;
    object-fit: cover;
  }
  .donate-hosp .overlay {
    background: #00000038;
  }
  .payment-method {
    display: block !important;
  }
  #st-johns-corporate-know-more-popup .popup-content {
    width: 90% !important;
  }
  .radio-group {
    display: block !important;
  }
  .radio-option {
    margin-bottom: 5px;
  }
  .form-note {
    text-align: justify;
  }
  .popup-content{
    overflow-y: scroll !important;
  }
  .form-group {
    width: 100% !important;
  }
  .qr-section img {
    width: 100%;
    height: 100%;
}
.circle3 {
    width: 200px;
    height: 200px;
    top: -50px;
    left: -80px;
}
.circle2 {
    width: 100px;
    height: 100px;
    top: 50px;
    left: 50px;
}
.circle1 {
    width: 200px;
    height: 200px;
    bottom: 60px;
    right: -70px;
}
.circle4 {
    width: 100px;
    height: 100px;
    top: 200px;
    right: 30px;
}
.st-johns-corporate-donate-listing-mobile-filter-dropdown.active {
    display: block;
    border-radius: 30px;
}
}
/* Awards section  */
.stjohns-corporate-home-awards-container {
  max-width: 1440px;
  margin: 0 auto;
}

.announcement-img-corporate-new-awards-new {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 30px;
}

.stjohns-corporate-home-awards-title {
  color: #333366;
  margin-bottom: 30px;
}

.stjohns-corporate-home-awards-carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.stjohns-corporate-home-awards-carousel {
  display: flex;
  transition: transform 0.5s ease;
  width: 100%;
}

.stjohns-corporate-home-awards-card {
  padding: 40px;
  background-color: white;
  border-radius: 30px;
  margin: 0 10px;
  min-width: 0;
}

.announcement-img-corporate-new-awards {
  width: 71px;
  height: 86px;
  object-fit: cover;
  object-position: center;
}

.stjohns-corporate-home-awards-card-header {
  margin-bottom: 15px;
}

.stjohns-corporate-home-awards-card-title {
  font-size: 18px;
    font-weight: bold;
    color: #000;
    margin-top: 10px;
    line-height: 28px;
    margin-bottom: 5px;
}

.stjohns-corporate-home-awards-card-subtitle {
  font-size: 16px;
  color: #1d1d1f;
  margin-bottom: 10px;
}

.stjohns-corporate-home-awards-carousel-controls {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
  gap: 10px;
  position: relative;
  right: 10px;
}

.stjohns-corporate-home-awards-carousel-btn {
  padding: 20px;
  border-radius: 50%;
  background-color: #d2d2d7;
  border: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-evenly;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 32px;
  font-weight: 500;
  color: #00000099;
}

.stjohns-corporate-home-awards-carousel-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.stjohns-corporate-home-awards-carousel-btn:not(:disabled):hover {
  background-color: #f0f0f0;
}

.stjohns-corporate-home-awards-view-all {
  color: #333366;
  text-decoration: none;
  font-size: 14px;
  margin-right: 15px;
  display: flex;
  align-items: center;
}

/* Mobile first approach */
.stjohns-corporate-home-awards-card {
  flex: 0 0 calc(100% - 20px);
  width: calc(100% - 20px);
}

.announcement-img-corporate-new {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 30px;
}

/* Responsive Breakpoints */
@media (min-width: 768px) {
  .stjohns-corporate-home-awards-card {
    flex: 0 0 calc(50% - 20px);
    width: calc(50% - 20px);
  }
}

@media (min-width: 1024px) {
  .stjohns-corporate-home-awards-card {
    flex: 0 0 calc(33.333% - 20px);
    width: calc(33.333% - 20px);
  }
}
/* css for popup donate individual company */
.popup-container {
  /* background-color: #fff;
  width: 100%;
  max-width: 887px;
  border-radius: 30px;
  position: relative;
  height: auto; */
  position: fixed; /* Changed from absolute to fixed */
    background-color: #fff;
    width: 100%;
    max-width: 887px;
    border-radius: 30px;
    height: auto;
    /* Centering properties */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    /* Ensure it stays on top of other elements */
    z-index: 1000;
}

.popup-header {
  padding: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f5f5f5;
  border-bottom: 1px solid #e0e0e0;
  border-top-right-radius: 12px;
  border-top-left-radius: 12px;
}

.popup-header h2 {
  color: #333368;
  font-size: 20px;
  text-align: center;
  flex-grow: 1;
}

.back-button,
.close-button {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #555;
  padding: 0 10px;
}

.popup-content {
  padding: 30px 20px;
  position: relative;
  overflow: hidden;
}
.know{
  padding: 0 !important;
}

.form-toggle {
  text-align: right;
  margin-bottom: 20px;
}

.form-toggle a {
  color: #0088cc;
  text-decoration: none;
  font-weight: 500;
}

.form-group {
  width: 450px;
  margin-bottom: 25px;
  position: relative;
  margin: 0 auto 25px auto;
}

.form-group label {
  width: fit-content;
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  text-align: start;
}

.form-group label .required {
  color: #ff0000;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
  width: 100%;
  padding: 12px 10px;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #ccc;
  font-size: 16px;
  outline: none;
}

.form-note {
  font-size: 12px;
  color: #666;
  margin-top: 5px;
}

.radio-group {
  display: flex;
  gap: 90px;
  margin-top: 10px;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 8px;
}

.radio-option label {
  margin-bottom: 0;
}

.custom-radio {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #ccc;
  display: inline-block;
  position: relative;
}

.custom-radio.selected {
  border-color: #000;
}

.custom-radio.selected::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background-color: #000;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.radio-input {
  display: none;
}

.payment-logos {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 20px 0;
}

.payment-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #f0f0f0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: bold;
}

.payment-logo.m {
  background-color: #5072e8;
}

.payment-logo.p {
  background-color: #8c52ff;
}

.donate-button {
  background-color: #d4b45e;
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 16px;
  border-radius: 25px;
  cursor: pointer;
  width: 200px;
  display: block;
  margin: 0 auto;
  margin-top: 20px;
  position: relative;
  z-index: 1;
}

.terms-text {
  text-align: center;
  font-size: 12px;
  color: #666;
  margin-top: 15px;
}

.terms-text a {
  color: #333368;
  text-decoration: none;
}
.decor-circle {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
  }
  
  .circle1 {
    width: 269px;
    height: 269px;
    opacity: 8%;
    background: #d2be6f;
    bottom: 100px;
    right: -40px;
  }
  .circle2 {
    width: 138px;
    height: 138px;
    opacity: 8%;
    background: #373737;
    bottom: 275px;
    right: 115px;
  }
  .circle3 {
    width: 269px;
    height: 269px;
    opacity: 8%;
    background: #2a2e6d;
    top: 90px;
    left: -60px;
  }
  .circle4 {
    width: 138px;
    height: 138px;
    opacity: 8%;
    background: #373737; 
    top: 236px;
    left: 130px;
  }
  /* balls ends */
.upi-field {
  display: none;
  margin-top: 20px;
}
/* end here css for popup donate individual company */
.back-button {
  display: none;
}
/* // popup knowmore js */
#st-johns-corporate-know-more-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

#st-johns-corporate-know-more-popup .popup-content {
  /* background: #fff;
  padding: 0rem;
  border-radius: 30px;
  margin: auto;
  width: 60%;
  position: relative; */
  background: #fff;
    border-radius: 30px;
    width: 100%;
    max-width: 887px; /* Optional: match your design */
    position: relative;
    margin: auto;
    top: 50%;
    transform: translateY(-50%);
}

#st-johns-corporate-know-more-popup .popup-content h2 {
  margin-top: 0;
  padding: 10px 0;
}
#st-johns-corporate-know-more-popup .popup-content h1 {
  font-size: 28px;
  font-weight: 400;
}
#st-johns-corporate-know-more-popup .close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}
#st-johns-corporate-know-more-popup .modal-content {
  padding: 2rem 6rem;
}
#st-johns-corporate-know-more-popup .modal-title {
  text-align: center;
}
#st-johns-corporate-know-more-popup .modal-header {
  background: #efefef;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}
#st-johns-corporate-know-more-popup .objectives h3 {
  font-size: 16px;
  font-weight: 500;
  margin-top: 15px;
}
#st-johns-corporate-know-more-popup .objectives ul li,
#st-johns-corporate-know-more-popup .objectives p {
  font-size: 16px;
  font-weight: 400;
}

.payment-method h3 {
  margin-top: 15px;
  font-size: 32px;
  font-weight: 500;
}
.payment-method p {
  font-size: 16px;
  font-weight: 400;
}
.payment-methods {
  margin-top: 0px;
}

.payment-method {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}
.method-title {
  font-size: 28px;
  font-weight: 600;
  color: #333;
}
.method-description {
  font-size: 16px;
  color: #555;
  margin-top: 5px;
}
.method-icon {
  margin-left: 80px;
  margin-top: 30px;
  width: 120px;
  height: 90px;
  background-color: #2e3d6d;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

.circle-icon {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 80px;
}

.circle {
  width: 15px;
  height: 15px;
  background-color: white;
  border-radius: 50%;
}

.circle.large {
  width: 30px;
  height: 30px;
}

.back-btn {
  display: block;
  width: 180px;
  margin: 0 auto;
  padding: 12px 0;
  background-color: #d4bc6e;
  border: none;
  border-radius: 25px;
  color: white;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.3s;
}

.back-btn:hover {
  background-color: #c4ad5e;
}

.background-circles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.circle-bg {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: rgba(242, 238, 216, 0.5);
}

.circle-bg.left {
  top: 50%;
  left: -100px;
}

.circle-bg.right {
  bottom: -50px;
  right: -50px;
}
/* //popup ends  */
/* payment css */
.payment-container {
  display: flex;
  height: 500px;
  position: relative;
}

.payment-tabs {
  width: 30%;
  background: none;
}
.payment-tab {
  border-radius: 15px;
  margin: 15px 0px;
  padding: 20px;
  border-bottom: 1px solid #eaeaea;
  display: flex;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  align-items: center;
  cursor: pointer;
  background: #fff;
  transition: background-color 0.3s;
}

.payment-tab:hover {
  background-color: #f0f0f0;
}

.payment-tab.active {
  background-color: #fff;
  border-left: 8px solid #d4b669;
}

.tab-icon {
  width: 30px;
  margin-right: 15px;
}

.tab-text {
  font-size: 16px;
  color: #333;
}

.payment-content {
  width: 70%;
  padding: 0 20px;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.qr-section {
  text-align: center;
}

.qr-section p {
  margin-bottom: 5px;
  font-size: 14px;
  color: #333;
}

.qr-code {
  width: 200px;
  height: 200px;
  margin: 0;
}
.qr-code2 {
  width: 370px;
  height: 370px;
  margin: 0;
}
.payment-apps {
  display: flex;
  justify-content: space-between;
  margin-top: 5px;
  padding: 0 20px;
}

.app-option {
  text-align: center;
  width: 60px;
}

.app-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-bottom: 5px;
}

.app-name {
  font-size: 12px;
  color: #555;
}

.divider {
  height: 1px;
  background-color: #eaeaea;
  margin: 20px 0;
}

.upi-input-section {
  margin-top: 5px;
}

.upi-input-section p {
  text-align: start;
  margin-bottom: 10px;
  font-size: 12px;
  color: #333;
}

.upi-input-section span {
  color: red;
}

.upi-input {
  width: 100%;
  padding: 12px;
  border: none;
  border-bottom: 1px solid #ccc;
  font-size: 12px;
  margin-bottom: 5px;
}

.pay-btn {
  background-color: #d4b669;
  color: white;
  border: none;
  padding: 12px 40px;
  font-size: 18px;
  border-radius: 25px;
  cursor: pointer;
  display: block;
  margin: 20px auto 0;
}

.pay-btn:hover {
  background-color: #c4a659;
}

/* Styles for credit/debit card form */
.card-form label {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
  color: #555;
}

.card-form input {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.form-row {
  display: flex;
  gap: 10px;
}

.form-group {
  flex: 1;
}
/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
  .payment-container {
    flex-direction: column;
    height: auto;
  }

  .payment-tabs {
    width: 100%;
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr 1fr; /* This creates two equal-width columns */
    overflow-x: auto;
    border-right: none;
    border-bottom: 1px solid #eaeaea;
    justify-content: center;
  }

  .payment-tab {
    width: 100%;
    min-width: 80px;
    flex-direction: column;
    text-align: center;
    padding: 10px;
  }

  .tab-icon {
    margin-right: 0;
    margin-bottom: 5px;
  }

  .tab-text {
    font-size: 12px;
  }

  .payment-tab.active {
    border-left: none;
    border-bottom: 8px solid #d4b669;
  }

  .payment-content {
    width: 100%;
    margin-top: 25px;
  }
  .payment-apps img {
    width: 100%;
  }
  .qr-code {
    width: 150px;
    height: 150px;
  }

  .payment-apps {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }

  .app-option {
    width: 50px;
  }
}
/* payment ends */
/* debitcss */
.payment-form .form-group {
  margin-bottom: 25px;
  width: 100%;
  margin: 0;
  position: relative;
  z-index: 1;
}

.payment-form .form-row {
  display: flex;
  gap: 20px;
}

.payment-form .form-column {
}

.payment-form label {
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
  color: #000;
}

.payment-form .required {
  color: #ff0000;
}

.payment-form input {
  width: 100%;
  padding: 12px 0;
  font-size: 16px;
  border: none;
  border-bottom: 1px solid #000;
  background-color: transparent;
  color: #333;
  outline: none;
}
.payment-form input::placeholder {
  color: #999;
}
.payment-form .note {
  margin: 0px 0 25px;
  font-size: 14px;
  color: #555;
  text-align: left;
}
.payment-form .note span {
  font-weight: 600;
  color: #333;
}
.payment-form .pay-btn {
  display: block;
  width: 200px;
  padding: 15px;
  margin-top: 30px;
  background-color: #d5b96d;
  color: white;
  border: none;
  border-radius: 25px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
}

.payment-form .pay-btn:hover {
  background-color: #c5aa5d;
}

.payment-form .security-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 5px;
}

.payment-form .security-logo {
  height: 30px;
}
.inside .form-group {
  margin: 2px;
  width: 100%;
}
.inside {
  display: grid;
  grid-template-columns: 1fr 1fr; /* two equal columns */
  gap: 20px;
  margin-bottom: 20px;
}
.inside .form-group input[type="text"],
.payment-form .form-group input[type="text"] {
  border-bottom: 1px solid #000;
  padding: 12px 0px;
}
/* ends debit */
/* leaving css */
#exit-popup {
    padding: 30px 20px;
    text-align: center;
  }

  #exit-popup-header {
    font-size: 18px;
    font-weight: 600;
    color: #3f3f3f;
    margin-bottom: 15px;
  }

  #close-button {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 20px;
    cursor: pointer;
    border: none;
    background: none;
  }

  #exit-popup-image {
    width: 150px;
    margin: 0 auto 20px;
  }

  #exit-popup h2 {
    margin: 0;
    font-size: 22px;
    color: #2c2c74;
  }

  #exit-popup p {
    font-size: 14px;
    margin: 10px 0 25px;
    color: #444;
  }

  #proceed-button {
    background-color: #d6ba72;
    border: none;
    border-radius: 30px;
    padding: 10px 25px;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    cursor: pointer;
    margin-bottom: 10px;
  }

  #not-today {
    display: block;
    font-size: 13px;
    color: #666;
    text-decoration: underline;
    cursor: pointer;
  }
