/* Loader */
.loader {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #d92b2b;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    animation: spin 1s linear infinite;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
}
@keyframes spin { 0% { transform: rotate(0deg);} 100% { transform: rotate(360deg);} }

/* ===== Tabs ===== */
.edit-tabs {
  display: flex;
  gap: 24px;
  border-bottom: 1px solid #eee;
}
.edit-tabs a {
  padding: 14px 0;
  font-size: 14px;
  color: rgba(128, 128, 128, 1);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  font-weight: 500;
}
.edit-tabs a.active {
    color: rgba(13, 13, 13, 1);
    border-color: #ff3b3b;
    font-weight: 600;
}

/* ===== Layout ===== */
.edit-body {
  display: flex;
  gap: 24px;
  margin-top: 24px;
}

/* ===== Sidebar ===== */
.edit-sidebar {
  width: 220px;
  border: 1px solid #eee;
  border-radius: 10px;
  background: #fff;
}
.edit-sidebar a {
  display: block;
  padding: 14px 16px;
  text-decoration: none;
  color: #555;
  border-left: 3px solid transparent;
}
.edit-sidebar a.active {
    background: rgba(255, 110, 128, 1);
    border-left-color: #1a1a1a;
    color: #fff;
    font-weight: 500;
    border-radius: 8px;
}

/* ===== Content ===== */
.edit-content {
  flex: 1;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 24px;
}

/* ===== Sections ===== */
.section-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  color: rgba(13, 13, 13, 1);
}

/* ===== Display Pictures ===== */
.display-pictures {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
  margin-bottom: 30px;
}
.pic-box {
  border: 2px dashed rgba(242, 109, 125, 1);
  border-radius: 10px;
  padding: 24px;
  text-align: center;
}
.pic-box img {
  width: 42px;
  opacity: .6;
  margin-bottom: 10px;
}
.pic-box strong {
    display: block;
    margin-bottom: 6px;
    color: rgba(13, 13, 13, 1);
    font-weight: 500;
}

/* ===== Form ===== */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
}
.form-group label {
  font-size: 13px;
  margin-bottom: 6px;
  display: block;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #ddd;
}
.form-group textarea {
  min-height: 90px;
}

/* ===== Buttons ===== */
.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 24px;
}
.btn-cancel {
  padding: 10px 18px;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 6px;
}
.btn-save {
  padding: 10px 20px;
  background: #ff3b3b;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

/* ===== Tabs Panels ===== */
.tab-panel {
  display: none;
}
.tab-panel.active {
  display: block;
}

.pic-box small {
    font-size: 66% !important;
}

.notice {
    background: red;
    padding: 5px 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    color: #fff;
}

/* location section css start */
/* ===== Locations ===== */

.location-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.add-location-btn {
  background: transparent;
  border: none;
  color: #ff3b3b;
  font-size: 13px;
  cursor: pointer;
}

.location-card {
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  background: #fff;
}

.location-left h4 {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 600;
}

.hq-badge {
  background: #ff6e80;
  color: #fff;
  font-size: 11px;
  padding: 7px 10px 5px 10px;
  border-radius: 20px;
  margin-left: 8px;
}

.location-meta {
  font-size: 13px;
  color: #555;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.location-actions {
    font-size: 12px;
    display: flex;
    gap: 14px;
    cursor: pointer;
    margin-top: 60px;
}

/* ===== Location Form ===== */

.location-form-wrapper {
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 20px;
  margin-top: 20px;
  display: none;
  background: #fafafa;
}

.location-form-wrapper h4 {
  margin-bottom: 16px;
  font-size: 15px;
  font-weight: 600;
}



.location-actions a img {
    width: 20px;
}


.location-meta div {
    display: flex;
    gap: 10px;
    margin-bottom: 8px;
}


.company-location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.company-location-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    position: relative;
    transition: 0.3s ease;
}

.company-location-card:hover {
    transform: translateY(-5px);
}

.hq-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ffe9ec;
    color: #e30613;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 20px;
}

.company-location-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.company-location-card p {
    font-size: 14px;
    color: #666;
}

.location-meta {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 14px;
}

.location-meta a {
    color: #0d6efd;
    text-decoration: none;
}

.location-meta a:hover {
    text-decoration: underline;
}

.company-location-card .location-meta img {
    width: 20px;
    height: 18px;
}

.location-icon-front {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.location-icon-front img {
    margin-top: 2px;
}

.company-location-card .location-icon img {
    width: 23px;
}

@media(max-width:768px){
    .company-location-card {
        padding: 20px;
    }
}


/* Leadership section css start */

.leader-card {
    max-width: 900px;
    margin: 40px auto;
    padding: 50px 20px;
    border: 2px solid #ffb6c1;
    border-radius: 20px;
    text-align: center;
    background: #ffffff;
}

/* ICON */
.leader-icon {
    margin-bottom: 20px;
}

.icon-head {
    width: 26px;
    height: 26px;
    background: #2c3e50;
    border-radius: 50%;
    margin: 0 auto 6px;
}

.icon-group {
    display: flex;
    justify-content: center;
    gap: 6px;
}

.icon-person {
    width: 20px;
    height: 20px;
    background: linear-gradient(180deg, #6ec1ff, #007bff);
    border-radius: 50%;
}

/* TEXT */
.leader-title {
    font-size: 28px;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
}

.leader-text {
    font-size: 15px;
    color: #9aa0a6;
    max-width: 520px;
    margin: 0 auto 25px;
    line-height: 1.6;
}

/* BUTTON */
.leader-btn {
    display: inline-block;
    padding: 12px 32px;
    background: #ff5f6d;
    color: #fff;
    border-radius: 10px;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s ease;
}

.leader-btn:hover {
    background: #e94b59;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .leader-title {
        font-size: 22px;
    }

    .leader-text {
        font-size: 14px;
    }

    .leader-btn {
        padding: 10px 26px;
        font-size: 14px;
    }
}


/* Leadership section css end */

/* Certifications Page css start */

.compliance-card {
    max-width: 900px;
    margin: 40px auto;
    padding: 50px 20px;
    border: 2px solid #ffb6c1;
    border-radius: 20px;
    text-align: center;
    background: #fff;
}

/* ICON */
.certificate-icon {
    position: relative;
}


.certificate-line {
    width: 60%;
    height: 4px;
    background: #5f6c7b;
    border-radius: 4px;
    margin: 8px auto 4px;
}

.certificate-line.short {
    width: 40%;
}


/* TEXT */
.compliance-title {
    font-size: 28px;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
}

.compliance-text {
    font-size: 15px;
    color: #9aa0a6;
    max-width: 520px;
    margin: 0 auto 25px;
    line-height: 1.6;
}

/* BUTTON */
.compliance-btn {
    display: inline-block;
    padding: 12px 32px;
    background: #ff5f6d;
    color: #fff;
    border-radius: 10px;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s ease;
    margin-bottom: 12px;
}

.compliance-btn:hover {
    background: #e94b59;
}

/* LINK */
.compliance-link {
    font-size: 13px;
    color: #ff5f6d;
    cursor: pointer;
}

.certificate-icon img {
    text-align: center;
    margin: 15px auto;
}
/* RESPONSIVE */
@media (max-width: 768px) {
    .compliance-title {
        font-size: 22px;
    }

    .compliance-text {
        font-size: 14px;
    }

    .compliance-btn {
        padding: 10px 26px;
        font-size: 14px;
    }
}


/* INTRO CARD */
.compliance-card {
  border: 2px solid #ffd6db;
  border-radius: 20px;
  padding: 50px 20px;
  text-align: center;
  background: #fff;
}

.compliance-title {
  font-size: 28px;
  font-weight: 600;
  margin-top: 20px;
}

.compliance-text {
  color: #777;
  max-width: 520px;
  margin: 12px auto 25px;
}

.compliance-btn {
  display: inline-block;
  background: #ff5c6c;
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  cursor: pointer;
}

.compliance-link {
  margin-top: 10px;
  color: #ff5c6c;
  font-size: 14px;
}

/* FORM */
.compliance-form-wrapper {
  display: none;
  border: 2px solid #ffd6db;
  border-radius: 20px;
  padding: 30px;
  background: #fff;
}

.form-header {
  margin-bottom: 20px;
}

.back-btn {
  cursor: pointer;
  color: #777;
}

.form-body {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.upload-box {
  width: 260px;
  height: 180px;
  border: 2px dashed #ff5c6c;
  border-radius: 12px;
  text-align: center;
  padding: 20px;
  color: #ff5c6c;
}

.upload-icon {
  font-size: 28px;
  margin-bottom: 8px;
}

.form-fields {
  flex: 1;
}

.form-fields label {
  display: block;
  margin: 15px 0 5px;
}

.form-fields input,
.form-fields select {
  width: 100%;
  padding: 10px;
  border: none;
  border-bottom: 1px solid #ccc;
  outline: none;
}

/* FOOTER */
.form-footer {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 30px;
}

.btn-outline {
  border: 1px solid #ff5c6c;
  color: #ff5c6c;
  background: transparent;
  padding: 10px 18px;
  border-radius: 8px;
}

.btn-primary {
  background: #ff5c6c;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  display: block !important;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .form-body {
    flex-direction: column;
  }

  .upload-box {
    width: 100%;
  }
}


.certification-list-wrapper {
  margin-top: 30px;
}

.certification-list-wrapper h3 {
  margin-bottom: 15px;
}

.certification-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #ffd6db;
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 12px;
  background: #fff;
}

