@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Frank+Ruhl+Libre:wght@300;400;500;700;900&display=swap');

/* General Reset */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #F9F4EF;
}

/* Header Styles */
header {
  background-color: #FFFFFF;
  border-bottom: 1px solid #236199;
}

/* Header Wrapper */
.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;

}

.logo {
  font-size: 20px !important;
  font-weight: bold;
  color: white;
}

/* Button Group */
.header-buttons button {
  margin-left: 10px;
  padding: 8px 16px;
  font-size: 14px;
  border: none;
  cursor: pointer;
  border-radius: 10px;
}



.login-btn {
  background-color: #031732;
  color: black;
  font-weight: 600;
}

.signup-btn {
  background-color: #031732;
  color: black;
  font-weight: 600;
}

.header-buttons button:hover {
  opacity: 0.9;
}

/* Default: show text buttons, hide icons */
.text-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: #031732;
  color: white;

  font-weight: 600;
  font-family: 'Lato', sans-serif;
  border: 1px solid #e49b3c;
  border-radius: 10px;
  padding: 8px 16px;
  font-size: 14px;
  cursor: pointer;

  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.text-button:hover {
  background-color: #000000;
  border: 1px solid #ceb69e;
}

.icon-only {
  display: none;
  gap: 12px;
  font-size: 20px;
  color: #ffffff;
  cursor: pointer;
}

.icon-only i {
  background-color: #ceb69e;
  padding: 10px;
  border-radius: 10px;
  color: #ffffff;
}

/* Show icons only on mobile (≤531px) */
@media (max-width: 531px) {
  .text-button {
    display: none;
  }

  .icon-only {
    display: flex;
  }
}



/* Responsive for Mobile (≤768px) */
@media (max-width: 768px) {
  /* .header-container {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .header-buttons {
        flex-direction: column;
        width: 100%;
    }

    .header-buttons button {
        width: 100%;
        text-align: center;
    }*/
}

/*----form-----*/

/* Step Container Wrapper */
.step-wrapper {
  background-color: #F9F4EF;
}

.step-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

/* Left form */
.form-left {
  flex: 1;
  padding-right: 100px;
  width: 100%;
}

.form-left h2 {
  font-family: 'Frank Ruhl Libre', serif;
  color: #3072AD;


}

.info-right {
  flex: 1;
  background: #ffffff;
  padding: 20px;
  border-radius: 8px;
  width: 100%;
  text-align: center;
}

.info-right h2 {
  padding: 0 60px;
  font-family: 'Frank Ruhl Libre', serif;
  color: #3072AD;
   text-align: left;
}

.info-right p {
  padding: 0 60px;
  font-family: 'Lato', sans-serif;
  color: #003E54;
  font-weight: 400;
  font-size: 14px;
  text-align: left;
   margin-top: -12px;
}

.info-right .images1 img {
  max-width: 100%;
  height: auto;
  display: inline-block;

}

@media (max-width: 768px) {
  .step-container {
    flex-direction: column;
    align-items: center;
    /* ✅ center children horizontally */
  }

  .form-left {
    width: 100%;
    max-width: 500px;
    /* ✅ optional: keep a readable width */
    padding-right: 0;
    /* ✅ remove extra space */
  }

  .info-right {
    width: 100%;
    max-width: 500px;
    padding: 20px;
  }
  .info-right h2 {
  padding: 0 0px;
  font-family: 'Frank Ruhl Libre', serif;
  color: #3072AD;
   text-align: left;
}
  .info-right p {
  padding: 0 0px;
  font-family: 'Lato', sans-serif;
  color: #003E54;
  font-weight: 400;
  font-size: 14px;
  text-align: left;
   margin-top: -12px;
}
}

.form-group {
  margin-bottom: 20px;
}

label {
  font-family: 'Lato', sans-serif;
  display: block;
  font-weight: bold;
  margin-bottom: 6px;
}

.required {
  color: red;
}

input[type="text"],
select {
  width: 100% !important;
  padding: 16px 10px;
  border: 1px solid #ccc;
  border-radius: 12px;
  font-size: 14px;
}

/* Ensure all elements use border-box for consistent sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Fix select2 width inside form */
.select2-container {
  width: 100% !important;
}

.select2-selection--single {
  height: 52px !important;
  padding: 8px 10px !important;
  border: 1px solid #ccc;
  border-radius: 12px !important;
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  box-sizing: border-box;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 30px !important;
  position: absolute;
  top: 10px !important;
  right: 12px !important;
  width: 20px;
}

.continue-btn {
  margin-top: 10px;
  padding: 16px 20px;
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 600;
  background-color: #ceb69e;
  color: white;
  border: solid 1px #e49b3c;
  border-radius: 12px;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
}

.continue-btn:hover {
  background-color: #000;
  border: solid 1px transparent;
  ;
}

input[type="email"] {
  width: 100% !important;
  padding: 16px 10px;
  border: 1px solid #ccc;
  border-radius: 12px;

  font-size: 14px;
}

input[type="tel"] {
  width: 100% !important;
  padding: 16px 10px;
  border: 1px solid #ccc;
  border-radius: 12px;
  font-size: 14px;
}

