/* Section 1 styles */
.section-1 .answers-container > div + div {
  margin-top: 0.75rem;
}

.section-1 .answer-option {
  cursor: pointer;
  position: relative;
  padding: 1rem;
  border: 0.2px #e8eaec solid;
  border-radius: 0.5rem;
  background: #fff;
  transition: background-color 0.3s ease;
  box-shadow: 0 0 6px rgb(0 0 0 / 0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
  user-select: none;
}

.section-1 .answer-option:hover {
  background-color: #f0f0f0;
}

.section-1 .answer-option span.icon {
  font-size: 1.25rem;
}

.section-1 .checkbox-custom {
  width: 24px;
  height: 24px;
  background: white;
  border: 2px #cdcfd1 solid;
  border-radius: 50%;
  box-shadow: inset 0 0 4px rgba(112, 111, 111, 0.1);
  flex-shrink: 0;
  position: relative;
}

.section-1 .checkbox-custom::after {
  content: "✓";
  color: white;
  background-color: #0d6efd;
  border-radius: 50%;
  width: 21px;
  height: 21px;
  display: none;
  position: absolute;
  font-size: 16px;
  text-align: center;
  line-height: 20px;
}

.section-1 .answer-option.active .checkbox-custom::after {
  display: block;
}

.section-1 .btn-Hero {
  background-color: #0080ff;
  color: #f5f5f5;
  padding: 14px 30px;
}

.section-1 .btn-Hero:hover {
  background-color: #0568cb;
}

/* Section 2 styles */
.section-2 .answers-container > div + div {
  margin-top: 1rem;
}

.section-2 .answer-option {
  cursor: pointer;
  position: relative;
  padding: 1rem;
  border: 0.2px #e8eaec solid;
  border-radius: 0.5rem;
  background: #fff;
  transition: background-color 0.3s ease;
  box-shadow: 0 0 6px rgb(0 0 0 / 0.1);
  display: flex;
  align-items: center;
  gap: 1.2rem;
  user-select: none;
}

.section-2 .answer-option:hover {
  background-color: #e0e0e0;
}

.section-2 .answer-option.custom-answer-option-select.active {
    background-color: #e0e0e0;
}

.section-2 .answer-option span.icon {
  font-size: 1.5rem;
}

.section-2 .checkbox-custom {
  width: 20px;
  height: 20px;
  background: #eee;
  border: 2px #bbb solid;
  border-radius: 30%;
  box-shadow: inset 0 0 3px rgba(100, 100, 100, 0.2);
  flex-shrink: 0;
  position: relative;
}

.section-2 .checkbox-custom::after {
  content: "+";
  color: #008000;
  background-color: #dff0d8;
  border-radius: 4px;
  width: 18px;
  height: 18px;
  display: none;
  position: absolute;
  font-size: 14px;
  text-align: center;
  line-height: 18px;
}

.section-2 .answer-option.active .checkbox-custom::after {
  display: block;
}

.section-2 .btn-Hero {
  background-color: #0080ff;
  color: #f5f5f5;
  padding: 14px 30px;
}

.section-2 .btn-Hero:hover {
  background-color: #0568cb;
}

/* Section 3 styles */
.section-3 .answers-container > div + div {
  margin-top: 0.8rem;
}

.bg-light-blue-rounded {
  background: rgb(239, 246, 255);
  border-radius: 1rem;
}

.section-3 .answer-option {
  cursor: pointer;
  position: relative;
  padding: 1.1rem;
  border: 0.3px #ccc solid;
  border-radius: 0.5rem;
  background: rgb(239, 246, 255);
  transition: background-color 0.3s ease;
  box-shadow: 0 0 5px rgb(0 0 0 / 0.12);
  display: flex;
  align-items: center;
  gap: 1rem;
  user-select: none;
}

.section-3 .answer-option:hover {
  background-color: #d0e4ff;
}

.section-3 .answer-option span.icon {
  font-size: 1.3rem;
}

.section-3 .answer-option.custom-answer-option-select.active {
    background-color: #d0e4ff;
}

.section-3 .checkbox-custom {
  width: 22px;
  height: 22px;
  background: #e6f0ff;
  border: 2px #99bbff solid;
  border-radius: 10%;
  box-shadow: inset 0 0 3px rgba(77, 113, 199, 0.3);
  flex-shrink: 0;
  position: relative;
}

.section-3 .checkbox-custom::after {
  content: "✔";
  color: #0066cc;
  background-color: #bbd7ff;
  border-radius: 6px;
  width: 20px;
  height: 20px;
  display: none;
  position: absolute;
  font-size: 15px;
  text-align: center;
  line-height: 20px;
}

.section-3 .answer-option.active .checkbox-custom::after {
  display: block;
}

.section-3 .btn-Hero {
  background-color: #0080ff;
  color: #f5f5f5;
  padding: 14px 30px;
}

.section-3 .btn-Hero:hover {
  background-color: #0568cb;
}

/* Section 4 styles */
.section-4 .answers-container > div + div {
  margin-top: 0.7rem;
}

.section-4 .answer-option {
  cursor: pointer;
  position: relative;
  padding: 1rem;
  border: none;
  border-radius: 0.7rem;
  background: #004085;
  transition: background-color 0.3s ease;
  box-shadow: 0 0 7px rgb(0 0 0 / 0.25);
  display: flex;
  align-items: center;
  gap: 1rem;
  user-select: none;
  color: white;
}

.section-4 .answer-option:hover {
    background-color: #003370 !important;
}

.section-4 .answer-option.custom-answer-option-select.active {
    background-color: #003370 !important;
}

.section-4 .answer-option span.icon {
  font-size: 1.25rem;
  color: white;
}

.section-4 .checkbox-custom {
  display: none;
}

.section-4 .btn-Hero {
  background-color: #0080ff;
  color: #f5f5f5;
  padding: 14px 30px;
  font-weight: 700 !important;
}

.section-4 .btn-Hero:hover {
  background-color: #0568cb;
}

/* Section 5 styles */
.section-5 .goal-card {
  width: 212px;
}
.section-5 .goal-card img {
  object-fit: cover;
  height: 159px;
  width: 100%;
}
.answers-container-section5 {
    /*gap: 15px;*/
    padding: 0px;
    gap: 15px;
    flex-wrap: wrap;
    align-items: flex-start;
}
.section-5 .goal-caption {
  background-color: #007aff;
  color: #fcfcfc;
  padding: 1rem 0.5rem;
  text-align: center;
  font-weight: 700;
  border-bottom-left-radius: 0.375rem;
  border-bottom-right-radius: 0.375rem;
}
.section-5 .card.goal-card.rounded-3.shadow-sm.custom-answer-option-select.active {
    border: 1px solid #007aff;
    box-shadow: 0px 0rem 0px 4px rgb(0 122 255) !important;
    border-radius: 0px !important;
}
.section-5 .card.active img.card-img-top.rounded-top {
    border-radius: 0px !important;
}
.section-5 .goal-card.active .goal-caption.rounded-bottom {
    border-radius: 0px !important;
}
.section-5 .btn-Hero {
  background-color: #0080ff;
  color: #f5f5f5;
  padding: 14px 30px;
}

.section-5 .btn-Hero:hover {
  background-color: #0568cb;
}
@media (max-width: 992px) {
  .section-5 .goal-card img {
    height: 130px;
  }
}
@media (max-width: 576px) {
  .section-5 .goal-card img {
    height: 110px;
  }
}

/* Section 6 styles */
.section-6 .goal-card {
  width: 212px;
}
.section-6 .goal-card img {
  object-fit: cover;
  height: 159px;
  width: 100%;
}
.section-6 .bg-light-blue-rounded {
  background: rgb(239, 246, 255);
  border-radius: 1rem;
}
.section-6 .goal-caption {
  background-color: #007aff;
  color: #fcfcfc;
  padding: 1rem 0.5rem;
  text-align: center;
  font-weight: 700;
  border-bottom-left-radius: 0.375rem;
  border-bottom-right-radius: 0.375rem;
}
.answers-container-section6 {
    /*gap: 15px;*/
    padding: 0px;
    gap: 15px;
    flex-wrap: wrap;
    align-items: flex-start;
}
.section-6 .goal-caption {
  background-color: #007aff;
  color: #fcfcfc;
  padding: 1rem 0.5rem;
  text-align: center;
  font-weight: 700;
  border-bottom-left-radius: 0.375rem;
  border-bottom-right-radius: 0.375rem;
}
.section-6 .card.goal-card.rounded-3.shadow-sm.custom-answer-option-select.active {
    border: 1px solid #007aff;
    box-shadow: 0px 0rem 0px 4px rgb(0 122 255) !important;
    border-radius: 0px !important;
}
.section-6 .card.active img.card-img-top.rounded-top {
    border-radius: 0px !important;
}
.section-6 .goal-card.active .goal-caption.rounded-bottom {
    border-radius: 0px !important;
}
.section-6 .btn-Hero {
  background-color: #0080ff;
  color: #f5f5f5;
  padding: 14px 30px;
}

.section-6 .btn-Hero:hover {
  background-color: #0568cb;
}
@media (max-width: 992px) {
  .section-6 .goal-card img {
    height: 130px;
  }
}
@media (max-width: 576px) {
  .section-6 .goal-card img {
    height: 110px;
  }
}

/* Section 7 styles */
.section-7 .image-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  overflow: hidden;
  cursor: pointer;
  border-radius: 0;
}