.certification-info strong {
  display: block;
}

.certification-info span {
  font-size: 13px;
  color: #666;
}

.certification-file {
  font-size: 13px;
  color: #ff5c6c;
}


.ss-main .ss-single-selected {
    width: 50%;
    height: 50px;
    padding: 10px;
}
.ss-main .ss-content {
  width: 50%;
}
.ss-main .ss-multi-selected {
    width: 80%;
    padding: 10px;
}

  @media (max-width:950px) {
  .content {
    margin: 15px 10px auto;
    padding: 0 10px;
    width: 500px;
    display: flex;
    justify-content: center;
    align-items: left;
    text-align: center;
    flex-direction: column;
  }
}


/* List */
.certification-item {
  border: 1px solid #ffd6db;
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 12px;
  background: #fff;
  display: flex;
  justify-content: space-between;
}

.certification-item strong {
  display: block;
}

.certification-item span {
  font-size: 13px;
  color: #666;
}


.upload-box {
  cursor: pointer;
  transition: all 0.2s ease;
}

.upload-box.drag-over {
  border-color: #ff5c6c;
  background: #fff0f3;
}


/* Certifications Page css end */





/* Portfolio Page css start */

.portfolio-wrapper {
    max-width: 1000px;
}

/* TABS */
.tabs {
    display: flex;
    gap: 30px;
    border-bottom: 1px solid #eee;
    margin-bottom: 40px;
    background: #ffffff;
    padding: 1px 14px;
}

.tab {
    padding: 12px 0;
    font-size: 14px;
    cursor: pointer;
    color: #777;
    position: relative;
}

.tab.active {
    color: #000;
    font-weight: 500;
}

.tab.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 2px;
    background: #ff5f6d;
}

/* TAB CONTENT */
.tab-content {
    display: none;
    padding: 40px;
}

.tab-content.active {
    display: block;
}

/* EMPTY CARD */
.empty-card {
    max-width: 850px;
    margin: 0 auto;
    padding: 50px 20px;
    border: 2px solid #ffb6c1;
    border-radius: 20px;
    text-align: center;
    background: #fff;
}

/* ICON */
.empty-icon {
    position: relative;
    margin-bottom: 20px;
}

.icon-box {
    width: 46px;
    height: 32px;
    background: linear-gradient(180deg, #6ec1ff, #007bff);
    border-radius: 6px;
    margin: 0 auto;
}

.icon-close {
    width: 18px;
    height: 18px;
    background: #3b82f6;
    color: #fff;
    border-radius: 50%;
    position: absolute;
    top: -6px;
    right: calc(50% - 26px);
    font-size: 14px;
    line-height: 18px;
}

/* TEXT */
.empty-title {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 10px;
}

.empty-text {
    font-size: 15px;
    color: #9aa0a6;
    max-width: 520px;
    margin: 0 auto 25px;
    line-height: 1.6;
}

/* BUTTON */
.empty-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #ff5f6d;
    color: #fff;
    border-radius: 10px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
}

.empty-btn:hover {
    background: #e94b59;
}

.portfolio-wrapper .empty-icon img {
    margin: 0 auto;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .tabs {
        gap: 20px;
    }

    .empty-title {
        font-size: 22px;
    }

    .empty-text {
        font-size: 14px;
    }
}



/* ===============================
   COMMON RESET
================================ */
.portfolio-wrapper,
.portfolio-form-wrapper,
.portfolio-list-wrapper {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  background: #fff;
  padding: 30px;
}

/* ===============================
   TABS
================================ */
.tabs {
  display: flex;
  gap: 24px;
  border-bottom: 1px solid #eee;
  margin-bottom: 24px;
}

.tab {
  padding: 10px 0;
  font-weight: 500;
  cursor: pointer;
  color: #666;
  position: relative;
}

.tab.active {
  color: #ff4d67;
}

.tab.active::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -11px;
  width: 100%;
  height: 2px;
  background: #ff4d67;
}

/* ===============================
   EMPTY CARD
================================ */
.empty-card {
  border: 1px dashed #ffd6dc;
  border-radius: 12px;
  padding: 40px 20px;
  text-align: center;
}

.empty-icon img {
  width: 56px;
  margin-bottom: 12px;
}

.empty-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}

.empty-text {
  font-size: 14px;
  color: #777;
  margin-bottom: 18px;
}

.empty-btn {
  display: inline-block;
  background: #ff4d67;
  color: #fff;
  padding: 10px 22px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
}

/* ===============================
   FORM HEADER
================================ */
.form-header {
  margin-bottom: 24px;
}

.back-btn {
  font-size: 14px;
  cursor: pointer;
  color: #444;
}

/* ===============================
   DISPLAY RADIO
================================ */
.display-options {
  display: flex;
  gap: 24px;
  margin-bottom: 20px;
}

.display-options label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  cursor: pointer;
}

/* ===============================
   UPLOAD BOX
================================ */
.upload-box {
  border: 1px dashed #ff4d67;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  cursor: pointer;
  margin-bottom: 28px;
}

.upload-box .upload-icon {
  font-size: 28px;
  color: #ff4d67;
  margin-bottom: 6px;
}

.upload-box p {
  font-size: 14px;
  margin: 0;
}

.upload-box small {
  font-size: 12px;
  color: #777;
}

/* ===============================
   FORM FIELDS
================================ */
.form-fields {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-bottom: 28px;
}

.form-fields label {
  font-size: 13px;
  color: #666;
  display: block;
  margin-bottom: 6px;
}

.form-fields input,
.form-fields select,
.form-fields textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #ddd;
  padding: 8px 0;
  font-size: 14px;
  outline: none;
}

.form-fields textarea {
  resize: vertical;
  min-height: 90px;
}

/* FULL WIDTH TEXTAREAS */
.form-fields textarea {
  grid-column: span 2;
}

/* ===============================
   DATE FIELDS
================================ */
.date-fields {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-bottom: 30px;
}

/* ===============================
   FORM FOOTER
================================ */
.form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
}

.btn-outline {
  background: transparent;
  border: 1px solid #ff4d67;
  color: #ff4d67;
  padding: 10px 22px;
  border-radius: 8px;
  cursor: pointer;
}

