   /* ===============================
   Header Container
================================ */
.ts_header {
  width: 100%  !important;
  padding: 16px 12px;
  border: none !important;

  display: flex;
  align-items: center;
  justify-content: center;   /* center 1200px container */

  height: auto !important;

  background-image: url("https://go.ict-trainings.com/formtools/upload/header-background.png");
  background-repeat: repeat-x;     /* Stop repeating */
  background-position: center center; /* Move background to right */
  background-size: auto 100%;       /* Fit height */
}
    .header_content {
width: 900px !important;

  display: flex;                 /* ADD THIS */
  align-items: center;           /* vertical center */
  justify-content: space-between;      }
/* ===============================
   Logo Image
================================ */
.logodiv img {
  width: auto;
  height: auto;

  /* CONTROL LOGO SIZE */
  max-height: 80px;

  object-fit: contain;
}
  .eventdiv {

    }
.eventdiv img {
  max-width: 100%;
  width: auto;
  height: auto;

  /* CONTROL LOGO SIZE */
  max-height: 80px;

  object-fit: contain;
}
.ts_content {
    background-color: #ffffff;
    border: 1px solid #CCCCCC;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
}

/* ===============================
   Desktop enhancement
================================ */
@media (min-width: 768px) {
  .ts_header {
    padding: 24px;
  }

  .ts_header img {
    max-height: 110px;
  }
}
 /* ===============================
   Mobile-safe global fix
================================ */

*,*::before,
*::after {
  box-sizing: border-box;
}

/* ===============================
   Page background gradient
================================ */
body {
  margin: 0;
  padding: 0;
  background: linear-gradient(
    84deg, #FC7632 1%, #F72750 100%
  );
}


/* ===============================
   Form Title
================================ */

.form-title {
  text-align: center !important;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e293b;
  margin: 15px 0;
}
  
/* ===============================
   Form container
================================ */
#ts_form_element_id {
  width: 100%;
  max-width: 100%;
  margin: 0px;
  padding: 16px;
  background: #ffffff;
  border-radius: 0; /* FULL WIDTH ON MOBILE */
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

/* Desktop only center & rounded */
@media (min-width: 768px) {
.form-section {
    padding: 15px;          /* was 18px */
    margin-bottom: 0px;    /* space between sections */
    border-radius: 22px;    /* slightly rounder */
  }

  .form-row {
    margin-bottom: 0px;    /* more breathing room per field */
  }
  #ts_form_element_id {
    max-width: 900px;
    margin: 32px auto;
    border-radius: 18px;
  }
}

/* ===============================
   Form rows (cards)
================================ */
.form-section {
  background: #ffffffff;
  padding: 18px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Individual rows (NO CARD LOOK) */
.form-row {
  padding: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}
/* ===============================
   Labels
================================ */
.form-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 6px;
}

.req {
  color: #e63946;
}

/* ===============================
   Inputs (NO OVERFLOW GUARANTEED)
================================ */
#ts_form_element_id input,
#ts_form_element_id select,
#ts_form_element_id textarea {
  width: 100%;
  max-width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  font-size: 0.95rem;
  background: #fff;
  appearance: none;
}
#ts_form_element_id select{
  height: auto !important;
  max-height: none !important;
    }
/* Focus */
#ts_form_element_id input:focus,
#ts_form_element_id select:focus,
#ts_form_element_id textarea:focus {
  outline: none;
  border-color: #4f46e5;
  box-shadow: 0 0 0 3px rgba(79,70,229,.15);
}

/* ===============================
   Buttons
================================ */
#ts_form_element_id button,
#ts_form_element_id input[type="submit"] {
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  border: none;
  background: #ffc107;
  /*background: linear-gradient(
    135deg,
    #4f46e5,
    #6366f1
  ); */
  color: #000;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
}
/* ===============================
   Form Footer Styles
================================ */
.form-footer {
  width: 100%;
  padding: 0px !important;  
  margin: 0px !important;
  /*background: linear-gradient(    84deg, #FC7632 1%, #F72750 100%);*/
  color: #ffffff;
  text-align: center;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  margin-top: 32px;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}
.footer-content {
     background-image: url("https://go.ict-trainings.com/formtools/upload/footer-background.jpg");
    padding: 24px 16px;
    background-repeat: repeat-x;
    
}
.form-footer .footer-content p {
    color: #f3f4f6;
  margin: 0 0 8px 0;
  font-size: 0.95rem;
  font-weight: 500;
}
.form-footer .footer-content p a {
    color: #f3f4f6;
    text-decoration: none;
  margin: 0 0 8px 0;
  font-size: 0.95rem;
  font-weight: 500;
}
.form-footer .footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
}