.section-7 .image-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}
.section-7 .active .image-container img {
    border-radius: 0px !important;
}
.section-7 .answers-container-section7 .active {
    border: 1px solid #007aff;
    box-shadow: 0px 0rem 0px 4px rgb(0 122 255) !important;
    padding: 0px !important;
}
.section-7 .btn-Hero {
  background-color: #0080ff;
  color: #f5f5f5;
  padding: 14px 30px;
}

.section-7 .btn-Hero:hover {
  background-color: #0568cb;
}

@media (min-width: 768px) {
  .section-7 .image-container img {
    border-radius: 12px;
  }
}

/* Section 8 styles */
.section-8 .cards-grid {
  max-width: 360px;
  max-height: 400px;
}

.section-8 .custom-card {
  cursor: pointer;
  border: none;
  width: 150px;
  height: 150px;
}

.section-8 .card-img-wrap {
  aspect-ratio: 1 / 1;
  max-height: 130px;
  overflow: hidden;
}

.section-8 .card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-8 .custom-card .card-body {
  padding: 0.5rem;
  font-size: 0.85rem;
}

.section-8 .cursor-pointer {
  cursor: pointer;
}

.section-8 .object-fit-cover {
  object-fit: cover;
}
.section-8 .custom-answer-option-select.active .custom-card {
    border: 2px solid #007aff;
    box-shadow: 0px 0rem 0px 4px rgb(0 122 255) !important;
}