.btn-primary {
  background: #ff4d67;
  color: #fff;
  padding: 10px 26px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-primary .loader {
  width: 16px;
  height: 16px;
  border: 2px solid #fff;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ===============================
   PORTFOLIO LIST
================================ */
.portfolio-list {
  display: grid;
  gap: 16px;
}

.portfolio-item {
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 16px;
}

.portfolio-item strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {

  .form-fields {
    grid-template-columns: 1fr;
  }

  .form-fields textarea {
    grid-column: span 1;
  }

  .date-fields {
    grid-template-columns: 1fr;
  }

  .form-footer {
    flex-direction: column-reverse;
    align-items: stretch;
  }

  .btn-outline,
  .btn-primary {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {

  .upload-box {
    padding: 20px;
  }

  .empty-card {
    padding: 30px 16px;
  }
}


/* ===============================
   PORTFOLIO FORM WRAPPER
================================ */
.portfolio-form-wrapper {
  max-width: 980px;
  margin: 0 auto;
  background: #fff;
}

/* BACK */
.portfolio-form-wrapper .form-header {
  margin-bottom: 24px;
}

.portfolio-form-wrapper .back-btn {
  font-size: 14px;
  color: #444;
  cursor: pointer;
}

/* ===============================
   DISPLAY OPTIONS (IMAGE / VIDEO)
================================ */
.display-options {
  display: flex;
  gap: 24px;
  margin-bottom: 20px;
}

.display-options label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  cursor: pointer;
}

/* ===============================
   UPLOAD BOX
================================ */
.portfolio-form-wrapper .upload-box {
  border: 1px dashed #ff4d67;
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  cursor: pointer;
  margin-bottom: 30px;
}

.portfolio-form-wrapper .upload-icon {
  font-size: 28px;
  color: #ff4d67;
  margin-bottom: 6px;
}

.portfolio-form-wrapper .upload-box p {
  font-size: 14px;
  margin: 0;
}

.portfolio-form-wrapper .upload-box small {
  font-size: 12px;
  color: #777;
}

/* ===============================
   FORM FIELDS
================================ */
.portfolio-form-wrapper .form-fields {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-bottom: 30px;
}

.portfolio-form-wrapper label {
  font-size: 13px;
  color: #666;
  margin-bottom: 6px;
  display: block;
}

.portfolio-form-wrapper input,
.portfolio-form-wrapper select,
.portfolio-form-wrapper textarea {
    border: none;
    border-bottom: 1px solid #ddd;
    padding: 8px 0;
    font-size: 14px;
    outline: none;
    margin-right: 5px;
}

.portfolio-form-wrapper textarea {
  min-height: 90px;
  resize: vertical;
}

/* Full width textareas */
.portfolio-form-wrapper textarea {
  grid-column: span 2;
}

/* ===============================
   FORM FOOTER
================================ */
.portfolio-form-wrapper .form-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 30px;
}

.portfolio-form-wrapper .btn-outline {
  border: 1px solid #ff4d67;
  background: transparent;
  color: #ff4d67;
  padding: 10px 24px;
  border-radius: 8px;
  cursor: pointer;
}

.portfolio-form-wrapper .btn-primary {
  background: #ff4d67;
  color: #fff;
  padding: 10px 28px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

.portfolio-form-wrapper .loader {
  width: 16px;
  height: 16px;
  border: 2px solid #fff;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ===============================
   FORM RESPONSIVE
================================ */
@media (max-width: 768px) {

  .portfolio-form-wrapper .form-fields {
    grid-template-columns: 1fr;
  }

  .portfolio-form-wrapper textarea {
    grid-column: span 1;
  }

  .portfolio-form-wrapper .form-footer {
    flex-direction: column-reverse;
  }

  .portfolio-form-wrapper .btn-outline,
  .portfolio-form-wrapper .btn-primary {
    width: 100%;
    justify-content: center;
  }
}


.display-type {
    display: flex;
    gap: 22px;
    margin-bottom: 30px;
}


/* ===============================
   PORTFOLIO SELECT GRID
================================ */
.portfolio-select-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 32px;
    margin-bottom: 30px;
}

/* FIELD GROUP */
.portfolio-select-grid .field-group {
    display: flex;
    flex-direction: column;
}

/* LABEL */
.portfolio-select-grid label {
    font-size: 13px;
    color: #555;
    margin-bottom: 6px;
}

/* SELECT */
.portfolio-select-grid select {
    width: 100%;
    border: none;
    border-bottom: 1px solid #ddd;
    padding: 8px 0;
    font-size: 14px;
    color: #333;
    background: transparent;
    outline: none;
    cursor: pointer;
}

/* ARROW FIX (optional clean look) */
.portfolio-select-grid select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23999'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    background-size: 10px;
    padding-right: 16px;
}

/* ===============================
   MOBILE RESPONSIVE
================================ */
@media (max-width: 768px) {
    .portfolio-select-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}


.form-fields.full-width {
    width: 100%;
}

.form-fields.full-width input {
    width: 100%;
}


/* =========================
   PORTFOLIO LIST WRAPPER
========================= */
.portfolio-list-wrapper {
    background: #fff;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.04);
}

.portfolio-list-wrapper h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #111;
}

/* ================================
   PORTFOLIO LIST – PREMIUM ROW UI
================================ */

.portfolio-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* CARD */
.portfolio-item {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 18px 22px;
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #ffe1e3;
    transition: all 0.25s ease;
}

.portfolio-item:hover {
    border-color: #ff4d5a;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

/* IMAGE */
.portfolio-thumb {
    width: 240px;
    height: 130px;
    border-radius: 10px;
    overflow: hidden;
    background: #f6f6f6;
    flex-shrink: 0;
}

.portfolio-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.portfolio-item:hover .portfolio-thumb img {
    transform: scale(1.05);
}

/* CONTENT */
.portfolio-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.portfolio-content strong {
    font-size: 18px;
    font-weight: 600;
    color: #111;
}

.portfolio-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    max-width: 620px;
}

/* ACTION */
.portfolio-actions {
    margin-top: 6px;
}

.portfolio-actions .view-portfolio-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid #ff4d5a;
    background: transparent;
    color: #ff4d5a;
    cursor: pointer;
    transition: all .25s ease;
}

.portfolio-actions .view-portfolio-btn:hover {
    background: #ff4d5a;
    color: #fff;
}

/* ================================
   RESPONSIVE
================================ */

@media (max-width: 991px) {
    .portfolio-thumb {
        width: 200px;
        height: 120px;
    }
}

@media (max-width: 768px) {

    .portfolio-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px;
    }

    .portfolio-thumb {
        width: 100%;
        height: 180px;
    }

    .portfolio-content p {
        max-width: 100%;
    }
}


/* =====================================
   PORTFOLIO DETAIL VIEW – PREMIUM UI
===================================== */

.portfolio-detail-wrapper {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px;
    margin-top: 24px;
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.06);
}

/* HEADER */
.portfolio-detail-header {
    margin-bottom: 18px;
}

.portfolio-detail-header .back-btn {
    font-size: 14px;
    font-weight: 500;
    color: #ff4d5a;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.portfolio-detail-header .back-btn:hover {
    text-decoration: underline;
}

/* CARD */
.portfolio-detail-card {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

/* IMAGE / VIDEO */
.detail-thumb,
.detail-video {
    width: 100%;
    max-height: 420px;
    border-radius: 14px;
    overflow: hidden;
    background: #f4f4f4;
}

.detail-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-video a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 260px;
    width: 100%;
    background: #000;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
}

/* TITLE */
.portfolio-detail-card h2 {
    font-size: 26px;
    font-weight: 600;
    color: #111;
    margin: 0;
}

