@import url("https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,200..800;1,200..800&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Karla", serif;
}

/* Chrome, Edge, Safari, Opera */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type="number"] {
    -moz-appearance: textfield;
    appearance: textfield;
}

/* ************************************* common style start ******************************** */
.sign-up-btn {
  background-color: #2a75ae;
  border-radius: 10px;
}

.sign-up-btn:hover {
  background-color: #2a75ae;
  border-radius: 10px;
}

label span {
  text-decoration: underline;
}

.main-wrapper {
  /* border-right:1px solid #2A75AE; */
  border-right: 1px solid #ddd;
}

.h-100vh {
  height: 100vh;
}

.custom-file-upload input[type="file"] {
  display: none;
}
.custom-file-upload label {
  width: 48% !important;
  padding: 10px;
  font-size: 18px;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 10px;
}

.state_line {
  width: 2px;
  height: 40px;
  background-color: #dddddd;
}
/* Button ka design */
.upload-btn {
  display: inline-block;
  padding: 6px 12px;
  background-color: #000;
  color: #fff;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
}
.p-10 {
  padding: 10px !important;
  border: 1px solid #dfdfdf !important;
  border-radius: 10px !important;
  outline-color: #2a75ae;
}
.lab-number {
  background: linear-gradient(135deg, #667eea, #764ba2);
}
.Submit_btn {
  background: linear-gradient(135deg, #667eea, #764ba2);
}
/* ************************************* common style end  ********************************* */

.upload-group {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 20px;
  margin-top: 10px;
  flex-direction: column;
  width: 100%;
}

.upload-group label {
  width: 200px;
  font-weight: 500;
  margin-top: 10px;
}

.custom-file-upload {
  display: flex;
  flex-direction: row;
  align-items: center;
  background: #f8fafa;
  border: 1px solid #dfdfdf;
  padding: 10px;
  border-radius: 6px;
  width: 100%;
  justify-content: space-between;
}

.custom-file-upload input[type="file"] {
  background-color: #000;
  color: #fff;
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  width: auto;
}

.custom-file-upload .note {
  font-size: 12px;
  color: #555;
  /* margin-left: 15px; */
}

iframe {
  height: 110px;
  width: 78px;
}

h1 {
  font-weight: 700 !important;
  font-size: 32px !important;
  color: #000000;
}

h2 {
  font-weight: 700 !important;
  font-size: 24px !important;
  color: #000000;
}

h3 {
  font-size: 18px !important;
  font-weight: 600 !important;
  color: #000000;
}

p {
  font-weight: 500 !important;
  font-size: 16px !important;
  color: #737373;
}

strong {
  font-size: 16px !important;
}

span {
  font-size: 16px !important;
}

a {
  font-size: 14px !important;
  font-weight: 500 !important;
  color: #000000 !important;
}

.need-help {
  color: #fff !important;
  background: #2a75ae !important;
  border-radius: 10px !important;
  padding: 5px 10px;
  border: none;
}

.page {
  display: none;
}

.active {
  display: block;
}

.navbar {
  background: linear-gradient(135deg, #e0f7fa 0%, #e8f5e9 100%);
}

/* ////////////////// slider start ////////////////////////////////*/
.testimonial-box {
  /* width: 400px; */
  background: white;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  /* box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1); */
  position: relative;
  overflow: hidden;
}

.testimonial-img-box {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  transition: background-image 0.8s ease-in-out;
}

.testimonial-text-box {
  padding: 20px;
}

.text-center h2 {
  font-size: 22px;
  margin: 10px 0;
}

.text-center p {
  font-size: 16px;
  color: #555;
}

/* Indicators */
.center-profile-indecater {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}

.center-profile-indecater div {
  width: 12px;
  height: 12px;
  background-color: #ddd;
  margin: 0 5px;
  border-radius: 50%;
  transition: background 0.5s;
}

.center-profile-indecater .active {
  background-color: #3498db;
  width: 50px;
  height: 20px;
  border-radius: 20px;
}

/* ////////////////////////////// slider end //////////////////////////////////*/

/* ////////////////////////// Create an account style start /////////////////// */
.create_an_account_section {
  background: linear-gradient(135deg, #e0f7fa 0%, #e8f5e9 100%);
  min-height: 100vh;
}
.card {
  border-radius: 20px;
  background: #fff;
  border: 2px solid #fff;
}

.form-control,
.form-select {
  /* height: 55px; */
  border-radius: 12px;
  border: 1px solid #ddd;
  transition: 0.3s;
}

.form-control:focus,
.form-select:focus {
  border-color: #4f46e5;
  box-shadow: 0 0 0 0.2rem rgba(79, 70, 229, 0.15);
}

.btn-primary {
  background: linear-gradient(135deg, #667eea, #764ba2);
  border: none;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #4338ca, #1d4ed8);
}

.btn-outline-primary {
  border-radius: 50px;
}

.form-check-label a {
  text-decoration: none;
  font-weight: 600;
}

.form-check-label a:hover {
  text-decoration: underline;
}
/* /////////////////////////////////// Create an account style end /////////////////////// */

/*///////////////////////// Verify your phone number section style start ////////////////*/
.Verify_your_phone_number_section {
  background: linear-gradient(135deg, #e0f7fa 0%, #e8f5e9 100%);
  height: 100vh;
}

.form-container {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  padding: 40px;
}

.otp-each-box {
  width: 55px;
  height: 60px;
  border: 1px solid #d6d6d6;
  border-radius: 12px;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  outline: none;
  transition: 0.3s;
}

.otp-each-box:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.15);
}

.sign-up-btn {
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  font-weight: 600;
  transition: 0.3s;
}

.sign-up-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(102, 126, 234, 0.35);
}

.form-wrapper-phone-number {
  gap: 12px;
}

.line-indicator {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.line-indicator div {
  width: 45px;
  height: 5px;
  border-radius: 50px;
  background: #d6d6d6;
}

.first-indicator {
  background: #667eea !important;
}

@media (max-width: 576px) {
  .form-container {
    padding: 25px;
  }

  .otp-each-box {
    width: 42px;

    height: 50px;

    font-size: 18px;
  }
}

/*/////////////// Verify your phone number section style end ////// */

/* //////////////////// M-pin section style start ////////// */
.form-wrapper-M-pin input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.form-wrapper-M-pin input {
  width: 80px;
  height: 70px;
  padding: 10px;
  border: 2px solid #dfdfdf;
  background: #f9fafb;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  font-weight: bolder;
  text-align: center;
  outline-color: #2a75ae;
}

.M-Pin_section {
  background: linear-gradient(135deg, #e0f7fa 0%, #e8f5e9 100%);
  height: 100vh;
}

/* /////////////////////////////////// M-pin section style end ///////////// */

/* //////////////////////////////////// center details style start //////////////////// */
.center-details-section {
  background: linear-gradient(135deg, #e0f7fa 0%, #e8f5e9 100%);
  height: 100%;
}
.bg-color-form {
  background-color: #fff;
  border-radius: 20px;
  padding: 30px;
  margin-top: 80px;
  /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18); */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.center-details-form label {
  margin-bottom: 10px;
  font-weight: 700;
}

.center-details-form input {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #dfdfdf;
  outline-color: #2a75ae !important;
}

.center-details-form input[type="radio"] {
  width: 50px;
}

.radio-container {
  border: 1px solid #dfdfdf !important;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  outline-color: #2a75ae;
}

.Previous-btn {
  background-color: #f9f9f9 !important;
}

.formStep {
  display: none !important;
}

.formStep.show {
  display: block !important;
}

/* ////////////////////////// center details style end  //////////////////// */

/* ///////////////////////// */
/* Main container */
.border-shadow {
  /* background: #ffffff; */
  border: 1px solid #eef0f4;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.06);
  margin: 30px 0px;
}

/* Hide scrollbar */
.hide-scrollbar {
  scrollbar-width: none;
}

.hide-scrollbar::-webkit-scrollbar {
  display: none;
}

/* Tab */
.scroll-tab {
  transition: all 0.25s ease;
}

/* Form indicator */
.formIndicator {
  min-height: 42px;
  /* background: #f8fafc; */
  border-color: #e5e7eb !important;
  color: #475569;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: all 0.25s ease;
}

/* Hover effect */
.formIndicator:hover {
  background: #eff6ff;
  border-color: #2563eb !important;
  color: #2563eb;
  transform: translateY(-1px);
}

/* Active step */
.formIndicator.border-dark {
  background: #eff6ff;
  border-color: #2563eb !important;
  color: #2563eb;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.12);
}

/* Icons */
.formIndicator img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* Arrow */
.scroll-tab > div img {
  opacity: 0.5;
  transition: all 0.2s ease;
}

/* Mobile Responsive */
@media (max-width: 767px) {
  .border-shadow {
    border-radius: 12px;
  }

  .formIndicator {
    font-size: 13px;
    padding: 8px 12px !important;
  }

  .scroll-tab {
    margin-right: 8px !important;
  }
}
/* /////////////////////////// */

/* ////////////////// Exam Infrastructure details section style start /////////*/

.network-option {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
}

.save-btn {
  width: 81%;
  margin-left: 15px;
}

.Edit-btn {
  border: 1px solid #dddddd;
  width: 100%;
  text-align: center;
  background-color: #f9f9f9;
  margin: 0;
  padding: 10px;
  border-radius: 10px;
}

/* ///////////////////// Exam Infrastructure details section style end ///////////*/

/* ///////////////////////////////// Bank Account details section style start //////////////////////////// */
.gst-state-code-wrapper {
  border: 1px solid #dfdfdf;
  border-radius: 10px;
  padding-bottom: 10px;
  outline-color: #2a75ae;
}

.gst-state-code-wrapper input {
  border-radius: 10px 10px 0px 0px;
}

/* ///////////////////////////////// Bank Account details section style end //////////////////////////// */

/* ///////////////////////////////// pop-Up style start //////////////////////////////////////////////// */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
}

.popup-content {
  background: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  width: 50%;
  margin-top: 90px;
}

.close-btn {
  background: #000000;
  color: white;
  border: none;
  padding: 8px 15px;
  margin-top: 10px;
  cursor: pointer;
  border-radius: 10px;
}

.popup-content a {
  display: inline-block;
  color: #fff !important;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
}

/* ///////////////////////////////// pop-Up style end ///////////////////////////////////////// */
.newLabWrapper {
  display: none;
}

.newLabWrapper.show {
  display: block;
}

/* /////////////////////////////////////// my booking style start /////////////////////////////////

/* =========================
   Modern Sidebar
========================= */

.aside-section {
  height: 100vh;
  /* background: #0F172A; */
  background: linear-gradient(180deg, #0f172a, #1e293b);
  /* border-right: 1px solid #e5e7eb; */
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  overflow-y: auto;
  transition: all 0.3s ease;
}

.aside-heading {
  text-align: center;
  padding: 28px 20px;
  /* border-bottom: 1px solid #f1f3f5; */
}

.aside-heading img {
  width: 130px;
  max-width: 100%;
}

.aside-list {
  list-style: none;
  /* padding: 24px 18px; */
  margin: 0;
}

.aside-list li {
  margin-bottom: 8px;
}

.aside-list li:last-child {
  margin-bottom: 0;
}

.aside-list li a {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  padding: 14px 16px;
  border-radius: 14px;
  color: #fff !important;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.aside-list li a i {
  width: 24px;
  text-align: center;
  font-size: 18px;
}

.aside-list li a:hover {
  /* background: #f5f7ff; */
  background: #807af022 !important;
  transform: translateX(6px);
}

.link.active {
  background: linear-gradient(135deg, #4f46e5, #6366f1);
  color: #fff !important;
  box-shadow: 0 8px 20px rgba(79, 70, 229, 0.15);
}

.link.active i {
  color: #fff;
}

.aside-list li a.text-danger:hover {
  background: #fff1f2;
  color: #dc3545 !important;
}

/* Scrollbar */

.aside-section::-webkit-scrollbar {
  width: 6px;
  display: none;
}

.aside-section::-webkit-scrollbar-thumb {
  background: #d6d6d6;
  border-radius: 10px;
}

.aside-section::-webkit-scrollbar-thumb:hover {
  background: #bdbdbd;
}

/* ===========================
   Responsive Sidebar
=========================== */

/* Large Screen */
@media (max-width: 1199px) {
  .col-2 {
    width: 260px;
    flex: 0 0 260px;
    max-width: 260px;
  }
}

/* Tablet & Mobile */
@media (max-width: 991px) {
  .col-2 {
    width: auto;
    flex: unset;
    max-width: unset;
  }

  .aside-section {
    position: fixed;
    left: -280px;
    top: 0;
    width: 260px;
    height: 100vh;
    z-index: 1050;
    transition: 0.35s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  }

  .aside-section.show {
    left: 0;
  }

  .company-wrapper {
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 20px 18px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .aside-section {
    width: 240px;
  }

  .aside-heading {
    padding: 20px;
  }

  .aside-heading img {
    width: 120px;
  }

  .aside-list {
    padding: 18px 14px;
  }

  .aside-list li a {
    padding: 12px 14px;
    font-size: 14px;
  }

  .aside-list li a i {
    font-size: 16px;
  }
}

/* ======================== Aside end =========================== */

/* ========================= */

.booking-center {
  display: none;
}

.booking-center.active {
  display: block;
}

.my-booking-wrapper {
  background: linear-gradient(180deg, #0f172a, #1e293b);
}

.company-wrapper {
  position: absolute;
  bottom: 15px;
  left: 18px;
  right: 18px;
}

.company-add {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.founding {
  font-size: 10px !important;
  text-align: center;
}

.comp-heading h3 {
  font-size: 16px !important;
  margin-bottom: 2px;
}

.comp-heading p {
  font-size: 13px !important;
  color: #6c757d;
}
/*////////////////////////////////////// my booking style end //////////////////////////////////*/

/*/////////////////////////////////////// Custom CSS for modal start /////////////////////////////*/
#bookingModal .modal-dialog {
  position: fixed;
  top: 0;
  right: 0;
  margin: 0;
  height: 100vh;
  width: 500px;
  /* Width adjust kar sakte ho */
  max-width: 100%;
  transform: translateX(100%);
  /* Initially hide */
  transition: transform 0.3s ease-in-out;
}

#bookingModal.show .modal-dialog {
  transform: translateX(0);
  /* Show modal */
}

#bookingModal .modal-content {
  height: 100vh;
  overflow-y: auto;
  /* Scroll enable */
  border-radius: 0;
  /* No rounded corners */
}

.form-group {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.form-label {
  width: 40%;
  /* Adjust width of label */
  font-weight: bold;
}

.form-control {
  width: 100%;
  /* Adjust width of input */
}

.project-details-bg-modal {
  background-color: #f9f9f9;
  padding-left: 10px;
  border-bottom: 1px solid #dddddd;
}

.project-details-bg-modal input {
  background-color: #fff !important;
}

/* ////////////////////////////////// Custom CSS for modal end /////////////////////////////////////////*/

/*////////////////////////////////////////////////// calender style start //////////////////////////////*/
.calender-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #dddddd;
  background-color: #f9f9f9;
}

.calender-table th,
.calender-table td {
  border: 1px solid #dddddd;
  padding: 20px 10px;
  text-align: center;
}

.calender-table th {
  color: #737373;
}

.next-month {
  color: #737373 !important;
}

.calender-table td {
  color: #000000;
  font-weight: 600;
  font-size: 20px;
}

.date-day {
  background-color: #000;
  color: #fff !important;
}

.event-aside {
  background-color: #f9f9f9;
  border-left: 1px solid #dddddd;
  padding: 24px;
  height: 100vh;
}

.exam-seats-box {
  border-left: 2px solid #000;
}

.exam-status {
  background-color: #feffbd;
  padding: 5px;
  border-radius: 5px;
}

/* //////////////////////////////////// calender style end //////////////////////////////////*/

/* ////////////////////////// Add custom booking modal style start //////////////////////////*/
.Client-detail-box {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
}

.Client-detail-box input {
  width: 100%;
}

/* /////////////////////////// Add custom booking modal style end ////////////////////////////*/

/* //////////////////////////// Review Modal style start ///////////////////////////////////*/
.modal.right .modal-dialog {
  position: fixed;
  margin: auto;
  width: 553px;
  height: 100%;
  right: 0;
  top: 0;
}

.modal.right .modal-content {
  height: 100%;
  overflow-y: auto;
  border-radius: 0;
}

.review-bg {
  background-color: #f9f9f9;
}

/* ///////////////////////////////////// review modal style end //////////////////////////////////*/

/* rejection modal style start*/
.modal-dialog {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  margin: 0;
  max-width: 553px;
}

.modal-content {
  height: 100vh;
  border-radius: 0;
}

/* rejection modal style end*/

/*///////////////////////////////////// sure modal ////////////////////////////////////*/
.modal.right .modal-dialog {
  position: fixed;
  margin: auto;
  width: 553px;
  right: 0;
  top: 0;
}

.modal.right .modal-content {
  height: 100%;
  border-radius: 0;
}

.modal-header {
  border-bottom: none;
}

/*///////////////////////////////////////////// sure modal //////////////////////////*/

/* //////////////////////////////////////////// My centers section style start /////////////////// */
.center-img-box {
  margin-bottom: 20px;
}

.card {
  border-radius: 10px;
  padding: 20px;
  /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
  border: none;
}

.badge {
  font-size: 14px;
}

.last-update {
  margin: 20px 0px 4px 0px;
}

.center-images img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 5px;
}

.accordion-button {
  background-color: #fff !important;
  font-weight: bold;
  color: #000 !important;
  border: 1px solid #dddddd;
  border-radius: 0 0 16px 16px;
}

.accordion-button:not(.collapsed) {
  box-shadow: none !important;
}

.accordion-item {
  border: none;
  margin-bottom: 10px !important;
  margin-top: 20px;
  background-color: transparent;
}

.location {
  font-size: 14px !important;
}

.Available-btn,
.Audited-btn {
  background: #caffbd;
  color: #3f892c;
}

.audit-cnt {
  background: #f9fafb;
  padding: 15px 10px;
  border-radius: 10px;
  margin-bottom: 15px;
}

.my-center-wrapper {
  background-color: #f9f9f9;
}

.accordion-button {
  border-radius: 15px 15px 0 0 !important;
}

.accordion-button.collapsed {
  border-radius: 15px !important;
}

.img-edit-btn {
  position: absolute;
  top: 12%;
  left: 20%;
}

.delete-img-btn {
  width: 30px;
  height: 30px;
  right: 8px;
  bottom: 8px;
  position: absolute;
}

.delete-img-btn img {
  width: 100%;
  height: 100%;
}

#edit-center {
  display: none;
}

#editBtnCnt {
  display: none;
}

.project-details-bg-modal {
  overflow: scroll;
  max-height: 700px;
  overflow-x: auto;
}

/* //////////////////////////////////////////// My centers section style end ///////////////////// */
a#resendOtpButton {
  cursor: pointer;
}

.is-invalid {
  border-color: red !important;
}

.cursor-pointer {
  cursor: pointer;
}

/* ============================================
   PROFESSIONAL NOTIFICATION STYLES
   ============================================ */

/* ===== NOTIFICATION WRAPPER ===== */
.notification-wrapper {
    cursor: pointer;
    display: inline-block;
    float: inline-end;
    position: relative;
}

/* ===== NOTIFICATION BELL ===== */
.notification-bell {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #f8fafc;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.notification-bell:hover {
    background: #eef2ff;
    border-color: #667eea;
    transform: scale(1.05);
}

.notification-bell i {
    color: #4a5568 !important;
    font-size: 22px;
    transition: all 0.3s ease;
}

.notification-bell:hover i {
    color: #667eea;
}

/* ===== NOTIFICATION COUNT BADGE ===== */
.notification-count {
    position: absolute;
    top: -6px;
    right: -6px;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 50px;
    background: linear-gradient(135deg, #f44336, #e53935);
    color: #fff;
    border: 2px solid #ffffff;
    min-width: 20px;
    text-align: center;
    animation: notif-pulse 2s infinite;
    box-shadow: 0 2px 10px rgba(244, 67, 54, 0.3);
    letter-spacing: 0.3px;
}

@keyframes notif-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 2px 10px rgba(244, 67, 54, 0.3);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 4px 20px rgba(244, 67, 54, 0.5);
    }
}

/* ===== NOTIFICATION DROPDOWN ===== */
.notification-dropdown {
    position: absolute;
    right: -20px;
    top: 55px;
    width: 420px;
    max-width: 90vw;
    background: #ffffff;
    border-radius: 16px;
    display: none;
    z-index: 9999;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 8px 24px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transform-origin: top right;
    animation: dropdownSlide 0.3s ease;
}

.notification-dropdown.active {
    display: block;
}

@keyframes dropdownSlide {
    0% {
        opacity: 0;
        transform: translateY(-10px) scale(0.96);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ===== DROPDOWN HEADER ===== */
.dropdown-header {
    padding: 16px 20px 12px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%);
    border-bottom: 1px solid #e8ecf1;
}

.dropdown-header h6 {
    font-weight: 700;
    font-size: 16px;
    color: #1a1a2e;
    letter-spacing: 0.3px;
    margin: 0;
}

.dropdown-header h6::before {
    content: '🔔 ';
    font-size: 14px;
}

.mark-all-read {
    font-size: 12px;
    font-weight: 600;
    color: #667eea !important;
    padding: 4px 12px !important;
    border-radius: 50px !important;
    background: rgba(102, 126, 234, 0.08);
    transition: all 0.3s ease;
    text-decoration: none !important;
    border: 1px solid transparent;
}

.mark-all-read:hover {
    background: rgba(102, 126, 234, 0.15);
    transform: scale(1.05);
    color: #5a6fd6 !important;
    border-color: rgba(102, 126, 234, 0.2);
}

/* ===== DIVIDER ===== */
.dropdown-divider {
    height: 1px;
    background: #e8ecf1;
    margin: 0;
}

/* ===== NOTIFICATION LIST ===== */
.notification-list {
    max-height: 420px;
    overflow-y: auto;
    padding: 4px 0;
}

/* Scrollbar Styling */
.notification-list::-webkit-scrollbar {
    width: 5px;
}

.notification-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.notification-list::-webkit-scrollbar-thumb {
    background: #c1c7cd;
    border-radius: 10px;
}

.notification-list::-webkit-scrollbar-thumb:hover {
    background: #a0a8b0;
}

/* ===== NOTIFICATION ITEM ===== */
.notification-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 12px 20px;
    transition: all 0.25s ease;
    border-left: 3px solid transparent;
    position: relative;
}

.notification-item.unread {
    background: #f8faff;
    border-left-color: #667eea;
}

.notification-item.unread:hover {
    background: #eef3ff;
}

.notification-item.read {
    background: #ffffff;
    border-left-color: transparent;
}

.notification-item.read:hover {
    background: #f8f9fa;
}

/* ===== DOT INDICATOR ===== */
.notification-item .dot {
    width: 10px;
    height: 10px;
    min-width: 10px;
    border-radius: 50%;
    margin-top: 6px;
    margin-right: 14px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.notification-item.unread .dot {
    background: linear-gradient(135deg, #667eea, #764ba2);
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.4);
    animation: dotPulse 2s infinite;
}

@keyframes dotPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(0.8);
        opacity: 0.6;
    }
}

.notification-item.read .dot {
    background: #d1d7e0;
}

/* ===== NOTIFICATION CONTENT ===== */
.notification-content {
    flex: 1;
    min-width: 0;
}

.notification-content p {
    margin-bottom: 0;
}

.notification-content .fw-semibold {
    font-weight: 600 !important;
    font-size: 14px;
    color: #1a1a2e;
    line-height: 1.4;
    margin-bottom: 4px !important;
}

.notification-item.unread .notification-content .fw-semibold {
    color: #1a1a2e;
}

.notification-content .small {
    font-size: 13px;
    color: #4a5568;
    line-height: 1.5;
    margin-bottom: 4px !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.notification-content .text-muted {
    font-size: 11px;
    color: #8e99a8 !important;
    display: flex;
    align-items: center;
    gap: 4px;
}

.notification-content .text-muted::before {
    content: '🕐';
    font-size: 10px;
}

/* ===== REMOVE BUTTON ===== */
.notification-item .text-danger {
    color: #b0b8c4 !important;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    opacity: 0;
    margin-left: 8px;
    flex-shrink: 0;
}

.notification-item:hover .text-danger {
    opacity: 1;
}

.notification-item .text-danger:hover {
    color: #f44336 !important;
    background: rgba(244, 67, 54, 0.08);
    transform: rotate(90deg);
}

.notification-item .text-danger i {
    font-size: 14px;
}

/* ===== VIEW ALL BUTTON ===== */
.view-all {
    color: #ffffff !important;
    font-weight: 600;
    font-size: 13px;
    padding: 10px !important;
    border-radius: 50px !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    border: none !important;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.25);
}

.view-all:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.35);
    color: #ffffff !important;
}