@media (min-width: 768px) {
  .section-8 .cards-grid {
    max-width: 600px;
  }

  .section-8 .custom-card {
    width: 150px;
    height: 180px;
  }

  .section-8 .card-img-wrap {
    max-height: 160px;
  }
}

@media (min-width: 1200px) {
  .section-8 .cards-grid {
    max-width: 450px;
  }

  .section-8 .custom-card {
    width: 200px;
    height: 200px;
  }

  .section-8 .card-img-wrap {
    max-height: 180px;
  }
}
.section-8 .btn-Hero {
  background-color: #0080ff;
  color: #f5f5f5;
  padding: 14px 30px;
}

.section-8 .btn-Hero:hover {
  background-color: #0568cb;
}
/* Section 9 styles */
.section-9 input.form-control {
  border-width: 1px;
  height: 60px;
  font-size: 0.9rem;
  font-weight: 200;
}

.section-9 .btn-Hero {
  background-color: #0080ff;
  color: #f5f5f5;
  padding: 14px 30px;
}

.section-9 .btn-Hero:hover {
  background-color: #0568cb;
}

/* Section 10 styles */
.section-10 input.form-control {
  border-width: 1px;
  height: 60px !important;
  font-size: 0.9rem;
  font-weight: 200;
}

.section-10 .btn-Hero {
  background-color: #0080ff;
  color: #f5f5f5;
  padding: 14px 30px;
}