/* META INFO */
.detail-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px 24px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.detail-meta li {
    font-size: 14px;
    color: #555;
}

.detail-meta li strong {
    color: #111;
    font-weight: 600;
}

/* SECTIONS */
.portfolio-detail-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #111;
}

.portfolio-detail-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

/* =====================================
   RESPONSIVE
===================================== */

/* TABLET */
@media (max-width: 991px) {

    .detail-meta {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-detail-card h2 {
        font-size: 22px;
    }
}

/* MOBILE */
@media (max-width: 576px) {

    .portfolio-detail-wrapper {
        padding: 18px;
    }

    .detail-meta {
        grid-template-columns: 1fr;
    }

    .detail-video a {
        height: 200px;
        font-size: 16px;
    }

    .portfolio-detail-card h2 {
        font-size: 20px;
    }

    .portfolio-detail-card h4 {
        font-size: 16px;
    }

    .portfolio-detail-card p {
        font-size: 14px;
    }
}



/* =======================================
   KEY CLIENT LIST WRAPPER
======================================= */
.keyclient-list-wrapper {
    padding: 40px 30px;
    border-radius: 14px;
}

.keyclient-list-wrapper h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #111;
}

/* =======================================
   GRID LAYOUT
======================================= */
.keyclient-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

/* =======================================
   SINGLE CLIENT CARD
======================================= */
.key-client-item {
    background: #ffffff;
    border-radius: 14px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    position: relative;
    display: flex;
    gap: 30px;
}

.key-client-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
    border-color: #e5e7eb;
}

/* =======================================
   CLIENT LOGO
======================================= */
.key-client-item img {
    width: 190px;
    height: auto;
    object-fit: contain;
    transition: 0.3s ease;
}

.key-client-item:hover img {
    transform: scale(1.05);
}

/* =======================================
   CLIENT NAME
======================================= */
.key-client-item span {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #222;
    margin-top: 5px;
    word-break: break-word;
}

/* =======================================
   EMPTY STATE STYLE
======================================= */
.keyclient-list:empty::after {
    content: "No key clients added yet.";
    display: block;
    text-align: center;
    padding: 40px;
    background: #fff;
    border-radius: 12px;
    border: 1px dashed #ddd;
    color: #888;
}

/* =======================================
   RESPONSIVE DESIGN
======================================= */

/* Tablets */
@media (max-width: 992px) {
    .keyclient-list-wrapper {
        padding: 30px 20px;
    }

    .keyclient-list {
        gap: 20px;
    }
}

/* Mobile */
@media (max-width: 600px) {

    .keyclient-list-wrapper {
        padding: 20px 15px;
    }

    .keyclient-list {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }

    .key-client-item {
        padding: 18px 15px;
    }

    .key-client-item img {
        width: 70px;
        height: 70px;
    }

    .key-client-item span {
        font-size: 14px;
    }
}



.portfolio-front {
    margin-top: 40px;
}

.portfolio-front-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.portfolio-front-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.portfolio-front-card:hover {
    transform: translateY(-6px);
}

.portfolio-front-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.portfolio-front-video {
    background: #000;
    color: #fff;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.portfolio-front-content {
    padding: 15px;
}

.portfolio-front-title {
    font-size: 20px;
    margin-bottom: 8px;
}

.portfolio-front-industry {
    display: inline-block;
    font-size: 13px;
    background: #f2f2f2;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.portfolio-front-intro {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.portfolio-front-btn {
    display: inline-block;
    padding: 8px 14px;
    background: #e30613;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
}



.key-clients-front {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.key-clients-front .key-client-item {
    text-align: center;
    flex-direction: column;
    padding: 15px !important;
}

.key-clients-front .key-client-item img
 {
    width: 100%;
    height: 100px;
    object-fit: contain;
    margin: 0 auto;
}

.key-clients-front .client-logo-box {
    background: #ffffff;
    border-radius: 18px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    transition: 0.3s ease;
}

.key-clients-front .client-logo-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 35px rgba(0,0,0,0.10);
}

.key-clients-front .client-logo-box img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}

.key-clients-front .client-name {
    margin-top: 14px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    white-space: nowrap;   /* 🔥 Prevent vertical breaking */
}




/* Portfolio Page css end */

/* industry Page css start */

.recognition-card {
    max-width: 900px;
    margin: 40px auto;
    padding: 50px 20px;
    border: 2px solid #ffb6c1;
    border-radius: 20px;
    text-align: center;
    background: #fff;
}

/* ICON */
.recognition-icon {
    position: relative;
    margin-bottom: 20px;
}

.badge {
    width: 52px;
    height: 52px;
    background: #ffcc4d;
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
}

.star {
    color: #fff;
    font-size: 26px;
    line-height: 52px;
}

.ribbon {
    width: 14px;
    height: 26px;
    background: #3b82f6;
    position: absolute;
    bottom: -10px;
}

.ribbon.left {
    left: calc(50% - 22px);
    border-radius: 0 0 6px 6px;
}

.ribbon.right {
    right: calc(50% - 22px);
    border-radius: 0 0 6px 6px;
}

/* TEXT */
.recognition-title {
    font-size: 26px;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
}

.recognition-text {
    font-size: 15px;
    color: #9aa0a6;
    max-width: 520px;
    margin: 0 auto 25px;
    line-height: 1.6;
}

/* BUTTON */
.recognition-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #ff5f6d;
    color: #fff;
    border-radius: 10px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s ease;
}

.recognition-btn:hover {
    background: #e94b59;
}

.recognition-icon img {
    margin: 0 auto;
    width: 100px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .recognition-title {
        font-size: 22px;
    }

    .recognition-text {
        font-size: 14px;
    }

    .recognition-btn {
        padding: 10px 26px;
    }
}


/* ===============================
   INDUSTRY RECOGNITION FORM UI
================================*/

/* =====================================================
   INDUSTRY RECOGNITION – GLOBAL
===================================================== */

.recognition-card,
.recognition-form-wrapper,
.recognition-list-wrapper {
    background: #ffffff;
    border-radius: 18px;
    padding: 34px 40px;
    max-width: 1050px;
    margin: 0 auto 30px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

/* =====================================================
   INTRO CARD
===================================================== */

.recognition-card {
    text-align: center;
    border: 2px dashed #ffd2d8;
}

.recognition-icon img {
    width: 70px;
    margin-bottom: 18px;
}

.recognition-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.recognition-text {
    font-size: 15px;
    color: #666;
    max-width: 520px;
    margin: 0 auto 22px;
}

.recognition-btn {
    display: inline-block;
    background: #ff5a6e;
    color: #fff;
    padding: 14px 26px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 10px;
}

.recognition-btn:hover {
    background: #ff4157;
}

.recognition-link {
    font-size: 14px;
    color: #ff5a6e;
    cursor: pointer;
    text-decoration: underline;
}

/* =====================================================
   FORM WRAPPER
===================================================== */

.recognition-form-wrapper {
    position: relative;
}

.back-btn {
    display: inline-block;
    color: #ff5a6e;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 24px;
}

/* =====================================================
   UPLOAD BOX
===================================================== */

.upload-box {
    border: 2px dashed #ffd2d8;
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    cursor: pointer;
    background: #fff7f8;
    margin-bottom: 16px;
    display: block;
}

.upload-box:hover {
    border-color: #ff5a6e;
}

.upload-icon {
    font-size: 30px;
    color: #ff5a6e;
    margin-bottom: 10px;
}

.upload-box p {
    font-size: 14px;
    margin-bottom: 6px;
}

.upload-box small {
    font-size: 12px;
    color: #777;
}

/* IMAGE PREVIEW */
.badge-preview {
    text-align: center;
    margin-bottom: 22px;
}

.badge-preview img {
    max-width: 140px;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

/* =====================================================
   FORM FIELDS
===================================================== */

.form-fields label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 6px;
}

.form-fields input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid #ddd;
    font-size: 14px;
    margin-bottom: 22px;
}