.back-btn {
  background: #ceb69e;
  padding: 8px 16px;
  border: none;
  color: #ffffff;
  font-family: 'Lato', sans-serif !important;
  font-size: 14px;
  cursor: pointer;
  margin-bottom: 20px;
  text-decoration: none;
  border: solid 1px #e49b3c !important;
  border-radius: 4px;

}

.skip-btn {
  margin-top: 10px;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 600;
  background-color: #ccc;
  color: black;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  width: 100%;
}

.phone-row {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 6px;
}

.phone-row select {
  flex: 0 0 80px;
  padding: 6px;
  font-size: 14px;
}

.phone-row input[type="tel"] {
  flex: 1;
  padding: 8px;
  font-size: 14px;
}

.experience-options button.selected {
  background-color: #C7EEFF;
  color: black;


}

.experience-options {
  display: flex;
  flex-direction: column;
  gap: 20px;

}

.experience-options button {
  width: 100%;
  background: white;
  text-align: left;
  padding: 14px;
  font-size: 18px;
  border: 1px solid #ccc;
  border-radius: 12px;
}

.pkg {
  max-width: 1200px;
  margin: 20px auto;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.package {
  background: #ffffff;
  width: 100%;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid #e0e0e0;

  /* ADD THIS */
  display: flex;
  flex-direction: column;
}


.package:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}


.inline-label-select {
  display: flex;
  flex-direction: column;

  gap: 12px;
  margin: 12px 0;
}

.inline-label-select label {
  font-weight: bold;
  white-space: nowrap;
}

.inline-label-select select {
  width: auto;
  min-width: 80px;
  padding: 6px 10px;
  font-size: 14px;
}

.compact-select {
  width: auto !important;
  min-width: 80px;
  max-width: 100px;
  padding: 6px 10px;
  font-size: 14px;
}

.pkg-wrapper {
  max-width: 1600px;
  margin: 40px auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  font-size: 14px;
}

.pkg-wrapper>.package {
  flex: 1 1 calc(25% - 20px);
  /* 4 columns with 20px gap */
  background: #f6f8e4;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
  min-width: 280px;
  /* optional: prevent collapse */
}

@media (max-width: 1024px) {
  .pkg-wrapper>.package {
    flex: 1 1 calc(50% - 20px);
    /* 2 per row on tablets */
  }
}

@media (max-width: 600px) {
  .pkg-wrapper>.package {
    flex: 1 1 100%;
    /* Stack vertically on mobile */
  }
}

.plt1 {
  font-size: 14px;
}

.inline-label-select2 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 12px 0;
}

.inline-label-select3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 12px 0;
}

.bottom,
.bottom2,
.bottom3,
.bottom4 {
  margin-top: auto;
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  border-top: 1px solid #ddd;
}

.bottom button,
.bottom2 button,
.bottom3 button,
.bottom4 button {
  width: 100%;
  margin-top: 10px;
}

.p1btn {
  background: #ceb69e;
  border: solid 1px #e49b3c !important ;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-family: 'Lato', sans-serif;
  font-weight: bold;
  color: white;
  cursor: pointer;
  width: 100%;
  margin-bottom: 24px;
  transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
}

.p1btn:hover{
 background-color: #000;
  border: solid 1px transparent !important;
}

/* Responsive */
@media (max-width: 768px) {
  .package {
    flex: 1 1 100%;
  }
}

.pkg-wrapper {
  align-items: stretch;
  /* ensures all package cards are same height */
}


.form-control {
        margin-bottom: 10px;
    }

.package ul {
  padding-left: 0;
  list-style: none;
}

/* ====== Bank Packages (Physical / Digital) ====== */
.bank-package {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 0 10px rgba(0,0,0,0.08);
  margin-bottom: 24px;
  font-family: 'Lato', sans-serif;
  transition: all 0.3s ease;
}

.bank-package h2 {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.bank-package .price {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 20px;
  margin: 12px 0;
}

.bank-package .price del {
  color: #888;
  font-size: 14px;
  margin-right: 6px;
}

.bank-package h3 {
  font-family: 'Frank Ruhl Libre', serif;
  font-size: 28px;
  font-weight: 700;
  margin: 8px 0 16px;
  color: #222;
}

.bank-package h3 span {
  font-size: 14px;
  font-weight: 400;
  margin-left: 4px;
}

.bank-package h4 {
  font-size: 16px;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 12px;
}

.bank-package ul {
  list-style: none;
  padding-left: 0;
  font-size: 14px;
  color: #333;
  margin: 0;
}

.bank-package ul li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.bank-package ul li::before {
  content: "✔";
  color: #0077C0;
  position: absolute;
  left: 0;
  font-size: 14px;
  top: 0;
}

.bank-package .continue-btn {
  display: inline-block;
  background-color: #ceb69e;
  border: solid 1px #e49b3c;
  color: #fff;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.3s;
  margin-top: 16px;
  text-decoration: none;
}

.bank-package .continue-btn:hover {
  background-color: #e49b3c;
}