.section-10 .btn-Hero:hover {
  background-color: #0568cb;
}

@media (max-width: 768px) {
  .section-10 .btn-Hero {
    padding: 14px 40px;
    font-size: 16px;
    width: 95%;
    max-width: none;
  }

  .section-10 .ratio-4x3 {
    aspect-ratio: auto !important;
    height: 400px !important;
  }

  .section-10 .ratio-4x3 > img {
    height: 100% !important;
    width: 100% !important;
    object-fit: cover;
  }
}

/* Section 11 styles */
.section-11 input.form-control,
.section-11 textarea.form-control {
  border-width: 1px;
  height: 60px;
  font-size: 0.9rem;
  font-weight: 300;
}

.section-11 textarea.form-control {
    height: auto !important;
}

.section-11 .has-error .icon-textarea {
    top: 5px !important;
}

.section-11 input.form-control:focus,
.section-11 .custom-textarea:focus {
  border-color: #8dae1a !important;
  box-shadow: 0 0 0 0.2rem rgba(141, 174, 26, 0.25);
}

.section-11 .btn-Hero {
  background-color: #8dae1a;
  color: #fff;
  padding: 14px 30px;
  border: none;
  border-radius: 0.4rem;
  transition: all 0.3s ease;
}

.section-11 .btn-Hero:hover {
  background-color: #7fa312;
  color: #fff;
}

.section-11 .form-check-input {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.section-11 .form-check-input:checked {
  background-color: #8dae1a;
  border-color: #8dae1a;
}

.section-11 .picdate-form-error {
    color: rgb(183, 6, 16);
    font-size: 0.9rem;
    margin-top: 0.25rem;
    display: none;
}

.section-11 .form-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 15px;
  font-size: 1.2rem;
}

.section-11 .form-control.ps-5 {
  padding-left: 3rem !important;
}

/* Upload Section */
.section-11 .upload-card {
  min-height: 90px;
  cursor: pointer;
  border-radius: 0.75rem;
  padding: 0.5rem;
  border: 1px solid #dee2e6;
  transition: box-shadow 0.15s ease, border-color 0.15s ease;
}

.section-11 .upload-card:focus,
.section-11 .upload-card:focus-within,
.section-11 .upload-card.focus-visible {
  outline: none;
  border-color: #9dc11d;
  box-shadow: 0 0 0 0.25rem rgba(157, 193, 29, 0.15);
}

.section-11 .upload-inner {
  width: 100%;
  border: 1px dashed #ced4da;
  border-radius: 0.5rem;
  padding: 1rem 1rem 1rem 0.8rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  background: transparent;
}

.section-11 .upload-text .title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
  font-size: 0.9rem;
  color: #111827;
}

.section-11 .upload-text .subtitle {
  margin: 0;
  margin-top: 0.25rem;
  font-size: 0.8rem;
  color: #6b7280;
}

/* Textarea icon */
.section-11 .icon-textarea {
  top: 5px;
}

/* Pick Days Dropdown inside Section 11 */
.section-11 .PickDays-dropdown {
  position: relative;
}

.section-11 .PickDays-dropdown-toggle {
  width: 100%;
  height: 60px;
  padding: 0.75rem 1rem 0.75rem 2.5rem;
  border: 1px solid #ced4da;
  border-radius: 0.375rem;
  background: #fff;
  font-size: 0.95rem;
  text-align: left;
  cursor: pointer;
  position: relative;
  transition: all 0.3s;
  display: flex;
  align-items: center;
}