.form-fields input:focus {
    outline: none;
    border-color: #ff5a6e;
    box-shadow: 0 0 0 2px rgba(255,90,110,0.15);
}

/* =====================================================
   FORM FOOTER BUTTONS
===================================================== */

.form-footer {
    display: flex;
    gap: 16px;
    margin-top: 10px;
}

.btn-outline {
    flex: 1;
    padding: 14px;
    border-radius: 14px;
    border: 2px solid #ff5a6e;
    background: #fff;
    color: #ff5a6e;
    font-weight: 600;
    cursor: pointer;
}

.btn-outline:hover {
    background: #fff2f4;
}

.btn-primary {
    flex: 1;
    padding: 14px;
    border-radius: 14px;
    background: #ff5a6e;
    color: #fff;
    border: none;
    font-weight: 600;
    cursor: pointer;
}

.btn-primary:hover {
    background: #ff4157;
}

/* =====================================================
   LIST VIEW
===================================================== */

.recognition-list-wrapper h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 22px;
}

.recognition-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.recognition-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px;
    border-radius: 14px;
    border: 1px solid #eee;
    background: #fff;
    justify-content: space-between;
}

.recognition-content {
    display: flex;
    gap: 20px;
    flex-direction: column;
    margin-left: -200px;
}

.action-button {
    display: flex;
    gap: 25px;
}

.recognition-item img {
    width: 100%;
    border-radius: 10px;
}

.recognition-item-content {
    flex: 1;
}

.recognition-item-content strong {
    display: block;
    font-size: 16px;
    margin-bottom: 6px;
}

.recognition-item-content a {
    font-size: 14px;
    color: #ff5a6e;
}

/* ACTION BUTTONS */
.recognition-actions {
    display: flex;
    gap: 10px;
}

.recognition-actions button {
    padding: 8px 12px;
    border-radius: 8px;
    border: none;
    font-size: 13px;
    cursor: pointer;
}

.edit-recognition-btn {
    color: #ff5a6e;
}

.delete-recognition-btn {
    color: #e63946;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 768px) {

    .recognition-card,
    .recognition-form-wrapper,
    .recognition-list-wrapper {
        padding: 26px 22px;
    }

    .form-footer {
        flex-direction: column;
    }

    .recognition-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .recognition-actions {
        width: 100%;
        justify-content: flex-end;
    }
}

@media (max-width: 480px) {

    .recognition-title {
        font-size: 18px;
    }

    .recognition-text {
        font-size: 14px;
    }

    .upload-box {
        padding: 22px;
    }
}



/* ===========================
   INDUSTRY RECOGNITION FRONT
=========================== */

.industry-recognition-front {
    margin-top: 30px;
}

.industry-recognition-front .ir-section-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 30px;
}

.industry-recognition-front .ir-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.industry-recognition-front .ir-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    transition: 0.3s ease;
}

.industry-recognition-front .ir-card:hover {
    transform: translateY(-6px);
}

.industry-recognition-front .ir-thumb img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 14px;
}

.industry-recognition-front .ir-content {
    padding: 18px 5px 0;
}

.industry-recognition-front .ir-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.industry-recognition-front .ir-year {
    display: inline-block;
    font-size: 13px;
    background: #f3f3f3;
    padding: 6px 12px;
    border-radius: 8px;
    margin-bottom: 12px;
}

.industry-recognition-front .ir-link {
    display: inline-block;
    font-size: 14px;
    color: #e30613;
    font-weight: 600;
    text-decoration: none;
    margin-top: 10px;
}

.industry-recognition-front .ir-link:hover {
    text-decoration: underline;
}




/* industry Page css end */



/* Visitor insights Page css start */

.visitor-wrapper {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
}

/* TOP CARD */
.visitor-card {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 30px;
}

/* HEADER */
.visitor-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.visitor-title {
    font-size: 16px;
    font-weight: 600;
}

/* TABS */
.visitor-tabs {
    display: flex;
    gap: 28px;
    justify-content: space-evenly;
}

.v-tab {
    font-size: 12px;
    text-transform: uppercase;
    color: #999;
    cursor: pointer;
    position: relative;
    padding: 10px 65px;
}

.v-tab.active {
    color: #ff5f6d;
}

.v-tab.active::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ff5f6d;
}

/* CONTENT */
.visitor-content {
    display: none;
}

.visitor-content.active {
    display: block;
}

/* GRADIENT CARD */
.visitor-gradient {
    margin-top: 6px;
    background: linear-gradient(180deg, #ff9aa2, #ff6f7d);
    border-radius: 0px 0px 14px 14px;
    padding: 40px 20px;
    text-align: center;
}

.visitor-image {
    width: 120px;
    background: rgba(255,255,255,0.3);
    margin: 0 auto 20px;
    border-radius: 8px;
}

.visitor-heading {
    font-size: 22px;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
}

.visitor-text {
    font-size: 14px;
    color: #fff;
    max-width: 520px;
    margin: 0 auto 20px;
}

.visitor-btn.white {
    display: inline-block;
    background: #fff;
    color: #000;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 13px;
    cursor: pointer;
}

/* BOOST CARD */
.boost-card {
    background: #1f2933;
    border-radius: 14px;
    padding: 30px;
    color: #fff;
}

.boost-title {
    font-size: 18px;
    font-weight: 600;
}

.boost-sub {
    font-size: 14px;
    color: #b0b8c1;
    margin: 6px 0 20px;
}

.boost-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.boost-box {
    background: #2b3642;
    border-radius: 12px;
    padding: 20px;
}

.boost-box-title {
    font-size: 14px;
    font-weight: 600;
}

.boost-box-text {
    font-size: 13px;
    color: #cbd5e1;
    margin: 8px 0 14px;
}

.boost-btn {
    display: inline-block;
    background: #ff5f6d;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 12px;
    cursor: pointer;
}

.visitor-tab-header {
    margin-top: 20px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .boost-grid {
        grid-template-columns: 1fr;
    }

    .visitor-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}


/* Visitor insights Page css end */



/* Change Password Page css start */

.password-wrapper {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff7f8;
}

.password-card {
    width: 560px;
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.field {
    margin-bottom: 14px;
}

.label {
    font-size: 12px;
    color: #333;
    margin-bottom: 6px;
    display: block;
}

.input-box {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 10px;
    background: #F9FAFB;
}

.input-box input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 13px;
    background: #F9FAFB;
}

.lock,
.eye {
    font-size: 14px;
    color: #9ca3af;
}

.eye {
    cursor: pointer;
}

.input-box.error {
    border: 1px solid red;
}
/* BUTTON */
.password-btn {
    width: 100%;
    margin-top: 16px;
    background: #ff6f7d;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
}


#passwordMessage.error {
    color: red;
    margin-top: 15px;
    font-size: 14px;
}

#passwordMessage.success {
    color: green;
    margin-top: 10px;
}


.password-btn:hover {
    background: #e95c69;
}

/* RESPONSIVE */
@media (max-width: 420px) {
    .password-card {
        width: 90%;
    }
}



/* Change Password Page css end */

/* Company listing Page css start */

.main-page {
    margin-top: 0px !important;
}

.company-directory-wrap {
  padding: 60px 20px !important;
}

.directory-title {
  font-size: 28px;
  margin-bottom: 20px;
}

/* FILTER */
.directory-filter {
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
}

.filter-select,
.filter-search {
  border: 1px solid #f3b6bf;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
  width: 20%;
}

.filter-search {
  flex: 1;
}

.filter-btn {
  background: #f45b69;
  border: none;
  color: #fff;
  padding: 10px 22px;
  border-radius: 8px;
  cursor: pointer;
}

/* GRID */
.company-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