.form-footer .footer-links a {
  color: #f3f4f6;
  text-decoration: none;
  transition: color 0.2s ease;
}

.form-footer .footer-links a:hover {
  color: #ffecd1;
}

@media (min-width: 768px) {
  .form-footer {
    padding: 32px;
  }
}
.whatsapp-chat {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  background: #25D366;
  color: #fff;
  padding: 10px 16px;
  border-radius: 50px;
  font-family: Arial, sans-serif;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: 0.3s ease;
  z-index: 1000;
}

.whatsapp-chat .icon {
  font-size: 18px;
  margin-right: 8px;
}

.whatsapp-chat:hover {
  background: #1ebe5d;
  transform: translateY(-3px);
}

/* Mobile Responsive */
@media (max-width: 600px) {
  .whatsapp-chat {
    padding: 8px 12px;
    font-size: 14px;
  }
}

/*------------------------------------------------------------------------------------*/

/* Prevent horizontal scroll */
html, body {
    overflow-x: hidden !important;
}
  @-webkit-keyframes blinker {
  from {opacity: 1.0;}
  to {opacity: 0.0;}
}
    .blink{
	text-decoration: blink;
	-webkit-animation-name: blinker;
	-webkit-animation-duration: 0.6s;
	-webkit-animation-iteration-count:infinite;
	-webkit-animation-timing-function:ease-in-out;
	-webkit-animation-direction: alternate;
      color: red;
}

/* Main Wrapper */
#ict-payment-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto;
    padding: 15px;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

/* Card */
#ict-payment-wrapper .ict-card {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e5e5e5;
    box-sizing: border-box;
}

/* Header */
#ict-payment-wrapper .ict-header {
    text-align: left;
    margin-bottom: 20px;
}

#ict-payment-wrapper .ict-header h2 {
    font-size: 20px;
    margin-bottom: 8px;
}

/* Option Box */
#ict-payment-wrapper .ict-option {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 18px;
    background: #f9f9f9;
    box-sizing: border-box;
}

/* Text */
#ict-payment-wrapper .ict-info {
    font-size: 14px;
    line-height: 1.6;
    word-break: break-word;   /* IMPORTANT FIX */
}

/* QR */
#ict-payment-wrapper .ict-qr {
    text-align: center;
    margin-top: 12px;
}

#ict-payment-wrapper .ict-qr img {
    max-width: 50px;
    width: 100%;
    height: auto;
}

/* Buttons */
#ict-payment-wrapper .ict-btn {
    display: block;
    width: fit-content;
    text-align: center;
    padding: 10px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    margin-top: 12px;
    font-weight: bold;
    box-sizing: border-box;
}

#ict-payment-wrapper .ict-whatsapp {
    background: #25D366;
    color: #fff !important;
}
.ict-btns{
  align-items: center;
  }
#ict-payment-wrapper .ict-map {
    background: #0d6efd;
    color: #fff !important;
}

/* Timing */
#ict-payment-wrapper .ict-timing {
    font-size: 14px;
    margin-top: 8px;
}
  /* Bank Row Layout */
#ict-payment-wrapper .ict-bank-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
}

/* Left side */
#ict-payment-wrapper .ict-bank-details {
    flex: 1;
    min-width: 200px;
}

/* Right side QR */
#ict-payment-wrapper .ict-qr {
    flex: 0 0 auto;
    text-align: right;
}

#ict-payment-wrapper .ict-qr img {
    max-width: 120px;   /* Adjust size here */
    height: auto;
}
  #ict-payment-wrapper .ict-btns {
    display: flex;
    justify-content: center;  /* center horizontally */
    align-items: center;      /* optional, center vertically if needed */
    margin-top: 10px;         /* spacing above button */
    gap: 10px;                /* spacing between buttons if multiple */
}

/* Make button width auto so it doesn’t stretch */
#ict-payment-wrapper .ict-btn {
    width: auto;  /* allow button to shrink to content */
    text-align: center;
}

/* Mobile Stack */
@media only screen and (max-width: 600px) {
    #ict-payment-wrapper .ict-bank-row {
        flex-direction: column;
        text-align: left;
    }

    #ict-payment-wrapper .ict-qr {
        text-align: center;
        margin-top: 10px;
    }
}

/* Mobile extra safety */
@media only screen and (max-width: 480px) {
    #ict-payment-wrapper {
        padding: 10px;
    }

    #ict-payment-wrapper .ict-card {
        padding: 15px;
    }
}