.section-11 .PickDays-dropdown-toggle:focus {
  border-color: #8dae1a !important;
  box-shadow: 0 0 0 0.2rem rgba(141, 174, 26, 0.25);
  outline: none;
}

.section-11 .PickDays-dropdown-toggle::after {
  content: "▼";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s;
  font-size: 16px;
}

.section-11 .PickDays-dropdown-toggle.open::after {
  transform: translateY(-50%) rotate(180deg);
}

.section-11 .PickDays-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1000;
  display: none;
  margin-top: 5px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.section-11 .PickDays-dropdown-menu.show {
  display: block;
}

.section-11 .PickDays-dropdown-item {
  padding: 12px 18px;
  text-align: center;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  font-weight: 500;
  color: #555;
  cursor: pointer;
  transition: background 0.2s;
  margin: 10px;
  background-color: #fff;
  word-wrap: break-word;
}

.section-11 .PickDays-dropdown-item:hover {
  background: #f8f9fa;
}

.section-11 .PickDays-dropdown-item.active {
  background: #8dae1a;
  color: #fff;
}

.section-11 .PickDays-form-icon {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
}

/* Section-11 Pick Date Styles */
.section-11 .date-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  height: 60px;
  border: 1px solid #ced4da;
  border-radius: 0.375rem;
  padding: 0 0.75rem;
  background-color: #fff;
  width: 100%; /* Ensures full width like other inputs */
  box-sizing: border-box;
}

.section-11 .date-wrapper input {
  flex: 1;
  width: 100%;
  height: 100%;
  font-size: 1rem; /* Same as other inputs */
  background-color: transparent;
  border: none;
  outline: none;
  /*padding-left: 3rem; */
  cursor: pointer;
  box-sizing: border-box;
}

.section-11 .date-form-icon-left {
  position: absolute;
  left: 10px;
  font-size: 1.2rem;
  color: #a3a3a1;
  pointer-events: none;
}

.section-11 .date-form-icon-right {
  position: absolute;
  right: 10px;
  font-size: 1rem;
  color: #a3a3a1;
  transition: transform 0.3s ease;
  pointer-events: none;
}

.section-11 .date-calendar-container {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  background: #fff;
  border: 1px solid #ced4da;
  border-radius: 0.5rem;
  box-shadow: 0 3px 16px rgba(0, 0, 0, 0.2);
  margin-top: 4px;
  display: none;
  width: 100%;
}

.section-11 .date-calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0.75rem;
}

.section-11 .date-calendar-header button {
  border: none;
  background-color: #e0e0e0;
  font-weight: 600;
  font-size: 1.2rem;
  border-radius: 0.35rem;
  padding: 0.2rem 0.6rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.section-11 .date-calendar-header button:hover {
  background-color: #c4d45c80;
}

.section-11 .date-calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  padding: 0.5rem 0.75rem;
  gap: 4px;
}

.section-11 .date-calendar-day {
  width: 100%;
  text-align: center;
  padding: 0.4rem 0;
  border-radius: 0.35rem;
  background-color: #f9fafb;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #6c757d;
}

.section-11 .date-calendar-day:hover {
  background-color: #e0e0e0;
}

.section-11 .date-calendar-day.selected {
  background-color: #a2cd09d9;
  color: #fff;
}

.section-11 .date-calendar-day.today {
  background-color: #dbeafe;
  color: #3b82f6;
  border-radius: 0.35rem;
}

.section-11 .date-calendar-buttons {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 0.5rem 0.75rem 0.75rem 0.75rem;
}

.section-11 .date-calendar-buttons button {
  width: 48%;
  border-radius: 0.4rem;
  padding: 10px 0;
  font-weight: 500;
  cursor: pointer;
  border: none;
}

.section-11 .date-btn-confirm {
  background-color: #75a7f9;
  color: #fff;
}

.section-11 .date-btn-confirm:hover {
  background-color: #0b5ed7;
}

.section-11 .date-btn-clear {
  background-color: #e0e0e0;
  color: #fff;
}