/* CARD */
.company-card {
  position: relative;
  border: 1px solid #f3b6bf !important;
  border-radius: 14px !important;
  padding: 20px !important;
  background: #fff;
  margin-bottom: 10px !important;
  box-shadow: 0 2px 6px rgb(244 91 105 / 37%) !important;
}

.verified-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  /* background: #ffe9ec; */
  color: #f45b69;
  font-size: 12px;
  /* padding: 4px 10px; */
  border-radius: 20px;
}

.company-header {
  display: flex;
  gap: 0px;
  margin-bottom: 20px;
  flex-direction: column;
}

.company-header img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.company-info h3 {
  margin: 0;
  font-size: 16px;
}

.company-info h3 a {
    color: #0D0D0D !important;
    text-decoration: none !important;
    font-size: 22px;
    font-weight: 600;
}

.company-info p {
    margin-top: 8px;
    font-size: 16px;
    color: #808080;
}

/* TAGS */
.company-tags {
  margin-bottom: 14px;
}

.company-tags span {
  display: inline-block;
  background: #f5f5f5;
  padding: 4px 10px;
  font-size: 12px;
  border-radius: 20px;
  margin-right: 6px;
}

/* BUTTONS */
.company-actions {
  display: flex;
  gap: 10px;
}

.btn-primary {
  flex: 1;
  background: #f45b69;
  color: #fff;
  padding: 10px;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
}

.btn-outline {
  flex: 1;
  border: 1px solid #f45b69;
  color: #f45b69;
  padding: 10px;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
}

.company-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 22px;
}

.container.company-directory-wrap form.directory-filter {
    width: 65%;
    margin: 0 auto;
    padding-bottom: 30px;
}