.view-all:active {
    transform: scale(0.98);
}

/* ===== NO NOTIFICATIONS ===== */
.text-center.p-3.text-muted {
    padding: 40px 20px !important;
    color: #8e99a8 !important;
    font-size: 14px;
}

.text-center.p-3.text-muted::before {
    content: '🔕';
    display: block;
    font-size: 32px;
    margin-bottom: 12px;
    opacity: 0.5;
}

/* ===== RESPONSIVE ===== */
@media screen and (max-width: 768px) {
    .notification-dropdown {
        right: -60px;
        width: 360px;
        max-width: 92vw;
        top: 50px;
    }

    .notification-item {
        padding: 10px 16px;
    }

    .notification-content .fw-semibold {
        font-size: 13px;
    }

    .notification-content .small {
        font-size: 12px;
    }

    .notification-item .dot {
        width: 8px;
        height: 8px;
        min-width: 8px;
        margin-right: 10px;
        margin-top: 5px;
    }

    .dropdown-header {
        padding: 14px 16px 10px 16px;
    }

    .dropdown-header h6 {
        font-size: 14px;
    }

    .notification-bell {
        width: 38px;
        height: 38px;
    }

    .notification-bell i {
        font-size: 18px;
    }

    .notification-count {
        font-size: 9px;
        padding: 2px 6px;
        min-width: 18px;
        top: -4px;
        right: -4px;
    }

    .notification-item .text-danger {
        opacity: 0.6;
    }
}