.section-11 .date-btn-clear:hover {
  background-color: #5c636a;
}

.section-11 .date-form-error {
  color: #b70610;
  font-size: 0.9rem;
  margin-top: 0.25rem;
  display: none;
}

.section-11 .is-invalid {
  border-color: #b70610 !important;
  box-shadow: none !important;
}

.section-11 .date-btn-Hero {
  background-color: #8dae1a;
  color: #fff;
  padding: 14px 30px;
  border: none;
  border-radius: 0.4rem;
  transition: all 0.3s ease;
}

.section-11 .date-btn-Hero:hover {
  background-color: #7fa312;
}

/* Section 12 styles */
.section-12 .answer-option-section12 {
  cursor: pointer;
  position: relative;
  padding: 1rem;
  border: 2px #e8eaec solid;
  border-radius: 0.5rem;
  background: #fff;
  transition: all 0.3s ease;
  box-shadow: 0 0 6px rgb(0 0 0 / 0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
  user-select: none;
  height: 64px;
}

.section-12 .answer-option-section12:hover {
  background-color: #e8eaec;
}

.section-12 .answer-option-section12 span.icon {
  font-size: 1.25rem;
}

.section-12 .checkbox-custom-section12 {
  width: 24px;
  height: 24px;
  background: white;
  border: 2px #cdcfd1 solid;
  border-radius: 50%;
  box-shadow: inset 0 0 4px rgba(112, 111, 111, 0.1);
  flex-shrink: 0;
  position: relative;
  transition: border-color 0.3s ease;
}

.section-12 .checkbox-custom-section12::after {
  content: "✓";
  color: white;
  background-color: #9dc11d;
  border-radius: 50%;
  width: 21px;
  height: 21px;
  display: none;
  position: absolute;
  font-size: 16px;
  text-align: center;
  line-height: 20px;
  left: 0;
  top: 0;
}

.section-12 .answer-option-section12.active {
  border: 2px solid #8dae1a;
}

.section-12 .answer-option-section12.active .checkbox-custom {
  border-color: #8ea92b;
}

.section-12 .answer-option-section12.active .checkbox-custom::after {
  display: block;
}

.section-12 .active .checkbox-custom-section12 {
    background: #8dae1a;
}

.section-12 .btn-Hero {
  background-color: #8dae1a;
  color: #fff;
  padding: 14px 30px;
  border: none;
  border-radius: 0.4rem;
  transition: all 0.3s ease;
  font-weight: 700 !important;
}

.section-12 .btn-Hero:hover {
  background-color: #7fa312;
  color: #fff;
}

/* Section 13 styles */
.section-13 .answer-choice-section13 {
  cursor: pointer;
  position: relative;
  padding: 1rem;
  border: 2px #e8eaec solid;
  border-radius: 0.5rem;
  background-color: #9dc11d;
  transition: all 0.3s ease;
  box-shadow: 0 0 6px rgb(0 0 0 / 0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
  user-select: none;
  height: 64px;
}

.section-13 .answer-choice-section13:hover {
  background-color: #7fa312;
}

.section-13 .answer-choice-section13 span.icon {
  font-size: 1.25rem;
}

.section-13 .answer-choice-section13.active {
  background: #638400;
}

.section-13 .active .flex-grow-1.text-start.fw-semibold.text-dark {
    color: white !important;
}

/*.section-13 .answer-choice-section13.active .checkbox-custom {
  border-color: #8ea92b;
}*/

/*.section-13 .answer-choice-section13.active .checkbox-custom::after {
  display: block;
}*/

.section-13 .btn-Hero {
  background-color: #8dae1a;
  color: #fff;
  padding: 14px 30px;
  border: none;
  border-radius: 0.4rem;
  transition: all 0.3s ease;
}

.section-13 .btn-Hero:hover {
  background-color: #7fa312;
  color: #fff;
}

/* Section 14 styles */
.section-14 .custom-card-section14 {
  background-color: rgb(157, 193, 29);
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.5s ease-out, box-shadow 0.5s ease-out;
  position: relative;
}
.section-14 .custom-card-section14:active {
  transform: scale(0.9);
  transition-duration: 0.2s;
}
.section-14 .custom-card-section14:hover {
  transform: scale(1.05);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
.section-14 .custom-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.15);
  border-radius: 1rem;
  z-index: 10;
  width: 0;
  transition: width 0.7s cubic-bezier(0.33, 1, 0.68, 1);
}
.section-14 .custom-aspect-4-3 {
  position: relative;
  width: 100%;
  padding-bottom: 75%; /* 4:3 Aspect Ratio */
  overflow: hidden;
}
.section-14 .custom-img-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.section-14 .active {
    border: 2px solid #9dc11d;
    box-shadow: 0px 0rem 0px 4px rgb(157 193 29) !important;
}

.section-14 .btn-Hero {
  background-color: #8dae1a;
  color: #fff;
  padding: 14px 30px;
  border: none;
  border-radius: 0.4rem;
  transition: all 0.3s ease;
}

.section-14 .btn-Hero:hover {
  background-color: #7fa312;
  color: #fff;
}

.section-9 .has-error span, .section-10 .has-error span, .section-11 .has-error span {
  top: 35% !important;
}

[class^="section-"] .is-invalid .invalid-feedback {
    display: block;
}

.thankyou-section {
  /*min-height: 100vh;*/
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 2rem;
  box-sizing: border-box;
  background-color: #f8fafc;
}
.thankyou-section .thank-you-card {
  background-color: #ffffff;
  border-radius: 1.5rem;

  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
  animation: fadeInUp 0.6s ease-out;
}

.thankyou-section .thank-you-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.15);
}