/* Desktop & Laptop → 2 Column */
@media (min-width: 992px) {
  .company-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* Tablet → 2 Column */
@media (max-width: 991px) and (min-width: 768px) {
  .company-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* Mobile → 1 Column */
@media (max-width: 767px) {
  .company-grid {
    grid-template-columns: 1fr !important;
  }
}


/* RESPONSIVE */
@media (max-width: 768px) {
  .directory-filter {
    flex-direction: column;
  }

  .company-grid {
    grid-template-columns: 1fr;
  }
}


/* Company listing Page css end */



/* Company Review Start rating start */

.rating {
  display: flex;
  gap: 5px;
  cursor: pointer;
  margin-bottom: 10px;
}

.star {
  font-size: 28px;
  color: #ccc;
  transition: color 0.2s;
}

.star.hover,
.star.selected {
  color: #f5b301;
}

.review-form-wrapper {
    max-width: 900px;
    margin: auto;
    padding: 30px;
    font-family: Arial, sans-serif;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.section {
    margin-bottom: 30px;
}
.rating-stars {
    font-size: 24px;
    color: #ccc;
}
.rating-stars .star:hover,
.rating-stars .star.selected {
    color: #ffcc00;
    cursor: pointer;
}
textarea {
    width: 100%;
    height: 120px;
    padding: 10px;
    font-size: 14px;
}
.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}
input[type="text"], select {
    width: 100%;
    padding: 8px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}
.cancel-link {
    color: #d00;
    text-decoration: underline;
}
.submit-btn, .back-btn {
    background: #e60023;
    color: white;
    padding: 0px 8px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.back-btn {
    margin-bottom: 20px;
}



/* ===============================
   COMPANY REVIEW FORM
================================ */

.review-form-wrapper {
    background: #fff;
    border-radius: 14px;
    padding: 30px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.review-form-wrapper .back-btn {
    background: none;
    border: none;
    color: #ff5a6e;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 20px;
}

.review-form-wrapper h3 {
    margin-bottom: 6px;
    font-size: 18px;
}

.review-form-wrapper p {
    font-size: 14px;
    color: #777;
    margin-bottom: 16px;
}

/* ⭐ RATING */
.rating-stars {
    display: flex;
    gap: 6px;
}

.rating-stars .star {
    font-size: 26px;
    cursor: pointer;
    color: #ddd;
}

.rating-stars .star.active {
    color: #ffb400;
}

/* SECTIONS */
.review-form-wrapper .section {
    margin-bottom: 28px;
}

.review-form-wrapper textarea {
    width: 100%;
    min-height: 120px;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    resize: vertical;
}

/* GRID */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.form-grid .col {
    display: flex;
    flex-direction: column;
}

.form-grid label {
    font-size: 13px;
    margin-bottom: 6px;
}

.form-grid input,
.form-grid select {
    padding: 11px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 14px;
}

/* ACTIONS */
.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.cancel-link {
    color: #ff5a6e;
    font-size: 14px;
    cursor: pointer;
}

.submit-btn {
    background: #ff5a6e;
    color: #fff;
    border: none;
    padding: 12px 26px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

/* 📱 MOBILE */
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    .form-actions {
        flex-direction: column;
        gap: 12px;
    }
}


/* on page review css */

/* ================================
   REVIEW PAGE WRAPPER
================================ */
.review-page {
    max-width: 900px;
    margin: 60px auto;
    padding: 30px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* BACK BUTTON */
.review-page .back-btn {
    display: inline-block;
    margin-bottom: 20px;
    color: #e60023;
    font-weight: 600;
    text-decoration: none;
}

.review-page h1 {
    font-size: 28px;
    margin-bottom: 25px;
    font-weight: 700;
    color: #111;
}

/* ================================
   STEP INDICATOR
================================ */
.review-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 35px;
    gap: 10px;
}

.review-steps .step {
    flex: 1;
    text-align: center;
    padding: 10px;
    border-radius: 30px;
    background: #f2f2f2;
    font-size: 14px;
    font-weight: 600;
    color: #777;
}

.review-steps .step.active {
    background: #e60023;
    color: #fff;
}

/* ================================
   FORM STEPS
================================ */
.review-step {
    display: none;
}

.review-step.active {
    display: block;
}

/* ================================
   RATING GROUP
================================ */
.rating-group {
    margin-bottom: 30px;
}

.rating-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
}


.stars {
    display: flex;
    gap: 6px;
    font-size: 28px;
    cursor: pointer;
}

.stars span {
    color: #ddd;
    transition: color 0.2s ease;
}

.stars span.filled {
    color: #f5a623;
}



/* ================================
   TEXTAREA & INPUTS
================================ */
.review-step textarea,
.review-step input {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 18px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 15px;
    outline: none;
    transition: border 0.2s ease;
}

.review-step textarea {
    min-height: 120px;
    resize: vertical;
}

.review-step input:focus,
.review-step textarea:focus {
    border-color: #e60023;
}

/* ================================
   NAV BUTTONS
================================ */
.next-btn,
.review-step button[type="submit"] {
    background: #e60023;
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

.next-btn:hover,
.review-step button[type="submit"]:hover {
    background: #cc001f;
}

.nav-btns {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.back-step {
    background: transparent;
    border: none;
    color: #555;
    font-weight: 600;
    cursor: pointer;
}

/* ================================
   MOBILE RESPONSIVE
================================ */
@media (max-width: 768px) {

    .review-page {
        padding: 20px;
        margin: 30px 15px;
    }

    .review-page h1 {
        font-size: 22px;
    }

    .review-steps {
        flex-direction: column;
    }

    .nav-btns {
        flex-direction: column;
        gap: 12px;
    }

    .next-btn,
    .review-step button[type="submit"] {
        width: 100%;
    }
}



/* Company Review Start rating end */


/* Company Form start */

.main-page {
    background: #ffffff;
    padding: 30px;
    font-family: 'Arial', sans-serif;
}
.multi-step-form-wrapper {
    background: #ffffff;
    padding: 30px 30px 30px 30px;
    border-radius: 8px;
    margin-top: 30px;
}

/* Tabs */
.step-tabs {
    list-style: none;
    display: flex;
    padding: 0px;
    justify-content: center;
}
.step-tabs li {
    margin-right: 30px;
    position: relative;
    cursor: pointer;
    color: #808080;
    font-weight: 500;
}
.step-tabs li.active {
    color: #0D0D0D;
    font-weight: bold;
}

/* Upload section */
.display-picturess {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    border: 1px solid #D1D5DB;
    padding: 30px;
    border-radius: 12px;
}
.upload-box {
    border: 1px dashed #d92b2b;
    width: 150px;
    height: 150px;
    border-radius: 8px;
    text-align: center;
    color: #d92b2b;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.upload-box:hover {
    background: #fff1f1;
}
.upload-box input[type="file"] {
    display: none;
}
.upload-box .plus {
    font-size: 30px;
    margin-bottom: 8px;
}
.upload-info {
    font-size: 13px;
    color: #060606;
    margin-top: 8px;
    width: 50%;
}

.upload-info p {
    font-size: 11px;
    color: #908f8feb;
    margin-top: 12px;
    font-weight: 600;
    font-style: italic;
}

/* Basic Details */
.basic-details label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
}
.basic-details input {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

/* Buttons */
button.next-step,
button.prev-step,
button[type="submit"] {
    background: #d92b2b;
    border: none;
    color: #fff;
    padding: 10px 25px;
    border-radius: 6px;
    cursor: pointer;
    font-family: 'Axiforma';
}
button.prev-step { background: #999; }

/* Steps visibility */
.form-step { display: none !important; }
.form-step.active { display: block !important; }

.upload-column {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.logo-head-align {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.main-form-steps {
    width: 70%;
    background: #F3F4F6;
    padding: 20px;
    border-radius:10px;
    margin: 0 auto;
}
.upload-info span strong {
    font-weight: 700;
}

.basic-details {
    border: 1px solid #D1D5DB;
    padding: 30px;
    border-radius: 12px;
}

.step-tabs li::after {
  content: "➜"; /* you can use "→" or a font awesome icon */
  position: absolute;
  right: -22px;
  top: 2px;
  color: #808080;
  font-size: 14px;
}

.step-tabs {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-tabs li {
    position: relative;
    padding-left: 35px; /* circle ke liye space */
    display: inline-flex;
    align-items: center;
}

/* Number Circle */
.step-tabs li::before {
    content: attr(data-step);
    position: absolute;
    left: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #ddd;
    color: #555;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 5px 4px 4px;
}

/* Active Step */
.step-tabs li.active::before {
    background: #ff6b81;  /* tum apna brand color laga sakte ho */
    color: #fff;
}

.step-tabs li:last-child::after {
  content: "";
}

.basic-details .row {
    display: flex;
    gap: 20px;
}
.basic-details .col {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.basic-details label {
    font-weight: 600;
    margin-bottom: 6px;
}
.basic-details input,
.basic-details select,
.basic-details textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}
.basic-details textarea {
    resize: vertical;
}
.char-count {
    text-align: right;
    font-size: 12px;
    color: #888;
    margin-top: 4px;
}

.headquarter-section,
.business-info-section {
    margin-top: 30px;
}

.headquarter-section h3,
.business-info-section h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    font-family: 'Axiforma';
    color: #000;
}

.headquarter-section p,
.business-info-section p {
    font-size: 14px;
    color: #888;
    margin-bottom: 20px;
}

.headquarter-section .row,
.business-info-section .row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.headquarter-section .col,
.business-info-section .col {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.headquarter-section label,
.business-info-section label {
    font-weight: 600;
    margin-bottom: 6px;
}

.headquarter-section input,
.headquarter-section select,
.business-info-section input,
.business-info-section select {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}


.upload-box {
  position: relative;
  border: 1px dashed #d92b2b;
  width: 150px;
  height: 150px;
  border-radius: 8px;
  text-align: center;
  color: #d92b2b;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.upload-box .upload-loader {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.8);
  color: #d92b2b;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}
.upload-box img.upload-preview {
  /* position: absolute;
  top: 0; left: 0; */
  width: 150px; height: 150px;
  object-fit: contain;
  background: #fff;
}
.uploaded-preview {
    position: relative;
    display: inline-block;
}
.uploaded-preview img.upload-preview {
    max-width: 150px;
    border-radius: 6px;
    border: 1px solid #ccc;
}
.uploaded-preview .remove-logo,.uploaded-preview .remove-monogram {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff0000;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    font-size: 18px;
    line-height: 24px;
    cursor: pointer;
}

.step-tabs li.completed {
  color: #0D0D0D;           /* highlight color */
  font-weight: 600;
  opacity: 0.8;
}
.step-tabs li.active {
  color: #0D0D0D;
  font-weight: 700;
}

/* this is service line section css start */ 

.service-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  font-family: 'Axiforma';
  margin-bottom: 30px;
}

.all-service-lines,
.selected-service-lines {
  width: 48%;
  border: 1px solid #D1D5DB;
  padding: 30px;
  border-radius: 12px;
}

.search-input {
  width: 100%;
  padding: 8px 12px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.category {
  margin-bottom: 30px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-checkbox input {
  display: none;
}

.service-checkbox span {
  background: #e0e0e0;
  border-radius: 20px;
  padding: 10px 15px;
  cursor: pointer;
  transition: 0.2s;
  font-size: 14px;
  font-family: 'Axiforma';
}

.service-checkbox input:checked + span {
  background: #F26D7D;
  color: #fff;
}

.progress-wrap {
  margin: 20px 0;
  background: #e5e5e5;
  border-radius: 8px;
  height: 20px;
  position: relative;
}

.total-indicator {
  position: absolute;
  left: 0;
  top: -30px;
  font-weight: bold;
  color: #000;
}

.error-msg {
  background: #ffe5e5;
  padding: 10px 15px;
  border-radius: 6px;
  margin-bottom: 20px;
  color: #b60000;
}

.selected-item {
  margin-bottom: 20px;
  flex: 0 0 45%;
}

.selected-item h5 {
  margin: 10px 0 5px;
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-family: 'Axiforma';
  color: #000;
}

input[type="range"] {
  width: 100%;
}

.overflow-all-list {
    overflow: scroll;
    height: 700px;
    scrollbar-width: thin;
}
#selected-list {
    overflow: scroll;
    height: 600px;
    scrollbar-width: thin;
}

.selected-service-lines p {
    padding-bottom: 30px;
}

/* this css is focus areas start */

.focus-area-wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
  border: 1px solid #D1D5DB;
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 30px;
}
.accordion {
  border: 1px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}
.accordion-header {
  padding: 15px 20px;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Axiforma';
  color: #000;
}
.accordion-header .status {
  background: #ffcccc;
  color: #cc0000;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 4px;
}
.accordion-content {
  display: none;
  padding: 20px;
}
.focus-progress-wrap {
  margin-bottom: 15px;
}
.focus-progress-bar {
  width: 100%;
  background: #eee;
  height: 6px;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 10px;
}
.bar-fill {
  height: 100%;
  background: #007bff;
  width: 0%;
  transition: width 0.3s ease;
}
.focus-status-text {
  font-size: 13px;
  color: #333;
}
.focus-services {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 10px;
}
.focus-service {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.focus-service label {
  font-size: 14px;
  color: #000;
  font-family: 'Axiforma';
}
/* this is industry section of code */

.industry-wrapper {
  display: flex;
  gap: 30px;
  margin-top: 20px;
  margin-bottom: 30px;
}

.all-industries, .selected-industries {
  flex: 1;
  border: 1px solid #D1D5DB;
  padding: 30px;
  border-radius: 12px;
}

.all-industries h3,
.selected-industries h3 {
  font-size: 20px;
  margin-bottom: 5px;
  color: #000;
}

.search-input {
  width: 100%;
  padding: 10px;
  margin: 10px 0 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.industry-tags label {
  background: #f0f0f0;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 14px;
  cursor: pointer;
  font-family: 'Axiforma';
}

.industry-tags input {
  display: none;
}

.industry-tags input:checked + span {
  font-weight: bold;
}

.selected-industries {
  padding: 20px;
  border-radius: 8px;
}

.selected-industries p {
    padding-bottom: 25px;
}

#selected-industry-list .selected-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  background: #fff;
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  flex-direction: column;
}

.selected-item label {
  flex: 1;
  font-family: 'Axiforma';
}

.selected-item input[type="range"] {
  width: 100%;
  margin-top: 10px;
}

.progress-wrap {
  margin: 10px 0;
  background: #eee;
  border-radius: 8px;
  height: 10px;
  position: relative;
}

.total-indicator {
  font-size: 14px;
  margin-bottom: 10px;
}

.error-msg {
  color: red;
  font-size: 14px;
  margin-top: 10px;
}

.industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.industry-tags label {
  background-color: #dcdcdc;
  border-radius: 20px;
  padding: 8px 15px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #444;
}

.industry-tags input[type="checkbox"] {
  display: none;
}

.industry-tags label.active {
  background-color: #F26D7D;
  color: #fff;
  font-weight: 600;
}

/* This css is step 5 of name is client */

.clientele-wrapper {
  max-width: 900px;
  margin: auto;
  border: 1px solid #D1D5DB;
  padding: 30px;
  border-radius: 12px;
}

.clientele-wrapper h3 {
    color: #1A1A1A;
    font-size: 20px;
    font-weight: 600;
    font-family: Axiforma !important;
    padding-bottom: 15px;
}

.clientele-wrapper p {
    font-size: 16px !important;
    color: #6B7280;
}

.client-progress-bar {
  margin: 10px 0px 30px 0px;
  border: 1px solid #eee;
  height: 8px;
  border-radius: 5px;
  background: #f5f5f5;
  position: relative;
}

.client-total-indicator {
  font-size: 14px;
  font-weight: 500;
  margin: 10px 0;
}

.client-error-msg {
  background: #f5f5f5;
  padding: 10px;
  color: #222;
  border-radius: 6px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.client-options {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.client-item {
  width: 100% !important;
  margin-top: 30px;
}

.client-item label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  margin-bottom: 5px;
}

.client-percent {
  font-weight: bold;
  margin-top: -25px;
  position: absolute;
  right: 20%;
}

.client-range {
  width: 100%;
}

.all-service-lines h3 {
    font-size: 20px;
    color: #18181B;
    padding-bottom: 10px;
}

.all-service-lines h4 {
    font-size: 16px;
    font-family: 'Axiforma';
    color: #0D0D0D;
    padding-bottom: 10px;
}


.display-picturess h4 {
    font-family: 'Axiforma';
    font-size: 18px;
    padding-bottom: 15px;
}


.basic-details h3 {
    font-family: 'Axiforma';
    font-size: 18px;
    padding-bottom: 15px;
    color: #000;
}

.about-company textarea {
    padding-top: 20px;
    font-family: 'Axiforma';
    margin-top: 10px;
}

.about-company label {
    font-family: 'Axiforma';
    color: #000;
    font-size: 18px;
}

.dot {
  display: inline-block;
  height: 10px;
  width: 10px;
  border-radius: 50%;
}

.dot-blue { background: #46b1e9; }
.dot-darkblue { background: #1c3faa; }
.dot-teal { background: #13b1a7; }

.category-block {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 35px;
}

div#selected-list h4{
    margin-bottom: 10px;
    font-size: 21px;
    font-weight: 700;
    font-family: 'Axiforma';
}

.final-steps-submission-btn {
    padding-top: 30px;
    text-align: end;
}


input[type="range"] {
  /* removing default appearance */
  -webkit-appearance: none;
  appearance: none;
  /* creating a custom design */
  width: 100%;
  cursor: pointer;
  outline: none;
  border-radius: 15px;
  /*  overflow: hidden;  remove this line*/

  /* New additions */
  height: 6px;
  background: #ccc;
}

/* Thumb: webkit */
input[type="range"]::-webkit-slider-thumb {
  /* removing default appearance */
  -webkit-appearance: none;
  appearance: none;
  /* creating a custom design */
  height: 15px;
  width: 15px;
  background-color: #f50;
  border-radius: 50%;
  border: none;

  /* box-shadow: -407px 0 0 400px #f50; emove this line */
  transition: 0.2s ease-in-out;
}

/* Thumb: Firefox */
input[type="range"]::-moz-range-thumb {
  height: 15px;
  width: 15px;
  background-color: #f50;
  border-radius: 50%;
  border: none;

  /* box-shadow: -407px 0 0 400px #f50; emove this line */
  transition: 0.2s ease-in-out;
}

/* Hover, active & focus Thumb: Webkit */

input[type="range"]::-webkit-slider-thumb:hover {
  box-shadow: 0 0 0 10px rgba(255, 85, 0, 0.1);
}
input[type="range"]:active::-webkit-slider-thumb {
  box-shadow: 0 0 0 13px rgba(255, 85, 0, 0.2);
}
input[type="range"]:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 13px rgba(255, 85, 0, 0.2);
}

/* Hover, active & focus Thumb: Firfox */

input[type="range"]::-moz-range-thumb:hover {
  box-shadow: 0 0 0 10px rgba(255, 85, 0, 0.1);
}
input[type="range"]:active::-moz-range-thumb {
  box-shadow: 0 0 0 13px rgba(255, 85, 0, 0.2);
}
input[type="range"]:focus::-moz-range-thumb {
  box-shadow: 0 0 0 13px rgba(255, 85, 0, 0.2);
}





.percentage {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
  height: 4rem;
  width: 80%;
  background: #fff;
  padding: 0px 10px;
}

.value {
  font-size: 16px;
  text-align: center;
}


.about-company {
    border: 1px solid #D1D5DB;
    padding: 30px;
    border-radius: 12px;
    margin-top: 25px;
}

.headquarter-section {
    border: 1px solid #D1D5DB;
    padding: 30px;
    border-radius: 12px;
}

.business-info-section {
    margin-top: 30px;
    margin-bottom: 30px;
    border: 1px solid #D1D5DB;
    padding: 30px;
    border-radius: 12px;
}

/* Company Form end */



.company-slider-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.company-slider {
    width: 100%;
}

.company-slider .slick-list {
    overflow: hidden !important;
}

.company-slider .slick-track {
    display: flex !important;
}

.company-slider .slick-slide {
    height: auto !important;
}

.company-card {
    margin: 10px;
}

.company-slider {
    align-items: center;
}


.company-slider-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.company-slider .slick-slide {
    padding: 10px;
}

.company-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    border: 1px solid #f2f2f2;
    transition: all 0.3s ease;
}

.company-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.company-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.company-desc {
    font-size: 14px;
    color: #666;
    margin: 15px 0;
    min-height: 60px;
}

.company-btn {
    display: inline-block;
    padding: 10px 18px;
    background: #f45b69;
    color: #fff;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    font-weight: 500;
}

.company-btn:hover {
    background: #e64554;
}


.company-slider .slick-track {
    display: flex !important;
}

.company-slider .slick-slide {
    height: inherit !important;
}


.company-slider .slick-prev,
.company-slider .slick-next {
    z-index: 10;
    width: 40px;
    height: 40px;
}


.custom-arrow {
    width: 45px;
    height: 45px;
    background: #f45b69;
    color: #fff;
    border-radius: 50%;
    border: none;
    font-size: 22px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: 0.3s;
}

.custom-arrow:hover {
    background: #e64554;
}

.slick-prev {
    left: -60px;
}

.slick-next {
    right: -60px;
}