@media screen and (max-width: 480px) {
    .notification-dropdown {
        right: -80px;
        width: 320px;
        max-width: 94vw;
        top: 45px;
        border-radius: 12px;
    }

    .notification-item {
        padding: 8px 12px;
    }

    .notification-content .fw-semibold {
        font-size: 12px;
    }

    .notification-content .small {
        font-size: 11px;
    }

    .notification-content .text-muted {
        font-size: 10px;
    }

    .dropdown-header {
        padding: 12px 12px 8px 12px;
        flex-wrap: wrap;
        gap: 6px;
    }

    .dropdown-header h6 {
        font-size: 13px;
    }

    .mark-all-read {
        font-size: 10px;
        padding: 2px 10px !important;
    }

    .notification-bell {
        width: 34px;
        height: 34px;
    }

    .notification-bell i {
        font-size: 16px;
    }

    .notification-count {
        font-size: 8px;
        padding: 2px 5px;
        min-width: 16px;
        top: -3px;
        right: -3px;
    }

    .notification-item .dot {
        width: 6px;
        height: 6px;
        min-width: 6px;
        margin-right: 8px;
        margin-top: 4px;
    }

    .view-all {
        font-size: 11px;
        padding: 8px !important;
    }

    .notification-item .text-danger {
        opacity: 0.5;
        padding: 2px 4px;
    }
}

