.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  /* padding: 20px; */
}
.quote-header {
  background-color: #002b3e;
  color: white;
  font-size: 20px;
  font-weight: 400;
  padding: 14px 20px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  width: 100%;
  max-width: 900px;

  text-align: center;
  margin-right: 0;
  margin-bottom: 0;
}
.quote-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 0 16px;
  padding: 14px 20px;
}

.quote-header h2 {
  flex: 1;
  text-align: center;
  margin: 0;
  font-size: 24px;
}

.quote-close-img {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.progress4GLQuoteModal {
  background-color: #fff;
  border-radius: 12px;
  width: 100%;
  max-width: 900px;
  /* padding: 30px; */
  display: flex;
  flex-wrap: wrap;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  flex-direction: column;
  gap: 20px;
}

.progress-step {
  width: 100%;
  text-align: center;
}

.progress-step h3 {
  margin-bottom: 20px;
  font-size: 18px;
  color: #002c3d;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: #eee;
  border-radius: 4px;
  overflow: hidden;
}

.progress-fill {
  width: 0%;
  height: 100%;
  background: #ecc94b;
  animation: fillBar 2s forwards;
}

@keyframes fillBar {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
.form-step {
  padding: 30px;
  margin-top: 0;
  padding-top: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  width: 100%; /* ✅ Ensure it takes full width */
  pointer-events: auto; /* ✅ Allow interaction */
  z-index: 1001; /* ✅ Ensure it's above */
}
.form-section {
  flex: 1 1 400px;
  z-index: 1002;
  height: 600px;
  pointer-events: auto;
  overflow: auto;
}
.form-section::-webkit-scrollbar {
  width: 3px; /* make it thinner */
}

.form-section::-webkit-scrollbar-track {
  background: transparent; /* or use a light color */
}

.form-section::-webkit-scrollbar-thumb {
  background-color: #ccc; /* scrollbar color */
  border-radius: 3px;
}

.form-section::-webkit-scrollbar-thumb:hover {
  background-color: #999;
}

.form-section label {
  display: block;
  margin-top: 10px;
  font-weight: 600;
  font-size: 14px;
  color: #666666; /* ✅ Dark gray (you can adjust this) */
}
.required-star {
  color: red;
}

.form-section input,
.form-section select {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  margin-bottom: 14px;
  padding-right: 20px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  color: #1a202c; /* ✅ dark text */
  background-color: #fff; /* ✅ white background */
}

.company-size-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.company-size-buttons button {
  border: 1px solid #ccc;
  background: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  color: #333333;
}

.company-size-buttons button.selected {
  background-color: #002b3e; /* blue */
  border-color: #002b3e;
  color: white;
}
.send-button {
  background-color: #e8c63d;
  padding: 0px 0px;
  border-radius: 6px;
  border: none;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
}
.send-button {
  position: relative;
  background-color: #ccc; /* default inactive color */
  color: #272727;
  cursor: not-allowed;
  transition: background-color 0.3s;
  height: 40px;
  width: 200px;
}

.send-button.active {
  background-color: #e8c63d; /* yellow */
  color: #272727;
  cursor: pointer;
}
.btn-loader {
  position: absolute;
  right: 90px;
  top: 50%;
  width: 16px;
  height: 16px;
  margin-top: -8px;
  border: 2px solid #fff;
  border-top: 2px solid #002b3e;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  display: inline-block;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.illustration {
  flex: 1 1 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.arrow-icon {
  width: 18px;
  height: 18px;
}

#snackbar {
  visibility: hidden;
  min-width: 280px;
  max-width: 80%;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 16px 24px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10001;
  font-size: 16px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

#snackbar.show {
  visibility: visible;
  opacity: 1;
}

#snackbar.success {
  background-color: #208825; /* Green */
  border-left: 6px solid #52b857;
}

#snackbar.error {
  background-color: #d43345; /* Red */
  border-left: 6px solid #f56273;
}
.iti__country-list {
  background-color: #fff !important; /* Make background white */
  color: #000 !important; /* Make text black */
}

.iti__country {
  color: #000 !important; /* Individual country name text */
}

.iti__dial-code {
  color: #444 !important; /* Optional: dial code color */
}
@media (max-width: 768px) {
  .progress4GLQuoteModal {
    max-width: 95%;
    border-radius: 12px;
    box-shadow: none;
    flex-direction: column;
    gap: 16px;
  }

  .quote-header {
    font-size: 18px;
    padding: 12px 16px;
  }

  .quote-header h2 {
    font-size: 18px;
  }

  .quote-close-img {
    width: 18px;
    height: 18px;
  }

  .form-step {
    flex-direction: column;
    gap: 20px;
    padding: 20px 16px;
  }

  .form-section {
    height: auto;
    max-height: 400px;
    overflow-y: auto;
  }

  .illustration {
    display: none; /* hide image on mobile to save space */
  }

  .form-section input,
  .form-section select {
    font-size: 14px;
    padding: 8px;
  }

  .company-size-buttons {
    gap: 8px;
  }

  .company-size-buttons button {
    padding: 6px 10px;
    font-size: 13px;
  }

  .send-button {
    width: 100%;
    height: 42px;
    font-size: 15px;
  }

  .btn-loader {
    right: 50%;
    margin-right: -8px;
  }

  #snackbar {
    width: 90%;
    max-width: 90%;
    padding: 14px 20px;
    font-size: 14px;
  }
}
/*Progess4GL TopBanner*/

#progress4GHeaderPage {
  background-image: url("../images/microsoftFabric/righttopbanner.png"),
    url("../images/microsoftFabric/lefttopbanner.png");
  background-repeat: no-repeat, no-repeat;
  background-position: right, left;
  background-size: contain, contain;
  width: 100%;
  min-height: 380px;
  background-color: #106a60;
  display: flex;
  justify-content: center;
  align-items: center;
}

#progress4GLContainer {
  display: flex;
  align-items: center;
  flex-direction: row;
  min-height: auto;
  gap: 30px;
}

#progress4GLContainer .progress4GLcontent {
  display: flex;
  align-items: center;
  flex-direction: row;
  min-height: auto;
  flex: 1;
}
#progress4GLContainer .progress4GLButtons {
  flex: 1.5;
  padding-top: 8%;
}
#progress4GLContainer .progress4GLtag-btn {
  background-color: #caffe3;
  border: none;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 14px;
  color: #424242;
  font-size: 17px;
  font-weight: 400;
  font-family: "Poppins";
  white-space: nowrap;
  margin-bottom: 15px;
  margin-right: 10px;
  word-wrap: break-word;
  white-space: normal;
  max-width: 100%;
  box-sizing: border-box;
  text-align: start;
  cursor: auto;
}
/*Responsiveness of TopBanner*/
@media (max-width: 768px) {
  #progress4GLContainer {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 30%;
  }
  #progress4GHeaderPage {
    background-position: bottom right, top left;
  }
}