.thankyou-section .card-header {
  background: linear-gradient(135deg, #198754, #20c997);
  color: white;
  padding: 2rem 1.5rem;
  text-align: center;
  border: none;
}

.thankyou-section .success-icon {
  width: 50px;
  height: auto;
  display: inline-block;
  animation: pulse 2s infinite;
  background-color: #e3e7eb;
  border-radius: 20px;
  padding: 10px;
}

.thankyou-section .success-home {
  width: 20px;
  height: auto;

  display: inline-block;
  background-color: #e3e7eb;
  border-radius: 20px;
  border-radius: 20px;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.thankyou-section .card-body {
  padding: 2.5rem 2rem;
  text-align: center;
}

.thankyou-section .card-title {
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.thankyou-section .card-text {
  color: #6c757d;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.thankyou-section .btn-home {
  background-color: #157347;
  border: none;
  border-radius: 50px;
  padding: 0.8rem 2rem;
  font-weight: 600;
  font-size: 1.05rem;
  color: white;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.thankyou-section .btn-home:hover {
  background-color: #317555;
  transform: translateY(-3px);
  box-shadow: 0 0.5rem 1rem rgba(25, 135, 84, 0.3);
}

.thankyou-section .btn-home i {
  font-size: 1.2rem;
}

/* Mobile responsiveness */
@media (max-width: 576px) {
  .thankyou-section .card-header {
    padding: 1.5rem 1rem;
  }
  .thankyou-section .success-icon {
    font-size: 3rem;
  }
  .thankyou-section .card-body {
    padding: 2rem 1.5rem;
  }
  .thankyou-section .card-title {
    font-size: 1.5rem;
  }
  .thankyou-section .card-text {
    font-size: 1rem;
  }
  .thankyou-section .btn-home {
    padding: 0.7rem 1.8rem;
    font-size: 1rem;
    width: 100%;
    justify-content: center;
  }
}

/* Tablet responsiveness */
@media (min-width: 577px) and (max-width: 992px) {
  .thankyou-section .thank-you-card {
    max-width: 450px;
  }
  .thankyou-section .card-body {
    padding: 2.2rem 1.8rem;
  }
  .thankyou-section .card-title {
    font-size: 1.7rem;
  }
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}