@media screen and (max-width: 360px) {
    .notification-dropdown {
        right: -100px;
        width: 280px;
        max-width: 96vw;
    }

    .notification-content .fw-semibold {
        font-size: 11px;
    }

    .notification-content .small {
        font-size: 10px;
    }

    .dropdown-header h6 {
        font-size: 12px;
    }

    .mark-all-read {
        font-size: 9px;
        padding: 2px 8px !important;
    }
}


/*singup*/
.preview-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}

.image-preview-wrapper {
  position: relative;
  width: 100px;
  height: 100px;
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
}

.preview-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-preview-wrapper {
  position: relative;
  width: 100%;
  height: 100px;
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
}

video.preview-video {
  height: 85px;
  width: 100%;
}

.delete-image-btn {
  position: absolute;
  top: 0;
  right: 0;
  background: rgba(255, 0, 0, 0.7);
  color: white;
  border: none;
  width: 20px;
  height: 20px;
  border-radius: 0 0 0 4px;
  cursor: pointer;
  font-size: 12px;
  line-height: 20px;
  padding: 0;
}

.delete-image-btn:hover {
  background: rgba(255, 0, 0, 1);
}

/*my center*/
.image-container {
  height: 120px;
  width: 120px;
  display: inline-block;
}
.image-container .center-img {
  height: 100px;
  width: 100px;
}
button.delete-image-btn {
  display: block;
  text-align: center;
  background: red;
  padding: 2px 8px;
  border: none;
  color: white;
  margin-top: 5px;
  margin-left: 40px;
  cursor: pointer;
}
div.preview-container {
  display: flex;
  gap: 20px;
}
video.preview-video {
  height: 200px;
  width: 100%;
}
img.preview-image {
  height: 150px;
  width: 100%;
}
/* Select2 single select height fix */
.select2-container--default .select2-selection--single {
  height: 48px !important; /* same as your input */
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #ced4da;
}

/* Text vertically center */
.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  line-height: 26px !important;
}

/* Arrow alignment */
.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  height: 48px !important;
  right: 10px;
}

/* Dropdown search field height */
.select2-container .select2-search--dropdown .select2-search__field {
  height: 38px;
  padding: 6px 10px;
}

/* Full width fix */
.select2-container {
  width: 100% !important;
}

.ajax-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
}
/*///////////////////////////////////////////// sure modal //////////////////////////*/