/*
================================================================================
customcss.css - Documentation
================================================================================

This stylesheet provides custom styles for a portfolio web application, including
login pages, profile cards, work experience cards, modals, loaders, feedback,
FAQ sections, portfolio layouts, services, and responsive design. It extends and
overrides Bootstrap and other base styles to deliver a modern, interactive UI.

------------------------------------------------------------------------------
Sections & Key Features
------------------------------------------------------------------------------

1. Login Page & Form
  - Styles for login background, form card, input fields, buttons, links, and
    social login buttons.
  - Focus and hover effects for improved UX.

2. Profile & Card Layouts
  - Profile cards, work experience cards, and card height variants.
  - Responsive overflow and scroll behaviors.
  - Card shadow, border, and padding customizations.

3. Scrollbar & Overflow
  - Custom scrollbar styling for various containers.
  - Hide scrollbars for a cleaner look on supported browsers.

4. Modal & Overlay
  - Custom modal backgrounds, content boxes, and close buttons.
  - Disabled overlays for cards and modal backdrops with blur effects.

5. Buttons & Badges
  - Custom button styles for primary, secondary, danger, and plugin download.
  - Badges for country, notifications, and upgrade indicators.

6. Avatar & Image
  - Avatar wrappers and image fit settings for profile and service icons.

7. Responsive Grid & Flex Layouts
  - Service columns, slot card containers, and feedback grids.
  - Media queries for mobile, tablet, and desktop breakpoints.

8. Editable Fields
  - Styles for editable paragraphs and fields with placeholder support.

9. Loader & Animation
  - Loader cards, spinner animations, and pulse effects for status indicators.

10. Sidebar & Navigation
   - Mobile sidebar, overlays, navigation links, and footer styles.

11. FAQ & Accordion
   - FAQ section, cards, add/edit forms, and public FAQ accordion.

12. Portfolio & Showcase
   - Portfolio item cards, top info, layout tabs, and share functionality.
   - Multiple portfolio layouts: gallery, text, vertical, horizontal, services.

13. Services & Custom Service Form
   - Service cards, icons, add custom service form, and delete actions.

14. Miscellaneous
   - Utility classes for width, text color, alignment, spacing, and visibility.
   - Custom dropdowns, notification dots, and status indicators.

------------------------------------------------------------------------------
Responsive Design
------------------------------------------------------------------------------
- Extensive use of media queries to adapt layouts and components for various
  screen sizes, ensuring usability on mobile, tablet, and desktop devices.

------------------------------------------------------------------------------
Customization & Extensibility
------------------------------------------------------------------------------
- Variables and custom properties for colors, spacing, and transitions.
- Easily extendable for new card types, layouts, or UI components.

------------------------------------------------------------------------------
Accessibility & UX
------------------------------------------------------------------------------
- Focus states, hover effects, and disabled states for interactive elements.
- Placeholder text for empty editable fields.
- Visual feedback for actions (e.g., loaders, pulse, shake).

================================================================================
*/
body.login-page {
  background: url('/assets/img/bg/image_bg_login.png') no-repeat center center fixed;
  background-size: cover;
}

.login-page-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

/* Apply to the card */
.login-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: #ffffff;
  padding: 30px;
  width: 450px;
  border-radius: 20px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}


.login-form ::placeholder {
  font-family: inherit;
}

.login-form button {
  align-self: flex-end;
}

.login-flex-column>label {
  color: #151717;
  font-weight: 600;
}

.login-input-wrapper {
  border: 1.5px solid #ecedec;
  border-radius: 10px;
  height: 50px;
  display: flex;
  align-items: center;
  padding-left: 10px;
  transition: 0.2s ease-in-out;
}

.login-input {
  margin-left: 10px;
  border-radius: 10px;
  border: none;
  width: 85%;
  height: 100%;
}

.login-input:focus {
  outline: none;
}

.login-input-wrapper:focus-within {
  border: 1.5px solid #2d79f3;
}

.login-flex-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
}

.login-flex-row>div>label {
  font-size: 14px;
  color: black;
  font-weight: 400;
}

.login-link {
  font-size: 14px;
  margin-left: 5px;
  color: #2d79f3;
  font-weight: 500;
  cursor: pointer;
}

.login-button-submit {
  margin: 20px 0 10px 0;
  background-color: #151717;
  border: none;
  color: white;
  font-size: 15px;
  font-weight: 500;
  border-radius: 10px;
  height: 50px;
  width: 100%;
  cursor: pointer;
}

.login-button-submit:hover {
  background-color: #252727;
}

.login-message {
  text-align: center;
  color: black;
  font-size: 14px;
  margin: 5px 0;
}

.login-social-button {
  margin-top: 10px;
  width: 100%;
  height: 50px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  gap: 10px;
  border: 1px solid #ededef;
  background-color: white;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}

.login-social-button:hover {
  border: 1px solid #2d79f3;
}


.profile-card,
.card {
  max-height: 100% !important;
  height: 100% !important;
  overflow: visible !important;
}


/* Default view */
.work-experiance-card {
  overflow: hidden;
  height: 550px;
}

/* When editing: unlock height and scroll if needed */
.work-experiance-card.expanded-card {
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
}

.card-body.p-b-10 {
  padding-bottom: 0px;
}

/* DeepSeek generate button (customized from Uiverse.io) */
/* AI Magic Button */
.ai-magic-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #ec4899 100%);
  background-size: 200% 200%;
  color: white;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(168, 85, 247, 0.4);
  overflow: hidden;
  text-decoration: none;
}

.ai-magic-btn:hover:not(:disabled) {
  background-position: 100% 0;
  box-shadow: 0 6px 20px rgba(168, 85, 247, 0.6);
  transform: translateY(-2px);
}

.ai-magic-btn:active:not(:disabled) {
  transform: translateY(0);
}

.ai-magic-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  background: #ccc;
  box-shadow: none;
}

.ai-magic-btn .ai-icon {
  width: 16px;
  height: 16px;
  fill: white;
}

/* Shine Effect */
.ai-magic-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}

.ai-magic-btn:hover::after {
  left: 100%;
}

.ai-loader {
  display: none;
  width: 14px;
  height: 14px;
  border: 2px solid #fff;
  border-top-color: transparent;
  border-radius: 50%;
  animation: ai-spin 0.8s linear infinite;
}

@keyframes ai-spin {
  to { transform: rotate(1turn); }
}

.tj-ds-button:active {
  transform: scale(1);
}

.tj-ds-button .tj-ds-dots {
  position: absolute;
  inset: 0;
  border-radius: var(--border_radius);
  overflow: hidden;
  z-index: -10;
}

.tj-ds-button .tj-ds-dots::before {
  content: "";
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 2rem;
  background-color: #fff;
  mask: linear-gradient(transparent 0%, #fff 120%);
  animation: tj-ds-rotate 2s linear infinite;
}

@keyframes tj-ds-rotate {
  to {
    transform: rotate(360deg);
  }
}

.tj-ds-button .tj-ds-sparkle {
  position: relative;
  z-index: 10;
  width: 1.25rem;
  color: #fff;
}

.tj-ds-button[disabled] {
  opacity: .6;
  cursor: not-allowed;
}

.tj-ds-loader {
  display: none;
  width: 14px;
  height: 14px;
  border: 2px solid #fff;
  border-top-color: transparent;
  border-radius: 50%;
  animation: tj-ds-spin .8s linear infinite;
  margin-left: 6px;
}

@keyframes tj-ds-spin {
  to {
    transform: rotate(1turn);
  }
}


.work-experiance-main::-webkit-scrollbar {
  width: 6px;
}

.work-experiance-main::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}

.login-card-notice {
  border-radius: 0.75rem;
  background-color: white;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -2px rgba(0, 0, 0, .1);
  overflow: hidden;
  font-size: 0.9rem;
}

.login-card-notice .info {
  padding: 1rem;
}

.login-card-notice .footer {
  border-top: 1px solid #e0e0e0;
  background-color: rgba(0, 140, 255, 0.05);
}

.login-card-notice .action {
  background-color: #2196f3;
  color: white;
  font-weight: bold;
  font-size: 0.75rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  text-transform: uppercase;
  text-decoration: none;
}


.avatar-wrapper {
  width: 350px;
  height: 243px;
  border-radius: 0.5rem;
  overflow: hidden;
  display: inline-block;
}

.avatar-img {
  width: 100%;
  max-height: 100%;
  object-fit: cover;
  display: block;
}


.only-dashboard {
  display: block;
}

.only-public {
  display: none !important;
}

/* Hide dashboard-only content when in shared profile */
body.shared-profile .only-dashboard {
  display: none !important;
}

/* Show public-only stuff when in shared profile */
body.shared-profile .only-public {
  display: block !important;
}

.card.p-2-new {
  padding: 1rem;
}

.form-check-input {
  width: 16px;
  height: 16px;
  margin-top: 0.25rem;
  margin-right: 0.5rem;
  cursor: pointer;
}


.services-item .image img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: inline-block;
}

.profile-url-card input:disabled {
  background-color: #f9f9f9;
}


.btn-outline-primary {
  --bs-btn-color: #007691;
  --bs-btn-border-color: #007691;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #61aeaf;
  --bs-btn-hover-border-color: #61aeaf;
  --bs-btn-focus-shadow-rgb: 13, 110, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #007691;
  --bs-btn-active-border-color: #007691;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #61aeaf;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #61aeaf;
  --bs-gradient: none;
}

/* a {
  color:#61aeaf;
  text-decoration: underline;
} */

.text-warning {
  --bs-text-opacity: 1;
  color: red !important;
}

.btn-outline-secondary {
  --bs-btn-color: #181818;
  --bs-btn-border-color: #6c757d;
  --bs-btn-hover-color: #ffffff;
  --bs-btn-hover-bg: #101010;
  --bs-btn-hover-border-color: #121212;
  --bs-btn-focus-shadow-rgb: 108, 117, 125;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #6c757d;
  --bs-btn-active-border-color: #6c757d;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #6c757d;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #6c757d;
  --bs-gradient: none;
}

/* === Slot Card Container Scroll Behavior === */



/* === Card Scroll Hint Overlay === */
/* .card-scroll-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(255 255 255 / 63%);;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  pointer-events: none;
  border-radius: 17px;
}

.card-scroll-anim {
  width: 30px;
  height: 50px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: none;
  outline: 2px solid #61aeaf;
  box-shadow: 0px 0px 10px #61aeaf;
  position: relative;
}

.card-scroll-anim .scroll {
  width: 5px;
  height: 10px;
  border-radius: 10px;
  background-color: #61aeaf;
  box-shadow: 0px 0px 10px #61aeaf;
  animation: scroll_4013 2s linear infinite;
  transform: translateY(40%);
}

.card-scroll-anim::after {
  content: 'scroll';
  position: absolute;
  top: 140%;
  color: whitesmoke;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
} */
/* 
@keyframes scroll_4013 {
  0% { transform: translateY(40%); }
  50% { transform: translateY(90%); }
  100% { transform: translateY(40%); }
}

.fade-out {
  opacity: 0;
  transition: opacity 0.3s ease;
} */

/* Disable on mobile */
/* @media (max-width: 767px) {
  .card-scroll-overlay {
    display: none !important;
  }
} */

/* === JOB LOADER === */

.job-loader-card {
  /* --bg-color: #212121; */
  background-color: var(--bg-color);
  padding: 1rem 2rem;
  border-radius: 1.25rem;
}

.job-loader {
  color: rgb(124, 124, 124);
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 25px;
  box-sizing: content-box;
  height: 40px;
  padding: 10px 10px;
  display: flex;
  border-radius: 8px;
}

.job-loader-words {
  overflow: hidden;
  position: relative;
}

.job-loader-words::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(var(--bg-color) 10%,
      transparent 30%,
      transparent 70%,
      var(--bg-color) 90%);
  z-index: 20;
}

.job-loader-word {
  display: block;
  height: 100%;
  padding-left: 6px;
  color: #61aeaf;
  animation: job-loader-spin 4s infinite;
}

@keyframes job-loader-spin {
  10% {
    transform: translateY(-102%);
  }

  25% {
    transform: translateY(-100%);
  }

  35% {
    transform: translateY(-202%);
  }

  50% {
    transform: translateY(-200%);
  }

  60% {
    transform: translateY(-302%);
  }

  75% {
    transform: translateY(-300%);
  }

  85% {
    transform: translateY(-402%);
  }

  100% {
    transform: translateY(-400%);
  }
}

/* === Fullscreen Loader Overlay === */

#job-full-loader {
  position: fixed;
  inset: 0;
  background-color: #121212;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

#job-full-loader.fade-out {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.nav-link.locked {
  position: relative;
  color: #555;
  pointer-events: auto;
  padding-right: 16px;
  /* create space for badge */
}

.nav-link.locked .upgrade-badge {
  position: absolute;
  top: -4px;
  right: 0;
  font-size: 9px;
  text-transform: uppercase;
  font-weight: 600;
  color: #0f9d58;
  background: rgba(15, 157, 88, 0.1);
  padding: 1px 5px;
  border-radius: 4px;
  line-height: 1;
}

.height-card .profile-card {
  height: 680px !important;
  overflow: visible !important;

}

.height-card-2 .profile-card {
  height: 700px !important;
  overflow: hidden !important;

}

.height-card-3 .profile-card {
  height: 750px !important;
  overflow: hidden !important;
}


.height-card-4 .profile-card {
  height: 500px !important;
  overflow: hidden !important;
}

.height-card-5 .profile-card {
  height: 180px !important;
  overflow: hidden !important;
}

.height-card-6 .profile-card {
  max-height: 400px !important;
  overflow: hidden !important;
}

.height-card-7 .profile-card {
  max-height: 525px !important;
  overflow: hidden !important;
}

.height-card-8 .profile-card {
  max-height: 525px !important;
  overflow: hidden !important;
}

.height-card-2 {
  min-height: 454px;
}

.h-analytics-fixed {
  height: 900px !important;
  overflow-y: auto !important;
}

.working-with-area {
  margin-bottom: 100px;
}

.code-snippets pre {
  background: #1e1e1e;
  color: #d4d4d4;
  padding: 16px;
  border-radius: 8px;
  overflow-x: auto;
  font-family: 'Fira Code', monospace;
  font-size: 14px;
  line-height: 1.5;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  position: relative;
}

/* Simulate editor line numbers */
.code-snippets pre code {
  counter-reset: line;
  display: block;
}

.code-snippets pre code span {
  display: block;
  counter-increment: line;
  padding-left: 2em;
  position: relative;
}

.code-snippets pre code span::before {
  content: counter(line);
  position: absolute;
  left: 0;
  width: 1.5em;
  color: #777;
  text-align: right;
}

/* Typing Indicator */
.typing-indicator {
  width: 60px;
  height: 30px;
  position: relative;
  z-index: 4;
}

.typing-circle {
  width: 6px;
  height: 6px;
  position: absolute;
  border-radius: 50%;
  background-color: #555;
  left: 15%;
  transform-origin: 50%;
  animation: typing-circle7124 0.5s alternate infinite ease;
}

@keyframes typing-circle7124 {
  0% {
    top: 20px;
    height: 5px;
    border-radius: 50px 50px 25px 25px;
    transform: scaleX(1.7);
  }

  40% {
    height: 8px;
    border-radius: 50%;
    transform: scaleX(1);
  }

  100% {
    top: 0%;
  }
}

.typing-circle:nth-child(2) {
  left: 45%;
  animation-delay: 0.2s;
}

.typing-circle:nth-child(3) {
  left: auto;
  right: 15%;
  animation-delay: 0.3s;
}

.typing-shadow {
  width: 5px;
  height: 4px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 30px;
  transform-origin: 50%;
  z-index: 3;
  left: 15%;
  filter: blur(1px);
  animation: typing-shadow046 0.5s alternate infinite ease;
}

@keyframes typing-shadow046 {
  0% {
    transform: scaleX(1.5);
  }

  40% {
    transform: scaleX(1);
    opacity: 0.7;
  }

  100% {
    transform: scaleX(0.2);
    opacity: 0.4;
  }
}

.typing-shadow:nth-child(4) {
  left: 45%;
  animation-delay: 0.2s;
}

.typing-shadow:nth-child(5) {
  left: auto;
  right: 15%;
  animation-delay: 0.3s;
}

/* Simulated syntax highlighting */
.code-snippets .tag {
  color: #569cd6;
}

.code-snippets .attr {
  color: #9cdcfe;
}

.code-snippets .val {
  color: #ce9178;
}

.code-snippets .comment {
  color: #6a9955;
  font-style: italic;
}

.code-snippets .keyword {
  color: #c586c0;
}


.width-100 {
  width: 100%;
}

.modal {
  z-index: 10550;
}

.modal-backdrop.show {
  z-index: 10000;
}



.text-pro {
  color: #838383;
}

.text-creator {
  color: #023e8a;
}

.h-100x {
  height: 75%;
}


.nav-item svg {
  margin-right: 7px;
}

.lets-talk-btn svg {
  margin-right: 10px;
}

/* .btn svg {
  margin-right: 10px;
} */

.disabled-card {
  opacity: 0.6;
  pointer-events: none;
  position: relative;
}

.disabled-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(2px);
  background: rgba(255, 255, 255, 0.7);
  padding: 30px;
  border-radius: 0.5rem;
  z-index: 10;
}

/* ✅ Hide */
.hidden {
  display: none !important;
}

/* ✅ Modal background */
.custom-modal {
  position: fixed;
  top: -24px;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ✅ Modal content box */
.custom-modal-content {
  background: white;
  padding: 30px;
  border-radius: 8px;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

tbody,
td,
tfoot,
th,
thead,
tr {
  border-style: none;
}

.badge-bg-country {
  color: green;
}

.rounded-pill.mt-1.blue {
  color: #0077b6;
}



.mobile-sidebar {
  position: fixed;
  top: 0;
  left: -260px;
  width: 240px;
  height: 100vh;
  background-color: #ffffff;
  z-index: 10001;
  padding: 24px 20px;
  transition: left 0.3s ease-in-out;
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mobile-sidebar.open {
  left: 0;
}

.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.sidebar-header .navbar-brand img {
  height: 40px;
}

.close-btn {
  font-size: 28px;
  font-weight: bold;
  background: none;
  border: none;
  color: #222;
  cursor: pointer;
}

.mobile-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav li {
  margin-bottom: 16px;
}

.mobile-nav a {
  color: #1a4d5f;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  display: block;
}

.mobile-nav a:hover {
  color: #007bff;
  padding-left: 6px;
}

.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(3px);
  z-index: 10000;
  display: none;
}

.sidebar-overlay.show {
  display: block;
}

/* ----------------------------- */

.mobile-sidebar-footer {
  /* margin-top: auto; */
  border-top: 1px solid #ddd;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  list-style: none;
  text-decoration: none;
  display: inline-flex;
  /* align-items: center; */
  gap: 4px;
}

.mobile-sidebar-footer a {
  font-size: 15px;
}

.sidebar-footer-link {
  font-size: 14px;
  padding: 10px 0;
  color: #1a4d5f;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s;
}

.sidebar-footer-link:hover {
  color: #007bff;
  padding-left: 6px;
  text-decoration: none;
}

.logout-link {
  color: #e63946;
}

.logout-link:hover {
  color: #d62828;
}

.login-link {
  color: #1c9b36;
}

.login-link:hover {
  color: #1c9b36;
}




* {
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE and Edge */
}

*::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera */
}

.d-flex-2 {
  display: flex !important;
  align-items: center;
  justify-content: center;
  /* align-content: center; */
  flex-direction: row;
}


.dropdown-item h5 {
  font-size: 0.9rem;
}

.dropdown-color-code {
  color: #1e8a88;
}

.specialization-option h5 {
  font-size: 1.3rem;
}


.mb-5 {
  margin-bottom: 3rem !important;
}

.toggle-visibility-icon {
  border: none;
  outline: none;
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.toggle-visibility-icon:focus,
.toggle-visibility-icon:active {
  outline: none;
  box-shadow: none;
}

@keyframes shake {
  0% {
    transform: translateX(0);
  }

  20% {
    transform: translateX(-4px);
  }

  40% {
    transform: translateX(4px);
  }

  60% {
    transform: translateX(-4px);
  }

  80% {
    transform: translateX(4px);
  }

  100% {
    transform: translateX(0);
  }
}

.shake {
  animation: shake 0.4s ease;
}


.items img:hover {
  transform: scale(1.05);
  transition: transform 0.2s ease;
}

.upload-slot {
  border-style: dashed;
  /* background: #f8f9fa; */
  transition: background 0.3s ease;
}

.upload-slot:hover {
  background: #e9ecef;
}

#upload-icon {
  font-size: 2rem;
  color: #6c757d;
}

.faq-question,
.faq-answer {
  cursor: text;
}

.faq-answer p {
  margin-bottom: 0;
  color: #333;
}

.faq-question {
  font-size: 1rem;
}

.accordion-button {
  background-color: #f9f9f9;
}

.accordion-item {
  border: 1px solid #c0c0c0;
}

.grayed-out {
  opacity: 0.5;
  /* Reduce opacity */
  pointer-events: none;
  /* Prevent interaction */
}


.editable-paragraph:empty:before {
  content: attr(data-placeholder);
  color: #999;
}

.editable:empty:before {
  content: attr(data-placeholder);
  color: #999;
  pointer-events: none;
}

.editable {
  min-height: 40px;
  padding: 0.5rem;
  border: 1px dashed #ccc;
  border-radius: 6px;
  transition: border-color 0.2s ease;
}

.editable:focus {
  outline: none;
  border-color: #007bff;
}

.editable:empty:before {
  content: attr(data-placeholder);
  color: #999;
  pointer-events: none;
}

.modal-backdrop.show {
  backdrop-filter: blur(8px);
  background-color: rgba(0, 0, 0, 0.712);
  /* slightly dark */
}



.text-desc {
  color: #055160;
}

.list-group-cert {
  --bs-list-group-color: var(--bs-body-color);
  --bs-list-group-bg: #0093ff0d;
  /* --bs-list-group-border-color: var(--bs-border-color); */
  /* --bs-list-group-border-width: var(--bs-border-width); */
  /* --bs-list-group-border-radius: var(--bs-border-radius); */
  --bs-list-group-item-padding-x: 1rem;
  --bs-list-group-item-padding-y: 0.5rem;
  --bs-list-group-action-color: var(--bs-secondary-color);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-tertiary-bg);
  --bs-list-group-action-active-color: var(--bs-body-color);
  --bs-list-group-action-active-bg: var(--bs-secondary-bg);
  --bs-list-group-disabled-color: var(--bs-secondary-color);
  --bs-list-group-disabled-bg: var(--bs-body-bg);
  --bs-list-group-active-color: #fff;
  --bs-list-group-active-bg: #0d6efd;
  --bs-list-group-active-border-color: #0d6efd;
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  border-radius: var(--bs-list-group-border-radius);
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: stretch;
}

.btn-custom {
  color: #007691;
  font-size: 15px;
  text-decoration: none;
}

.slot-3-dash .card-body {
  height: 500px;
  overflow: hidden;
}

.custom-client-feedback {
  padding: 20px;
  background: #f9f9f9;
  border-radius: 10px;
  height: 290px;

}

.custom-feedback-container {
  position: relative;
  overflow: hidden;
}

.custom-feedback-slider-wrapper {
  overflow: hidden;
}

.custom-feedback-slider {
  display: flex;
  transition: transform 0.5s ease;
}

.custom-feedback-item {
  min-width: 250px;
  margin-right: 30px;
  background: #fff;
  border-radius: 8px;
  padding: 15px;
  /* box-shadow: 0 2px 6px rgba(0,0,0,0.1); */
}

.custom-rating {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
}

.custom-rating i {
  color: gold;
}

.custom-feedback-text,
.custom-feedback-client {
  text-align: center;
  margin-top: 10px;
}

.custom-feedback-arrows {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}

.custom-arrow-left,
.custom-arrow-right {
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.3s;
}

.custom-arrow-left:hover,
.custom-arrow-right:hover {
  transform: scale(1.2);
}

.custom-feedback-slider-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.custom-feedback-slider {
  display: flex;
  transition: transform 0.5s ease;
}

.custom-feedback-item {
  flex: 0 0 80%;
  /* Each card takes 80% of the container width */
  max-width: 80%;
  margin: 0 10px;
  /* Spacing between items */
  box-sizing: border-box;
}



.image .icon-svgs svg {
  width: 45px;
  height: 45px;
}



/* -----------------------------------------------------------------------------------------------------------------------------byo card */
.modal-inner h3 {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 1.25rem;
}

.field-toggle-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 8px 0;
}

.field-toggle-row label {
  flex: 1;
  font-weight: 500;
}

.modal-inner input[type="text"],
.modal-inner input[type="date"],
.modal-inner input[type="file"],
.modal-inner textarea {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.modal-inner textarea {
  min-height: 80px;
  resize: vertical;
}

.byo-image-preview {
  display: block;
  max-width: 100%;
  border-radius: 6px;
  margin-top: 10px;
}

.modal-inner button {
  margin-top: 10px;
  margin-right: 8px;
}

.modal-inner .save-btn {
  background-color: #28a745;
  color: white;
}

.modal-inner .back-btn {
  background-color: #6c757d;
  color: white;
}

.modal-close-icon {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 22px;
  color: #999;
  cursor: pointer;
}

.byo-card-block {
  background: #ffffff;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 24px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.field-toggle-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  font-size: 0.9rem;
}

.byo-card-block input[type="text"],
.byo-card-block input[type="date"],
.byo-card-block textarea,
#byo-category-global {
  width: 57%;
  padding: 10px 12px;
  font-size: 0.95rem;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.byo-card-block textarea {
  min-height: 80px;
  resize: vertical;
}

.delete-btn,
.undo-btn,
.add-btn,
.back-btn,
.remove-btn,
.save-btn,
.save-btn-2,
.save-btn-3,
.add-btn-3 {
  border: none;
  border-radius: 6px;
  padding: 6px 16px;
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  transition: background .15s;
}

.edit-btn-1,
.edit-btn-2 {
  border: none;
  border-radius: 6px;
  background: #e1e7f5;
  color: #293d57;
  padding: 1px 18px;
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  transition: background .15s;
}

.edit-btn-3 {
  border: none;
  border-radius: 6px;
  background: #e1e7f5;
  color: #293d57;
  padding: 1px 18px;
  font-weight: 500;
  font-size: 30px;
  cursor: pointer;
  transition: background .15s;
}

.delete-btn:hover {
  background: #f9d6d5;
  color: #a9303a;
}

.undo-btn {
  background: #d0ecdc;
  color: #36724e;
}

.undo-btn:hover {
  background: #bae9d3;
}

.add-btn {
  background: #d7e5f9;
  color: #2151a1;
}

.add-btn:hover {
  background: #bad2e7;
}

.add-btn-3 {
  background: #2151a1;
  color: #ffffff;
}

.add-btn-3:hover {
  background: #bad2e7;
  color: #2151a1;
}

.send-btn {
  border: none;
  border-radius: 6px;
  padding: 5px 48px;
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  height: 100%;
  transition: background .15s;
}

.back-btn {
  background: rgb(153, 153, 153);
  color: rgb(255, 255, 255);
}

.back-btn:disabled {
  opacity: .5;
  pointer-events: none;
}

.save-btn {
  background-color: rgb(116, 116, 116);
  color: white;
}

.save-btn-3 {
  background-color: rgb(90 178 51);
  color: #ffffff;
}

.save-btn-2 {
  background-color: rgba(117, 241, 158, 0.445);
  color: #3a3a3a;
}

.save-btn-2:hover {
  background-color: rgba(117, 241, 158, 0.726);
  color: #1f1f1f;
}

.delete-btn,
.back-btn {
  background-color: #f35f6d;
  color: white;
}

.edit-btn {
  background-color: #007bff;
  color: white;
}

.edit-btn-1 {
  background: none;
  color: #2151a1;
  border: 1px solid #d7e5f9
}

.edit-btn-1:hover {
  background: #d7e5f9;
  color: #2151a1;
  border: 0.5px solid #d7e5f9
}

.edit-btn-2 {
  background: #2151a1;
  color: #d7e5f9;
  border: 1px solid #2151a1
}

.edit-btn-2:hover {
  background: #2151a1;
  color: #d7e5f9;
  border: 0.5px solid #d7e5f9
}

.edit-btn-3 {
  background: none;
  color: #2151a1;
  border: 1px solid #d7e5f9
}

.edit-btn-3:hover {
  background: #d7e5f9;
  color: #2151a1;
  border: 0.5px solid #d7e5f9
}

.undo-btn {
  background-color: rgb(255, 255, 255);
  color: rgb(204, 131, 23);
  border: 1px solid rgb(204, 131, 23);
}

.remove-btn {
  background-color: rgb(255, 255, 255);
  color: rgb(204, 131, 23);
  border: 1px solid rgb(204, 131, 23);
}

.add-btn-2 {
  background: #2151a1;
  color: #d7e5f9;
}

.add-btn-2:hover {
  background: #bad2e7;
  color: #2151a1;
}

.about-form-input .modal-close-x {
  position: absolute;
  display: flex;
  height: 27px;
  width: 27px;
  top: 20px;
  right: 23px;
  font-size: 23px;
  background: none;
  border: none;
  color: #000000;
  z-index: 1001;
  cursor: pointer;
  background: #9292924f;
  border-radius: 50px;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  align-items: center;
  backdrop-filter: blur(3px);
}

#byoModal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal-inner {
  position: relative;
  background: white;
  padding: 30px;
  max-width: 700px;
  width: 90%;
  border-radius: 10px;
  max-height: 90vh;
  overflow-y: auto;
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }

  50% {
    transform: scale(1.2);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 0.7;
  }
}

.pulse-icon {
  animation: pulse-ring 1.4s infinite;
}

label.form-check-label {
  font-size: 14px;
}

.upload-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

.upload-modal .upload-box {
  background: #fff;
  padding: 30px 40px;
  border-radius: 12px;
  text-align: center;
  font-size: 1rem;
  font-weight: bold;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
}

.upload-modal .upload-spinner {
  width: 30px;
  height: 30px;
  border: 4px solid #ccc;
  border-top: 4px solid #28a745;
  border-radius: 50%;
  margin: 20px auto;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}



.byo-scroll-container.scroll-enabled {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 10px 0;
}

.byo-scroll-container.scroll-enabled::-webkit-scrollbar {
  height: 8px;
}

.byo-scroll-container.scroll-enabled::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 6px;
}

.byo-scroll-container.scroll-enabled::-webkit-scrollbar-track {
  background: transparent;
}

.byo-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.byo-card-block input[type="text"],
.byo-card-block input[type="date"],
.byo-card-block textarea,
#byo-category-global {
  width: 57%;
  padding: .375rem 2.25rem .375rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-body-color);
  background-color: var(--bs-body-bg);
  background-image: var(--bs-form-select-bg-img), var(--bs-form-select-bg-icon, none);
  background-repeat: no-repeat;
  background-position: right .75rem center;
  background-size: 16px 12px;
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin-bottom: 13px;
}

/* Layout-Specific Styling */

/* === Gallery Layout -----------------------------------------------------------------------------------------------------------------=== */
.layout-gallery .byo-dates,
.layout-gallery .byo-subtitle,
.layout-gallery .byo-notes,
.layout-gallery .byo-title,
.layout-gallery .byo-description,
.layout-gallery .byo-dates-2,
.layout-gallery .byo-notes-2 {
  display: none;
}


.layout-gallery .byo-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 16px;
  margin-top: 10px;
}

.layout-gallery .byo-card {
  position: absolute;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.2s;
  max-height: 590px;
  border-bottom: 1px solid #cacaca6b;
}

.layout-gallery .overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  text-align: center;
  padding: 10px;
}

.layout-gallery .byo-title {
  margin-bottom: 5px;
}

.layout-gallery .overlay .byo-title-2 {
  font-size: 15px;
  font-weight: 100;
}

.layout-gallery .byo-subtitle-2 {
  font-size: 15px;
  font-weight: lighter;
  color: #ffffff;
  font-style: italic;
}


.layout-gallery .byo-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.2s;
  max-height: 590px;
  border-bottom: 1px solid #eeeeee;
}

.layout-gallery .byo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.layout-gallery .byo-image {
  position: relative;
  width: 100%;
  max-height: 590px;
  cursor: pointer;
}

.layout-gallery .byo-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 6px;
  margin-top: 10px;
}

.layout-gallery .byo-image .overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  text-align: center;
  padding: 10px;
}

.layout-gallery .overlay:hover {
  background: rgba(0, 0, 0, 0.84);

}

.layout-gallery .byo-image .overlay .byo-title {
  margin: 0;
  font-size: 60px;
  text-align: center;
}

.layout-gallery .byo-image .overlay .byo-description {
  font-size: 9px;
  text-align: center;
  color: #fff;
  margin: 4px 0 0;
}

.layout-gallery .byo-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

/* === Text Layout -----------------------------------------------------------------------------------------------------------------=== */
.layout-text .byo-image img,
.layout-text .byo-icon img,
.layout-text .byo-title-2,
.layout-text .byo-subtitle-2,
.layout-text .byo-dates {
  display: none;
}


.layout-text .byo-scroll-container {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 10px 0;
}

.layout-text .byo-card {
  background: #f8f9fa;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 16px;
  width: 280px;
  height: 280px;
  scroll-snap-align: start;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  gap: 6px;
  position: relative;
  flex-wrap: nowrap;
  align-content: stretch;
  align-items: flex-start;
}

/* Title */
.layout-text .byo-title {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
}

/* Subtitle */
.layout-text .byo-subtitle {
  font-size: 0.8rem;
  font-weight: 100;
  color: #555;
  font-style: italic;
}

/* Description container */
.layout-text .byo-content-wrapper {
  flex-grow: 1;
  overflow: hidden;
}

/* Description */
.layout-text .byo-description {
  font-size: 0.85rem;
  color: #444;
  margin-top: 6px;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 70px;
  line-height: 1.3;
}

/* Notes */
.layout-text .byo-notes {
  font-size: 0.8rem;
  color: #777;
  margin-top: 6px;
}

/* Dates fixed at bottom */
.layout-text .byo-dates-2 {
  font-size: 0.85rem;
  color: #888;
  margin-top: auto;
  padding-top: 6px;
  border-top: 1px solid #e0e0e0;
  text-align: center;
}

/* Remove unused elements */


/* === Vertical Layout -----------------------------------------------------------------------------------------------------------------=== */

.layout-vertical .byo-image,
.layout-vertical .byo-dates-2,
.layout-vertical .byo-title-2,
.layout-vertical .byo-subtitle-2,
.layout-vertical .byo-notes-2 {
  display: none;
}


.layout-vertical .byo-scroll-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: row;
  align-content: center;
}

.layout-vertical .byo-card {
  border-radius: 8px;
  padding: 16px;
  width: 450px;
  height: 290px;
  border: 1px solid var(--border);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

/* ✅ Image block (now placed above content) */
.layout-vertical .byo-image-top {
  width: 100%;
  height: 150px;
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: 12px;
}

.layout-vertical .byo-image-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
}

/* Title */
.layout-vertical .byo-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 4px 0;
  color: #333;
  text-align: center;
}

/* Subtitle */
.layout-vertical .byo-subtitle {
  font-size: 0.9rem;
  margin: 2px 0;
  color: #555;
  text-align: center;
}

/* Dates */
.layout-vertical .byo-dates {
  font-size: 0.85rem;
  color: #888;
  text-align: center;
}

/* Description */
.layout-vertical .byo-description {
  font-size: 0.85rem;
  color: #555;
  margin-top: 6px;
  text-align: center;
}

/* Notes */
.layout-vertical .byo-notes {
  font-size: 0.8rem;
  margin-top: 6px;
  color: #777;
  text-align: center;
}


/* Icon, if present */
.layout-vertical .byo-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  margin-bottom: 4px;
}


/* === Horizontal Layout -----------------------------------------------------------------------------------------------------------------=== */

.layout-horizontal .byo-subtitle-2,
.layout-horizontal .byo-title-2,
.layout-horizontal .byo-dates-2,
.layout-horizontal .byo-notes-2 {
  display: none;
}

.layout-horizontal .byo-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.layout-horizontal .byo-scroll-container {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: horizontalScroll linear 10s infinite;
}

.layout-horizontal .byo-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 350px;
  height: 270px;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s;
  flex-direction: column;
  overflow: hidden;
  /* border: 1px solid #e3e3e3; */
  background-color: #000;
  color: white;
}

.layout-horizontal .byo-card:hover {
  transform: scale(0.95);
}

/* 🔥 Background image layer */
.layout-horizontal .horizontal-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

/* Overlay shading */
.layout-horizontal .byo-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  transition: background 0.3s;
}

/* Remove overlay on hover */
.layout-horizontal .byo-card:hover::before {
  background: rgba(0, 0, 0, 0);
}

/* Bring real content above overlay */
.layout-horizontal .byo-card>*:not(.horizontal-bg) {
  position: relative;
  z-index: 2;
  transition: opacity 0.3s ease;
}

/* Fade out all text on hover */
.layout-horizontal .byo-card:hover .byo-title,
.layout-horizontal .byo-card:hover .byo-subtitle,
.layout-horizontal .byo-card:hover .byo-dates,
.layout-horizontal .byo-card:hover .byo-description,
.layout-horizontal .byo-card:hover .byo-notes {
  opacity: 0;
}

/* Title and meta styles */
.layout-horizontal .byo-title {
  font-weight: bold;
  font-size: 18px;
  margin-top: 10px;
  color: #fff;
}

.layout-horizontal .byo-subtitle {
  font-style: italic;
  color: #eee;
  font-size: 14px;
  margin-top: 5px;
}

.layout-horizontal .byo-dates {
  font-size: 0.85rem;
  color: #ddd;
  margin-top: 5px;
}

.layout-horizontal .byo-description {
  font-size: 0.85em;
  color: #f0f0f0;
  margin-top: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.layout-horizontal .byo-notes {
  font-size: 0.8em;
  margin-top: 5px;
  color: #ccc;
}

/* Hide default img tag */
.layout-horizontal .byo-image {
  display: none;
}

/* Scroll animation */
@keyframes horizontalScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-33.333%);
  }
}

.layout-horizontal .byo-scroll-container:hover {
  animation-play-state: paused;
}

/* === Services Layout -----------------------------------------------------------------------------------------------------------------=== */
/* === Services Layout (Styled like Completed Projects Grid) === */

/* Hide overlay styles not needed */
.layout-services .byo-title-2,
.layout-services .byo-subtitle-2,
.layout-services .byo-notes,
.layout-services .byo-icon,
.layout-services .byo-dates {
  display: none;
}

.layout-services .byo-scroll-container {
  display: flex;
  gap: 20px;
  padding-bottom: 10px;
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-snap-type: y mandatory;
}



.layout-services .byo-card {
  background: #fff;
  border-radius: 8px;
  padding: 16px;
  min-width: 100px;
  max-width: 350px;
  height: 280px;
  /* box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08); */
  transition: transform 0.2s, box-shadow 0.2s;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  border: 1px solid #d5d5d5a8;
}

.layout-services .byo-card:hover {
  border: 1px solid #ddd;
  transform: scale(0.98);
}

/* Image */
.layout-services .byo-image {
  width: 100%;
  height: 150px;
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: 10px;
}

.layout-services .byo-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 5px;
}

/* Title */
.layout-services .byo-title {
  font-size: 1.1rem;
  /* margin-bottom: 6px; */
  color: #333;
  font-weight: 600;
}

/* Subtitle (optional if needed) */
.layout-services .byo-subtitle {
  font-size: 0.8rem;
  font-weight: 100;
  color: #555;
  font-style: italic;
}

/* Dates */
.layout-services .byo-dates-2 {
  font-size: 0.8rem;
  color: #0e7700;
  /* padding-top: 6px; */
}

/* Description */
.layout-services .byo-description {
  font-size: 0.9rem;
  margin-top: 6px;
  color: #555;
  line-height: 1.2;
}

/* Notes */
.layout-services .byo-notes {
  font-size: 0.8rem;
  color: #777;
  margin-top: 4px;
}



/* ------------------------------------------------------------------------------- timezone */
.avail-form {
  max-width: 700px;
  margin: auto;
  background: #fff;
  padding: 24px;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.avail-form h2 {
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.avail-row {
  margin-bottom: 20px;
}

.avail-row label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: #333;
}

.avail-days {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 7px;
  flex-wrap: nowrap;
}

.avail-days label {
  background: #f1f3f5;
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid #ccc;
  width: 50px;
  flex-direction: column;
}

.avail-time {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avail-time input[type="time"] {
  padding: 6px 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.95rem;
}

.avail-row select[multiple] {
  height: 140px;
  background: #fff;
  font-size: 0.95rem;
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.avail-row textarea {
  width: 100%;
  padding: 8px;
  font-size: 0.95rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: vertical;
  min-height: 80px;
}

.avail-actions {
  display: flex;
  gap: 10px;
  margin-top: 24px;
  justify-content: flex-end;
}


.avail-card {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 16px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.avail-calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  margin-bottom: 12px;
}

.avail-day {
  background: #fff;
  border: 1px solid #ddd;
  padding: 6px;
  border-radius: 6px;
  text-align: center;
  font-weight: 500;
  color: #444;
}

.avail-day.active {
  background: #007bff;
  color: white;
  border-color: #007bff;
}

.avail-time,
.avail-zones,
.avail-desc {
  margin-top: 10px;
}

.avail-zones span {
  display: inline-block;
  background: #dee2e6;
  color: #333;
  padding: 4px 8px;
  border-radius: 6px;
  margin: 3px 4px 0 0;
  font-size: 0.85rem;
}

.avail-desc {
  font-style: italic;
  color: #444;
  font-size: 0.94rem;
  background: #eef0f2;
  padding: 10px;
  border-radius: 6px;
  margin-top: 12px;
}


/* ----------------------------------------------------------------------------------------------------------------------- art portfolio */

/* --------------------------------------------------------------------------------------------------clients & brands */
.logo-edit-container {
  max-width: 800px;
  margin: auto;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  overflow-y: auto;
  /* max-height: 300px; */
  position: relative;
}

.logo-actions {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.logo-actions button {
  padding: 6px 6px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

.logo-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  background: #f9fafb;
  padding: 10px;
  margin-bottom: 12px;
  border-radius: 6px;
}

.logo-item img {
  max-height: 50px;
  width: auto;
  border-radius: 4px;
}

.logo-item input[type="text"],
.logo-item input[type="file"] {
  flex: 1 1 200px;
  padding: 6px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.logo-item button {
  padding: 6px 10px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

.save-logo {
  background: #28a745;
  color: white;
}

.delete-logo {
  background: #dc3545;
  color: white;
}

/* ----------------------------------------------------------------------------------------------------- client feedback */
.feedback-edit-container {
  padding: 20px;
  background-color: #f9fafb;
  border-radius: 8px;
  max-width: 500px;
  margin: auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.feedback-edit-form {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.feedback-edit-form input {
  flex: 1;
  padding: 8px;
  border-radius: 4px;
  border: 1px solid #ccc;
}

.feedback-edit-form button {
  padding: 8px 12px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.feedback-edit-form button:disabled {
  background-color: #6c757d;
  cursor: not-allowed;
}

.feedback-link-result {
  margin-bottom: 20px;
  color: #17a2b8;
}

.request-list {
  list-style: none;
  padding: 0;
  max-height: 200px;
  /* Adjust as needed */
  overflow-y: auto;
  /* Enables scrolling */
}

.request-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 10px;
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 4px;
  margin-bottom: 8px;
  justify-content: space-between;
  align-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
}

.request-item span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.request-item button {
  background: none;
  border: none;
  cursor: pointer;
}

.align-btns {
  display: flex;
  gap: 10px;
}

.no-requests {
  color: #6c757d;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* --------------------------------------------------------------------------------------------------------------------------------- collaborations */
.collab-edit-container {
  max-width: 800px;
  margin: auto;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  overflow-y: auto;
  /* max-height: 500px; */
}

.collab-header {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 10px;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 20px;
}

.collab-header .btn {
  padding: 6px 12px;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
}

.back-btn {
  background: #6c757d;
  color: white;
}

.collab-entry {
  background: #f9fafb;
  border-radius: 6px;
  padding: 12px;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.collab-entry img {
  max-height: 250px;
  width: auto;
  border-radius: 4px;
  object-fit: cover;
}

.collab-entry input[type="text"],
.collab-entry input[type="url"],
.collab-entry textarea,
.collab-entry input[type="file"] {
  padding: 6px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.collab-entry textarea {
  resize: vertical;
  height: 60px;
}

.collab-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.collab-actions button {
  padding: 8px 14px;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
}

/* ---------------------------------------------------------------------------------------------------------------portfolio  */
/* .portfolio-item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
} */

.portfolio-area {
  display: block;
  width: 100%;
}


/* .portfolio-area {
    display: flex
;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: center;
    align-items: baseline;
} */

.portfolio-area .portfolio-item .image img {
  border-radius: 8px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  /* height: 200px; */
  width: 200px;
}

.portfolio-area .portfolio-item .text {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  flex-direction: row;
  align-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
}


.portfolio-item {
  background: #fff;
  padding: 10px;
  border-radius: 12px;
  height: 100%;
}

span.badge.rounded-pill.bg-secondary.mt-1 {
  position: absolute;
  top: 25px;
}

.header-right-info.d-flex.align-items-center.desktop-only {
  padding-right: 25px;
}


/* Title */
.account-settings-sidebar h5 {
  font-size: 1rem;
  color: #444;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* Sidebar Links */
.settings-menu a {
  color: #31708f;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  display: inline-block;
  padding: 6px 0;
}

.settings-menu a:hover {
  color: #23527c;
  text-decoration: underline;
}

.settings-menu a.fw-bold {
  color: #1d5cff;
}

.settings-menu .text-danger {
  font-weight: 500;
  font-size: 0.95rem;
}

/* Divider before Danger Zone */
.settings-menu li.border-top {
  border-top: 1px solid #ddd;
  margin-top: 1rem;
  padding-top: 1rem;
}

.loader-1 {
  display: flex;
  --height-of-loader: 4px;
  --loader-color: #0071e2;
  width: 130px;
  height: var(--height-of-loader);
  border-radius: 30px;
  background-color: rgba(0, 0, 0, 0.2);
  position: relative;
}

.loader-1::before {
  content: "";
  position: absolute;
  background: var(--loader-color);
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  border-radius: 30px;
  animation: moving 1s ease-in-out infinite;
  ;
}

@keyframes moving {
  50% {
    width: 100%;
  }

  100% {
    width: 0;
    right: 0;
    left: unset;
  }
}

.active-blue-ring {
  border: 3px solid #007bff;
  box-shadow: 0px 0px 4px 5px rgba(0, 123, 255, 0.2);
}



/* The switch - the box around the slider */
.switch {
  font-size: 17px;
  position: relative;
  display: inline-block;
  width: 3em;
  height: 1.7em;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: #9fccfa;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.slider:before {
  position: absolute;
  content: "";
  display: flex;
  align-items: center;
  justify-content: center;
  height: 1.7em;
  width: 1.7em;
  inset: 0;
  background-color: white;
  border-radius: 50px;
  /* box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4); */
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid #0974f1;
}

.switch input:checked+.slider {
  background: #0974f1;
}

.switch input:focus+.slider {
  box-shadow: 0 0 1px #0974f1;
}

.switch input:checked+.slider:before {
  transform: translateX(1.6em);
}

.info-row {
  align-items: center;
  gap: 16px;
}

.dropdown-item svg {
  margin-right: 10px;
}

.notification-dot {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 10px;
  height: 10px;
  background: #dc3545;
  border-radius: 50%;
  border: 2px solid white;
}

/* 
creator hub */
.settings-menu a:hover {
  color: #23527c;
  font-size: larger;
  font-weight: 500;
  text-decoration: none;
}

.mobile-nav svg,
.mobile-sidebar-footer svg {
  margin-right: 10px;
}

.dropdown-menu.show {
  display: block;
  width: 200px;
  box-shadow: 0px 6px 10px 2px rgb(81 126 241 / 25%);
}

.header-right-info .dropdown .dropdown-menu.show {
  display: block;
  width: 200px;
  box-shadow: 0px 6px 10px 2px rgb(81 126 241 / 25%);
  /* height: 500px; */
  max-height: 370px;
}

/* plugin button download */
/* From Uiverse.io by andrew-demchenk0 */
.button-download-plugin {
  position: relative;
  width: 260px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  border: 2px solid var(--main-color);
  box-shadow: 4px 4px var(--main-color);
  background-color: var(--bg-color);
  border-radius: 10px;
  overflow: hidden;

}

.chrome .button-download-plugin {
  --main-focus: #2d8cf0;
  --font-color: #323232;
  --bg-color-sub: #4285F4;
  --bg-color: #eee;
  --main-color: #323232;

}

.zip .button-download-plugin {
  --main-focus: #2d8cf0;
  --font-color: #323232;
  --bg-color-sub: #31708f;
  --bg-color: #eee;
  --main-color: #323232;

}


.button-download-plugin,
.button__icon,
.button__text {
  transition: all 0.3s;
}

.button-download-plugin .button__text {
  transform: translateX(15px);
  color: var(--font-color);
  font-weight: 600;
  text-decoration: none;
}

.button-download-plugin .button__icon {
  position: absolute;
  transform: translateX(217px);
  height: 100%;
  width: 39px;
  background-color: var(--bg-color-sub);
  display: flex;
  align-items: center;
  justify-content: center;
}

.button-download-plugin .svg {
  width: 20px;
  fill: var(--main-color);
}

.button-download-plugin:hover {
  background: var(--bg-color);
}

.button-download-plugin:hover .button__text {
  color: transparent;
}

.button-download-plugin:hover .button__icon {
  width: 260px;
  transform: translateX(0);
}

.button-download-plugin:active {
  transform: translate(3px, 3px);
  box-shadow: 0px 0px var(--main-color);
}

.delete-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.3);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.delete-modal-content {
  background: #fff;
  padding: 20px 25px;
  border-radius: 8px;
  text-align: center;
  max-width: 320px;
  width: 90%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}

.delete-modal-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}

/* From Uiverse.io by kamehame-ha */
.cards-cv {
  display: flex;
  flex-direction: row;
  gap: 15px;
}



.cards-cv .card-cv {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  /* height: 100px; */
  width: 110px;
  border-radius: 10px;
  color: black;
  cursor: pointer;
  transition: 400ms;
}

.cards-cv .card-cv p.tip {
  font-size: 1em;
  font-weight: 700;
}

.cards-cv .card-cv p.second-text {
  font-size: .7em;
}

.cards-cv .card-cv:hover {
  transform: scale(1.1, 1.1);
}

.cards-cv:hover>.card-cv:not(:hover) {
  filter: blur(10px);
  transform: scale(0.9, 0.9);
}

.status-dot {
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
}

.status-dot i {
  font-size: 10px;
}

.status-dot.green i {
  color: #28a745;
}

.status-dot.gray i {
  color: #999;
}

.pulse i {
  animation: pulseDot 1.5s ease-in-out infinite;
}

@keyframes pulseDot {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.5);
    opacity: 0.5;
  }
}

.available-btn-2 {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: flex-start;
  align-items: center;
  justify-content: space-evenly;
}


.svgContainer-socials {
  width: 100%;
  height: 100%;
  transition: all .3s;
  border: 1px transparent white;
}

/* From Uiverse.io by Fernando-sv */
.loader-uni {
  border: 4px solid rgba(0, 0, 0, .1);
  border-left-color: transparent;
  border-radius: 50%;
}

.loader-uni {
  border: 4px solid rgba(0, 0, 0, .1);
  border-left-color: transparent;
  width: 20px;
  height: 20px;
}

.loader-uni {
  border: 4px solid rgba(0, 0, 0, .1);
  border-left-color: transparent;
  width: 20px;
  height: 20px;
  animation: spin89345 1s linear infinite;
}

@keyframes spin89345 {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.pulsate-dot svg {
  animation: pulsate 1s infinite;
  transform-origin: center;
}

@keyframes pulsate {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.35);
    opacity: 0.8;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.align-to-right {
  text-align: right;
}

.card-exp {
  width: 290px;
  height: 254px;
  background-image: linear-gradient(163deg, #00ff75 0%, #3700ff 100%);
  border-radius: 20px;
  transition: all .3s;
}

.card2-exp {
  width: 290px;
  height: 254px;
  background-color: #f3f3f3;
  border-radius: 8px;
  transition: all .2s;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 0px 7px 3px rgb(0 0 0 / 4%);
}

.card2-exp:hover {
  transform: scale(0.98);
  border-radius: 20px;
}

.edit-actions {
  display: flex;
  flex-direction: row;
  align-content: center;
  justify-content: space-between;
  margin-bottom: 10px;
}


.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 24px;
  margin: 0 0 20px 0;
  padding: 0;
}

.service-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px 0 rgba(30, 34, 40, 0.08);
  padding: 24px 14px 18px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: box-shadow .18s, opacity .18s;
}

.service-card:hover {
  box-shadow: 0 8px 32px 0 rgba(50, 60, 100, 0.15);
  cursor: pointer;
}

.service-card-hidden {
  opacity: 0.38;
  pointer-events: none;
}

.service-card-top {
  display: flex;
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  justify-content: space-between;
  align-items: center;
}

.toggle-visibility-icon {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 3px;
  border-radius: 50%;
  transition: background .16s;
}

.toggle-visibility-icon:hover {
  background: #eef4fa;
}

.service-card-icon {
  margin: 0 0 13px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  width: 48px;
}

.service-card-title {
  font-size: 17px;
  font-weight: 600;
  color: #253158;
  text-align: center;
  word-break: break-word;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 24px;
  margin: 0 0 20px 0;
  padding: 0;
}

.services-item {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 0 5px 0px rgba(30, 34, 40, 0.08);
  padding: 24px 14px 18px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: box-shadow .18s, opacity .18s;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: box-shadow .18s, opacity .18s;
}

.services-item:hover {
  box-shadow: 0 8px 32px 0 rgb(50 60 100 / 5%);
  cursor: pointer;
  border: 0.5px solid #dfdfdf;
}

.services-item-hidden {
  opacity: 0.38;
  pointer-events: none;
}

.services-item-top {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
}

.toggle-visibility-icon {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 3px;
  border-radius: 50%;
  transition: background .16s;
}

.toggle-visibility-icon:hover {
  background: #eef4fa;
}

.services-item-icon {
  margin: 0 0 13px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  width: 48px;
}

.services-item-title {
  font-size: 17px;
  font-weight: 600;
  color: #253158;
  text-align: center;
  word-break: break-word;
}


/* --- MAIN FEEDBACK DESIGN --- */
.client-feedback {
  margin: 0 0 32px 0;
}

.main-common-title {
  font-size: 2.1rem;
  font-weight: 800;
  color: #21395a;
  margin-bottom: 24px;
  letter-spacing: -1px;
  text-align: center;
  display: flex;
}

.feedback-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 32px;
  margin: 0 auto;
}

.feedback-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 24px 0 rgb(45 52 110 / 5%);
  padding: 28px 26px 20px 26px;
  display: flex;
  flex-direction: column;
  transition: box-shadow .17s;
  border: 1.4px solid #f0f2f8;
  min-height: 180px;
}

.feedback-card:hover {
  box-shadow: 0 8px 32px 0 rgba(48, 60, 120, 0.17);
}

.feedback-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
  gap: 16px;
}

.feedback-rating {
  display: flex;
  gap: 3px;
}

.star {
  display: inline-block;
}

.star-muted {
  opacity: 0.23;
}

.feedback-website a {
  display: flex;
  align-items: center;
  font-size: 14.5px;
  color: #008f18;
  font-weight: 600;
  text-decoration: none;
  gap: 4px;
  transition: color .15s;
}

.feedback-website a:hover {
  color: #006910;
}

.arrow-up {
  margin-left: 3px;
  margin-top: 1px;
}

.feedback-card-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feedback-text {
  font-size: 1.07rem;
  color: #223246;
  margin-bottom: 0;
  line-height: 1.68;
  font-weight: 500;
}

.feedback-author {
  color: #6b7a90;
  font-size: 0.97rem;
  font-weight: 600;
  margin-top: 4px;
}

.feedback-author span {
  color: #1e3a5a;
  font-weight: 700;
}

.feedback-all-btn-wrap {
  text-align: center;
  margin-top: 20px;
  display: flex;
  flex-direction: row-reverse;
}

.see-all-reviews-btn {
  background: #ffffff;
  /* color: #fff; */
  padding: 8px 36px;
  font-weight: 700;
  border-radius: 10px;
  border: 0.5px solid #e9e9e9;
  font-size: 1.06rem;
  box-shadow: 0 1px 8px 0 rgba(48, 160, 100, 0.08);
  cursor: pointer;
  transition: background .16s;
  outline: none;
}

.see-all-reviews-btn:hover {
  background: #909090;
  color: white;
}

/* --- MODAL STYLES --- */
.reviews-modal-overlay {
  display: none;
  position: fixed;
  z-index: 1200;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(24, 38, 54, 0.85);
  justify-content: center;
  align-items: flex-start;
  padding-top: 42px;
}

.reviews-modal-content {
  background: #fff;
  border-radius: 17px;
  max-width: 1050px;
  width: 96vw;
  min-height: 380px;
  max-height: 85vh;
  padding: 0 32px 30px 32px;
  overflow-y: auto;
  box-shadow: 0 8px 32px 0 rgba(30, 34, 44, 0.20);
  position: relative;
  animation: fadeIn .25s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(35px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.reviews-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0 9px 0;
  border-bottom: 1.5px solid #f0f0f5;
  font-size: 1.13rem;
  font-weight: 800;
  color: #21395a;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 1;
}

.modal-close-btn {
  background: none;
  border: none;
  font-size: 2.3rem;
  color: #e74c3c;
  font-weight: bold;
  line-height: 1;
  cursor: pointer;
  margin-right: 4px;
}

.all-reviews-grid {
  margin-top: 20px;
  max-height: 70vh;
  overflow-y: auto;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
}


.faqs-section {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 18px 0 rgba(32, 48, 85, 0.08);
  padding: 38px 32px 30px 32px;
  margin-bottom: 35px;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

.faq-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 19px;
  font-size: 1.55rem;
}

.faq-add-btn {
  background: #008f18;
  color: #fff;
  border: none;
  border-radius: 22px;
  font-size: 1.01rem;
  font-weight: 600;
  padding: 8px 23px;
  cursor: pointer;
  box-shadow: 0 2px 12px 0 rgba(32, 180, 50, 0.07);
  transition: background .13s;
}

.faq-add-btn:disabled {
  background: #c7dbcf;
  color: #9fa8b7;
  cursor: not-allowed;
}

.faq-add-form {
  display: flex;
  gap: 13px;
  margin-bottom: 21px;
  padding: 8px 0 8px 0;
  background: #f5f9fa;
  border-radius: 10px;
  align-items: flex-end;
}

.faq-add-form input {
  flex: 1;
  font-size: 1rem;
  padding: 9px 12px;
  border-radius: 7px;
  border: 1px solid #dbe3ec;
  outline: none;
  background: #fff;
}

.faq-save-btn {
  background: #008f18;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 7px 18px;
  font-weight: 600;
  cursor: pointer;
  margin-right: 3px;
}

.faq-cancel-btn {
  background: #eee;
  color: #444;
  border: none;
  border-radius: 8px;
  padding: 7px 14px;
  font-weight: 500;
  cursor: pointer;
}

.faqs-accordion {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.faq-card {
  background: #f9fbfc;
  border: 1.1px solid #e7ecf2;
  border-radius: 11px;
  box-shadow: 0 1px 7px 0 rgba(48, 70, 120, 0.06);
  padding: 18px 18px 13px 20px;
  transition: box-shadow .15s;
  position: relative;
}

.faq-card:hover {
  box-shadow: 0 4px 14px 0 rgba(36, 140, 80, 0.07);
}

.faq-q-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 8px;
  gap: 20px;
}

.faq-q-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: #223746;
  line-height: 1.6;
  flex: 1;
  word-break: break-word;
}

.faq-card-actions {
  display: flex;
  gap: 9px;
}

.faq-edit-btn,
.faq-delete-btn {
  background: none;
  border: none;
  font-size: 1.33rem;
  cursor: pointer;
  color: #b7c3d8;
  padding: 3px 7px;
  border-radius: 7px;
  transition: background .14s, color .17s;
}

.faq-edit-btn:hover {
  color: #008f18;
  background: #e8f5ee;
}

.faq-delete-btn:hover {
  color: #e60000;
  background: #faebeb;
}

.faq-a-row {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  color: #2a3854;
  margin-bottom: 0;
}

.faq-label {
  font-size: 1.07rem;
  font-weight: 700;
  color: #008f18;
  margin-top: 1px;
}

.faq-a-text {
  font-size: 1.05rem;
  font-weight: 500;
  color: #384756;
  line-height: 1.7;
  word-break: break-word;
}

.faq-inline-edit {
  display: flex;
  gap: 10px;
  margin-top: 13px;
}

.faq-inline-edit input,
.faq-inline-edit textarea {
  flex: 1;
  font-size: 1rem;
  padding: 7px 12px;
  border-radius: 7px;
  border: 1px solid #dbe3ec;
  background: #fff;
  outline: none;
  resize: none;
}

.faq-inline-edit button {
  margin-left: 0;
}

.public-faqs-section {
  background: #fff;
  border-radius: 16px;
  /* box-shadow: 0 2px 18px 0 rgba(32,48,85,0.07);
  padding: 34px 29px 20px 29px; */
  margin-bottom: 35px;
}

.public-faqs-accordion {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.public-faq-card {
  background: #f9fbfc;
  border-radius: 10px;
  box-shadow: 0 1px 7px 0 rgba(48, 70, 120, 0.04);
  border: 1.1px solid #e7ecf2;
  margin-bottom: 2px;
  transition: box-shadow .12s;
}

.public-faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 15px 15px 11px;
  font-size: 1.07rem;
  font-weight: 600;
  color: #224149;
  cursor: pointer;
  outline: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color .13s;
}

.public-faq-q:focus {
  color: #008f18;
}

.public-faq-icon {
  margin-left: auto;
  font-size: 1.7rem;
  color: #99c6ad;
  font-weight: 400;
  transition: color .13s;
}

.public-faq-card.open .public-faq-icon {
  color: #008f18;
}

.public-faq-a {
  padding: 0 18px 15px 18px;
  font-size: 1.02rem;
  color: #3a4767;
  line-height: 1.65;
  background: none;
  border: none;
  border-radius: 0 0 10px 10px;
  margin-top: -5px;
}

.custom-dropdown {
  position: relative;
  display: inline-block;
  margin-left: 10px;
  font-weight: 600;
}

.dropdown-toggle {
  background: #ffffff;
  color: #1a374d;
  border: none;
  border-radius: 7px;
  padding: 8px 18px 8px 14px;
  min-width: 130px;
  font-size: 1.1em;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 13px;
  transition: border-color .15s, background .15s;
}

.dropdown-toggle:focus {
  border-color: #89b1bb;
  outline: none;
  background: #f0f5f9;
}

.dropdown-arrow {
  font-size: 1.2em;
  color: #89b1bb;
  margin-left: 6px;
  transition: transform .12s;
}

.custom-dropdown.open .dropdown-arrow {
  transform: rotate(-180deg);
}

.dropdown-menu {
  display: none;
  position: absolute;
  z-index: 40;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 3px 16px 0 rgba(28, 54, 96, 0.08);
  border: 1px solid #e1e9ef;
  min-width: 200px;
  margin-top: 7px;
  right: 0;
  left: 0;
  padding: 3px 0;
  max-height: 290px;
  overflow-y: auto;
}

.custom-dropdown.open .dropdown-menu {
  display: block;
}

.dropdown-item {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  /* padding: 10px 19px 9px 16px; */
  font-size: 1em;
  color: #24416a;
  cursor: pointer;
  border-radius: 6px;
  transition: background .11s, color .11s;
}

.dropdown-item.selected,
.dropdown-item:focus,
.dropdown-item:hover {
  background: #e8f8ee;
  color: #89b1bb;
}

.top-header-services {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: nowrap;
  align-content: center;
  margin-bottom: 50px;
}

.profile-top-info {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 22px;
  /* background: #fcfcfc; */
  border-radius: 16px;
  /* box-shadow: 0 2px 16px 0 rgba(32, 48, 85, 0.07); */
  /* padding: 32px 27px 18px 32px; */
  margin-bottom: 30px;
  flex-wrap: wrap;
  flex-direction: row;
}

.top-info-text {
  flex: 1 1 370px;
  min-width: 260px;
}

.specialization-head {
  font-size: 1.33rem;
  font-weight: 600;
  color: #222d3d;
  margin-bottom: 7px;
  margin-top: 0;
  letter-spacing: -.01em;
  display: flex;
  gap: 9px;
  align-items: baseline;
  flex-direction: row;
}

.dropdown-color-code,
strong.dropdown-color-code {
  color: #005e10;
  font-weight: 700;
  font-size: 1.22em;
  margin-left: 7px;
  letter-spacing: .01em;
}

.specialization-desc {
  font-size: 1.07rem;
  color: #35445a;
  margin-top: 4px;
  line-height: 1.6;
  font-weight: 400;
}

.available-status {
  flex-shrink: 0;
  margin-top: 2px;
  padding-left: 16px;
  font-size: 1.05rem;
}

.available-on {
  color: #005e10;
  font-weight: 600;
}

.available-off {
  color: #c5c8ce;
  font-weight: 600;
}

.available-status i {
  font-size: .97em;
  margin-left: 7px;
  vertical-align: -1.5px;
}

.pulse {
  animation: pulse-green 1.4s cubic-bezier(0.45, 0, 0.55, 1) infinite;
  color: #0bb446 !important;
  border-radius: 50%;
  /* Makes the box-shadow fully round */
  box-shadow: 0 0 0 0 #0bb446;
  background: #0bb446;
  width: 12px;
  /* Adjust size as needed */
  height: 12px;
  display: inline-block;
  /* Needed for border-radius/size */
  vertical-align: -1.5px;
  /* Aligns with text baseline */
}

.pulse i {
  color: inherit;
}

@keyframes pulse-green {
  0% {
    box-shadow: 0 0 0 0 rgba(11, 180, 70, 0.34);
  }

  65% {
    box-shadow: 0 0 0 10px rgba(11, 180, 70, 0.05);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(11, 180, 70, 0);
  }
}

.portfolio-top-info {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px 0 rgba(32, 48, 85, 0.07);
  padding: 34px 32px 18px 32px;
  margin-bottom: 28px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 18px;
  flex-wrap: wrap;
}

.portfolio-text {
  flex: 1 1 390px;
  min-width: 240px;
}

.main-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #232b43;
  margin-bottom: 7px;
  margin-top: 0;
  letter-spacing: -.01em;
  line-height: 1.18;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.title-highlight {
  color: #008f18;
  background: linear-gradient(90deg, #eafbe7 60%, #b6f7d5 100%);
  padding: 3px 15px 4px 10px;
  margin-left: 7px;
  border-radius: 11px;
  font-weight: 800;
  font-size: 1.02em;
  box-shadow: 0 1px 3px 0 rgba(32, 48, 85, 0.06);
  display: inline-block;
}

.main-subtitle {
  font-size: 1.13rem;
  color: #384b63;
  font-weight: 400;
  margin-top: 9px;
  margin-bottom: 0;
  line-height: 1.7;
  max-width: 670px;
}

.portfolio-area {
  margin-top: 28px;
}

.portfolio-item {
  background: #f8fbfe;
  border-radius: 18px;
  box-shadow: 0 2px 22px 0 rgba(45, 156, 219, 0.09);
  padding: 25px 18px 16px 18px;
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  min-height: 360px;
  transition: box-shadow .16s;
  border: 1.7px solid #e3f1f8;
  position: relative;
}

.portfolio-item:hover {
  box-shadow: 0 5px 30px 0 rgba(31, 154, 204, 0.17);
  border-color: #89e2ef;
}

.portfolio-item .image {
  border-radius: 12px;
  overflow: hidden;
  background: #e3f1f8;
  margin-bottom: 19px;
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-item .img-fluid {
  border-radius: 12px;
  object-fit: cover;
  width: 100%;
  height: 225px;
  background: #e3f1f8;
  transition: transform 0.18s;
}

.portfolio-item .img-fluid:hover {
  transform: scale(1.025);
}

.portfolio-item .ratio {
  width: 100%;
  height: 210px;
  border-radius: 12px;
  background: #e3f1f8;
  margin: 0 auto 10px auto;
  box-shadow: 0 2px 6px 0 rgba(45, 156, 219, 0.07);
}

.portfolio-item .title {
  font-size: 1.24rem;
  font-weight: 700;
  color: #246981;
  letter-spacing: -0.01em;
  margin-bottom: 3px;
  display: block;
}

.portfolio-item .title a {
  color: #11b9ce;
  text-decoration: none;
  transition: color 0.17s;
}

.portfolio-item .title a:hover {
  color: #1789bb;
  text-decoration: underline;
}

.portfolio-item .subtitle {
  color: #42627b;
  font-size: 1.04rem;
  margin-bottom: 2px;
  font-weight: 400;
  opacity: 0.97;
}

.visite-btn a {
  background: linear-gradient(90deg, #6fd6ff 0%, #11b9ce 100%);
  color: #fff;
  font-weight: 600;
  border-radius: 7px;
  padding: 7px 20px 8px 16px;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 2px 8px 0 rgba(27, 170, 196, 0.07);
  transition: background 0.18s, color 0.13s;
}

.visite-btn a:hover {
  background: linear-gradient(90deg, #1789bb 0%, #11b9ce 100%);
  color: #e0f6fd;
}

.align-port {
  gap: 12px !important;
}

.btn-outline-secondary,
.btn-outline-danger {
  border-radius: 7px !important;
  font-size: 1.08rem;
}

.bg-light {
  background: #f4faff !important;
}

.text-muted {
  color: #92aac7 !important;
}


form#portfolioLayoutForm {
  display: flex;
  flex-direction: column;
  align-content: center;
  flex-wrap: nowrap;
  justify-content: center;
  /* margin-top: 50px; */
  gap: 20px;
  align-items: center;
}

.bg-info-custom {
  opacity: 1;
  background-color: #266d7d75;
  color: white;
}

/* Portfolio Layout Radio Tabs (Custom Tab Style) */
.tabs {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  align-content: space-around;
  justify-content: center;
}

.tab-group input {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
}

.tab-group label {
  display: flex;
  align-items: center;
  justify-content: center;
  /* max-width: 10em; */
  /* height: 48px; */
  line-height: 1.6;
  border: 1px solid #ffffff;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
  position: relative;
  background-color: transparent;
  transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
  padding: 8px;
  color: #1a2936;
  z-index: 1;
  box-shadow: 0 2px 16px 0 rgba(32, 48, 85, 0.07);
}

.tab-group label::after {
  content: "";
  position: absolute;
  bottom: -32px;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #0a8bffad;
  transform: translateX(-50%);
  opacity: 0;
  scale: 0;
  z-index: -1;
  transition: all 0.48s 0.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.tab-group label::before {
  content: "";
  position: absolute;
  top: -24px;
  left: 50%;
  width: 10em;
  max-width: 100%;
  height: 38px;
  border-radius: 8px;
  background-color: #000000ad;
  transform: translate(-50%, -50%);
  z-index: -1;
  opacity: 0;
  scale: 0;
  transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.tab-group label:hover {
  border-color: #0a8bffad;
  color: #0a8bffad;
}

.tab-group input:checked+label {
  border-color: transparent;
  color: #fff;
  scale: 1.1;
}

.tab-group input:checked+label::after {
  bottom: -16px;
  opacity: 1;
  scale: 1;
  box-shadow: 0 2px 16px 0 rgba(32, 48, 85, 0.07);
}

.tab-group input:checked+label::before {
  opacity: 1;
  scale: 1;
  top: 50%;
  box-shadow: 0 2px 16px 0 rgba(32, 48, 85, 0.07);
}

.layout-changer-title {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: space-around;
  justify-content: center;
  align-items: center;
}

.layout-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.333em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.profile-card .portfolio-stats {
  font-size: 14px;
  opacity: 0.95;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-direction: row;
  align-items: baseline;
}

.profile-card .portfolio-tip {
  background: #f8fbff;
  color: #869ab8;
  border-radius: 8px;
  font-size: 13px;
  margin-bottom: 0.75rem;
  margin-top: 0.5rem;
  padding: 7px 14px;
  display: flex;
  align-items: center;
}

.profile-card .portfolio-last-updated,
.profile-card .portfolio-current-layout {
  font-size: 12px;
  color: #8fa0b8;
  margin-bottom: 0.4rem;
}

.showcase-banner {
  min-height: 56px;
  background: linear-gradient(90deg, #e0ecfc 0%, #f8fbff 100%);
  border-radius: 10px;
  margin-bottom: 14px;
}

.portfolio-pinned {
  background: #fffce4;
  border-radius: 7px;
  padding: 7px 12px;
  font-size: 14px;
  box-shadow: 0 2px 10px 0 rgba(235, 205, 60, .03);
}

.input-group input,
.input-group .form-control {
  box-shadow: none !important;
}

.portfolio-share input {
  cursor: pointer;
}

.portfolio-share button {
  transition: background 0.2s;
}

.portfolio-share button:hover {
  background: #0a8bff;
  color: #fff;
}

.search-results-list {
  background: #f8fbff;
  border-radius: 8px;
  box-shadow: 0 4px 24px 0 rgba(25, 30, 70, 0.04);
  max-height: 250px;
  overflow-y: auto;
  margin-top: -8px;
  position: absolute;
  width: 100%;
  z-index: 10;
}

.search-result-item {
  padding: 7px 12px;
  cursor: pointer;
  border-bottom: 1px solid #e6eef7;
  font-size: 15px;
  transition: background 0.14s;
}

.search-result-item:last-child {
  border-bottom: none;
}

.search-result-item:hover {
  background: #e6eef7;
}

.search-no-result {
  padding: 9px 11px;
  color: #bbc7d6;
}

.field-label {
  font-weight: 700;
  color: #578af9;
  margin-right: 5px;
}

.match-text mark {
  background: #f3e77c;
  color: #262a46;
  padding: 0 2px;
  border-radius: 2px;
}

.client-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 2000;
  background: rgba(38, 56, 78, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-modal-content {
  width: 98vw;
  max-width: 800px;
  max-height: 90vh;
  overflow: auto;
  border-radius: 20px;
  background: #fff;
  position: relative;
  box-shadow: 0 2px 38px 0 rgba(17, 23, 39, 0.18);
  display: flex;
  flex-direction: column;
  padding: 55px 25px 0 25px
}

.btn-close-modal {
  background: none;
  border: none;
  font-size: 26px;
  color: #556;
}

.portfolio-share {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  align-content: stretch;
}

input#shareShowcaseInput {
  max-width: 200px;
}

.profile-card .portfolio-last-updated,
.profile-card .portfolio-current-layout {
  font-size: 13px;
  color: #8fa0b8;
  margin-bottom: 0.4rem;
}

.portfolio-share-bottom {
  margin-top: 4em;
}

.add-custom-service-form {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: space-evenly;
}

.add-custom-service-form input[name="custom_title"],
.add-custom-service-form textarea[name="custom_desc"] {
  height: 48px;
  padding: 8px 14px;
  border-radius: 9px;
  border: 1.3px solid #e5eaf6;
  background: #f7fafc;
  font-size: 1.04rem;
  resize: none;
  transition: border 0.14s;
  outline: none;
}

.add-custom-service-form input[name="custom_title"] {
  min-width: 180px;
  width: 630px;
  max-width: 100%;
  height: 38px;
}

.add-custom-service-form textarea[name="custom_desc"] {
  width: 250px;
  min-width: 140px;
  max-width: 350px;
  font-family: inherit;
  height: 38px;
}

.add-custom-service-form textarea:focus,
.add-custom-service-form input:focus {
  border-color: #24be81;
}

.card-body.profile-comp-h {
  max-height: 100vh;
  overflow: hidden;
  scroll-behavior: smooth;
}

.task-list {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: flex-start;
}

.delete-custom-service:hover svg path {
  fill: #d10d0d;
}

#toast {
  visibility: visible;
  min-width: 230px;
  max-width: 380px;
  margin-left: -125px;
  background-color: #28a745;
  color: #fff;
  text-align: center;
  border-radius: 7px;
  padding: 13px 18px;
  position: fixed;
  z-index: 9999;
  right: 24px;
  bottom: 26px;
  font-size: 1.04em;
  opacity: 0;
  transition: opacity 0.28s;
  box-shadow: 0 2px 10px 0 rgba(24, 32, 56, 0.08);
  pointer-events: none;
}

#toast.show {
  opacity: 1;
  pointer-events: all;
}

.services-card-system .services-item {
  height: 100%;
}

.slot-3 .card-body {
  height: 370px;
}


.profile3d-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  justify-content: center;
}

.profile3d-toggle-label {
  color: #7d8fb3;
  font-weight: 500;
  cursor: pointer;
  padding: 3px 10px;
  border-radius: 6px;
  transition: background .13s, color .13s;
}

.profile3d-toggle-label.active {
  background: #e6f0fd;
  color: #2541b2;
}

.switch {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 23px;
}

.switch input {
  display: none;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #d3e0f3;
  transition: .3s;
  border-radius: 16px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 2.5px;
  background-color: #fff;
  transition: .3s;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(30, 40, 60, 0.07);
}

input:checked+.slider {
  background-color: #2541b2;
}

input:checked+.slider:before {
  transform: translateX(22px);
}

.profile3d-img-wrap {
  width: 112px;
  min-width: 112px;
  margin-bottom: 0;
  display: flex;
  justify-content: flex-start;
}

.profile3d-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 10px;
}

.profile3d-title {
  font-size: 1.24rem;
  font-weight: 600;
  margin-bottom: 3px;
  color: #18305a;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
  width: 100%;
}

.profile3d-job {
  color: #168aad;
  font-size: 1.02rem;
  margin-bottom: 7px;
  font-weight: 500;
  text-align: left;
}

.projects-main {
  height: 773px;
}

.card-body.body-overview {
  height: 492px;
}

/* Pulsing Status Dots */
.status-dot-pulse {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  position: relative;
  margin-right: 6px;
}

.status-dot-pulse.green {
  background-color: #10b981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulse-green 2s infinite;
}

.status-dot-pulse.gray {
  background-color: #9ca3af;
  box-shadow: 0 0 0 0 rgba(156, 163, 175, 0.7);
  animation: pulse-gray 2s infinite;
}

@keyframes pulse-green {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

@keyframes pulse-gray {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(156, 163, 175, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(156, 163, 175, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(156, 163, 175, 0); }
}

.profile3d-fields {
  font-size: 15px;
  color: #7d8fb3;
  width: 100%;
  margin-bottom: 12px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.profile3d-fields span {
  font-weight: 500;
  color: #4e6da7;
}

.profile3d-tag {
  display: inline-block;
  background: #e6f0fd;
  color: #168aad;
  border-radius: 5px;
  padding: 2px 10px;
  font-size: 12px;
  margin-left: 6px;
  font-weight: 600;
}

.profile3d-tag-blue {
  background: #f6f9fd;
  color: #666666;
  text-align: center;
}

.profile3d-socials {
  display: flex;
  gap: 14px;
  margin-top: 7px;
  font-size: 22px;
}

.profile3d-socials a {
  color: #168aad;
  transition: color 0.15s;
}

.profile3d-socials a:hover {
  color: #2541b2;
}

.profile3d-slots {
  width: 100%;
  margin-top: 7px;
  margin-bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  align-content: stretch;
  flex-wrap: wrap;
  flex-direction: row;
}

.profile3d-slot-row {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  margin-bottom: 2px;
}

.slot-label {
  color: #8da1b9;
  min-width: 57px;
  display: inline-block;
  font-weight: 500;
  text-align: center;

}

.profile3d-slot-row.quickstat-box {
  width: 137px;
  height: 137px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}

/* Quick Stats / Insights */
.profile3d-quickstats {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-bottom: 3px;
  justify-content: space-between;
  align-items: stretch;
}

.quickstat-box {
  background: #f6f9fd;
  border-radius: 12px;
  width: 100px;
  height: 100px;
  padding: 8px 11px 7px 11px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 15px;
  box-shadow: 0 1px 7px 0 rgba(30, 40, 60, .06);
  justify-content: space-between;
  align-content: center;
  text-align: center;
}

.quickstat-box i {
  font-size: 18px;
  color: #168aad;
  margin-bottom: 4px;
}

.quickstat-label {
  font-size: 12px;
  color: #818599;
}

.qr-btn {
  background: #f6f9fd;
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 5px 12px;
  font-size: 14px;
  margin-top: 2px;
  cursor: pointer;
}

.qr-btn:hover {
  background: #ffffffff;
}

.quickstat-qr {
  min-width: 48px;
}

.qrmodal {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.32);
  z-index: 1001;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(3px);
}

div#qrCode {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: stretch;
  align-content: stretch;
  flex-wrap: nowrap;
}

.profile3d-plugin-status {
  background: #f5f7fa;
  border-radius: 7px;
  padding: 7px 15px;
  color: #168aad;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 7px;
  justify-content: flex-start;
  font-weight: 500;
  margin-top: 25px;
}

.profile3d-gigs-btn {
  background: #2541b2;
  color: #fff;
  font-size: 15px;
  border-radius: 7px;
  padding: 7px 22px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: background .13s;
}

.profile3d-gigs-btn:hover {
  background: #168aad;
}

.profile-link-bar.profile3d-linkbar {
  width: 100% !important;
  border-top: 1px solid #f0f1f6;
  background: #f8fbff;
  border-radius: 0 0 13px 13px;
  padding: 10px 17px 15px 17px;
  margin: -7px -3px 0px 0px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  justify-content: center;
  flex-direction: row;
  align-content: center;
}

.profile-link-bar input[type="text"] {
  background: #eef4fa;
  border: none;
  color: #168aad;
  font-size: 12px;
  border-radius: 4px;
  padding: 3px 7px;
  flex: 1 1 0;
  min-width: 0;
}

.profile-link-bar button {
  border: none;
  background: #d7e5f9;
  color: #2151a1;
  font-size: 13px;
  border-radius: 5px;
  padding: 2px 13px;
  font-weight: 600;
  transition: background .14s;
  cursor: pointer;
}

.profile-link-bar button:hover {
  background: #bad2e7;
}


.profile-card {
  min-height: 600px;
}

.avatar-img-rect {
  width: 100%;
  max-width: 430px;
  aspect-ratio: 4/3;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
  border: 3px solid #f4f8ff;
  background: #f4f8ff;
  box-shadow: 0 2px 16px 0 rgba(10, 60, 255, 0.04);
}

.profile-link-bar {
  border-top: 1px solid #f0f1f6;
  background: #f8fbff;
  border-radius: 0 0 18px 18px;
  margin: 0 -16px -9px -15px;
  padding: 14px 19px 12px 18px;
  position: relative;
  bottom: 0;
  z-index: 3;
}

.profile-link-bar input.form-control {
  background: #eef4fa;
}

.social-media-icon .list-inline-item a {
  color: #468bfd;
  transition: color 0.15s;
}

.social-media-icon .list-inline-item a:hover {
  color: #184e9d;
}


.education-item {
  padding-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
  width: 450px;
  height: 290px;
}

.education-item:hover {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s, box-shadow 0.1s;
  border: none;
}

.education-title {
  font-weight: 600;
  font-size: 1rem;
}

.education-location {
  color: #555;
  /* margin-top: 4px; */
}

.education-dates {
  font-size: 0.9rem;
  color: #888;
  /* margin-top: 4px; */
}

.education-description {
  margin-top: 6px;
  font-size: 0.95rem;
  color: #333;
  line-height: 1.4;
}

.experience-track {
  display: flex;
  gap: 26px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 18px 1px 19px;
  scrollbar-width: none;
}

.experience-card {
  background: linear-gradient(135deg, #f3f6fb 80%, #e7eefe 100%);
  border: 1.5px solid #e1e7ee;
  border-radius: 18px;
  padding: 12px 14px 12px 14px;
  min-width: 315px;
  max-width: 98vw;
  height: 280px;
  scroll-snap-align: start;
  box-shadow: 0 2px 18px 0 rgba(60, 110, 170, 0.08);
  position: relative;
  transition: box-shadow 0.21s, transform 0.21s;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.experience-card:hover {
  box-shadow: 0 6px 28px 0 rgba(70, 120, 180, 0.14);
  transform: translateY(-3px) scale(1.03);
  border-color: #4296FF;
}

.experience-card h4 {
  font-size: 1.12rem;
  font-weight: 700;
  color: #184c7b;
  margin-bottom: 4px;
  letter-spacing: 0.01em;
}

.experience-card small {
  display: block;
  color: #6080a5;
  font-size: 0.96rem;
  margin-bottom: 9px;
  line-height: 1.5;
}

.experience-card .company-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4296FF;
  margin: 0 8px 0 3px;
  vertical-align: middle;
}

.experience-card ul {
  padding-left: 19px;
  margin: 0;
  list-style: disc inside;
}

.experience-card li {
  font-size: 0.89rem;
  color: #38516a;
  margin-bottom: 5px;
  line-height: 1.55;
  position: relative;
}

.empty-experience-msg {
  font-size: 1rem;
  color: #6080a5;
  padding: 26px 0 12px 0;
  text-align: center;
  font-weight: 500;
  background: #f8fbfe;
  border-radius: 13px;
  margin: 0 6px;
}


.modal-overlay {
  position: fixed;
  z-index: 3000;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: #fff;
  border-radius: 14px;
  max-width: 520px;
  width: 95vw;
  padding: 2rem;
  position: relative;
  box-shadow: 0 12px 48px 0 rgba(0, 0, 0, 0.17);
}

.close-btn {
  position: absolute;
  right: 20px;
  top: 18px;
  font-size: 2rem;
  background: none;
  border: none;
  color: #222;
  cursor: pointer;
}

.spec-list-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-height: 320px;
  overflow-y: auto;
}

.spec-card {
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  background: #fafbfc;
  padding: 1rem;
  cursor: pointer;
  transition: border 0.2s, box-shadow 0.2s;
  position: relative;
  min-height: 80px;
  display: flex;
  flex-direction: column;
}

.spec-card.selected {
  border: 2px solid #4296FF;
  background: #f0f7ff;
  box-shadow: 0 0 0 2px #4296FF33;
}

.spec-card .spec-select-check {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 22px;
  height: 22px;
  background: #4296FF;
  border-radius: 50%;
  display: none;
}

.spec-card.selected .spec-select-check {
  display: block;
  background: url('/assets/img/check.svg') no-repeat center center #4296FF;
  background-size: 15px 15px;
}

.spec-desc {
  font-size: 0.9rem;
  color: #555;
  margin-top: 4px;
}

#saveSpecBtn:disabled {
  opacity: 0.5;
  pointer-events: none;
}

.specialization-section {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  /* gap: 1.5rem; */
  /* margin-bottom: 2rem; */
  flex-direction: column;
}

.specialization-title-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.specialization-main-title {
  font-size: 2rem;
  font-weight: 600;
  color: #222;
  margin-right: 0.5rem;
}

.specialization-name {
  font-size: 2rem;
  font-weight: 700;
  color: #152C70;
  display: inline-block;
  margin-right: 0.2rem;
  transition: background 0.15s;
}

.edit-spec-btn {
  background: none;
  border: none;
  padding: 0.3em 0.4em;
  border-radius: 6px;
  margin-left: 0.25em;
  cursor: pointer;
  transition: background 0.15s;
  line-height: 1;
  display: flex;
  align-items: center;
}

.edit-spec-btn svg {
  color: #377dff;
  width: 1.25em;
  height: 1.25em;
  transition: color 0.2s;
}

.edit-spec-btn:hover {
  background: #f3f7fe;
}

.edit-spec-btn:hover svg {
  color: #152C70;
}

.specialization-description {
  color: #475467;
  font-size: 1.09rem;
  margin-top: 0.18em;
  margin-left: 0.04em;
  letter-spacing: 0.02em;
}

.specialization-availability {
  display: flex;
  align-items: center;
  gap: 0.35em;
  font-weight: 600;
  font-size: 1.11rem;
  color: #858fa3;
}

.specialization-availability .status-dot {
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  border-radius: 50%;
  background: #d2d9e8;
  border: 2px solid #c5cae9;
  position: relative;
}

.specialization-availability.available .status-dot {
  background: #53e176;
  border: 2px solid #3ecf67;
}

.specialization-availability.unavailable .status-dot {
  background: #f0adad;
  border: 2px solid #ef5050;
}

.specialization-availability .status-dot.loader:after {
  content: '';
  display: block;
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  border-radius: 50%;
  border: 2px solid #b4bcd0;
  border-top: 2px solid #b4bcd0;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.github-repos-hscroll {
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  overflow-y: hidden;
  gap: 22px;
  padding: 12px 0 16px 2px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  white-space: nowrap;
}

.github-repo-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 0.75rem;
  background: #fff;
  width: 350px;
  min-width: 280px;
  max-width: 380px;
  height: 260PX;
  box-shadow: 0 3px 8px -1px rgba(32, 44, 84, .07), 0 1.5px 4px -1px rgba(32, 44, 84, .11);
  overflow: hidden;
  scroll-snap-align: start;
  flex-shrink: 0;
  border: 1px solid #eaeef6;
}

.github-repo-info {
  padding: 18px 20px 8px 20px;
}

.github-repo-title {
  font-weight: 600;
  font-size: 1.09rem;
  color: #19409e;
  display: flex;
  align-items: center;
  gap: 8px;
}

.github-repo-link {
  color: #2b436a;
  text-decoration: none;
  transition: color .18s;
}

.github-repo-link:hover {
  color: #2171c6;
}

.github-repo-lang {
  background: #edf7ff;
  color: #2563eb;
  font-size: 0.90em;
  border-radius: 8px;
  padding: 2.5px 8px;
  margin-left: 3px;
}

.github-repo-desc {
  color: #40496a;
  margin-top: 5px;
  font-size: 0.99rem;
  min-height: 32px;
}

.github-repo-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #eaeef6;
  background: #f6faff;
  padding: 10px 20px;
  min-height: 38px;
}

.github-repo-stars {
  color: #f9be23;
  font-weight: 600;
  font-size: 1em;
  letter-spacing: 0.01em;
}

.github-repo-btn {
  background: #23272f;
  color: #fff !important;
  border: none;
  border-radius: 6px;
  padding: 7px 16px;
  font-size: .93em;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.17s;
  text-align: center;
  display: inline-block;
  cursor: pointer;
}

.github-repo-btn:hover {
  background: #2563eb;
  color: #fff;
}

.github-repos-empty {
  color: #aaa;
  text-align: center;
  padding: 32px 0;
  font-size: 1.07em;
}

.github-repo-desc {
  color: #40496a;
  margin-top: 5px;
  font-size: 0.99rem;
  min-height: 32px;
  white-space: normal !important;
  /* <-- This fixes it! */
  overflow-wrap: break-word;
  word-break: break-word;
}

.logo-empty {
  font-size: 1rem;
  color: #6b7280;
  padding: 20px;
  text-align: center;
  background: #f4f7fb;
  border-radius: 8px;
  margin-bottom: 18px;
}

.logo-row {
  background: #f9fafd;
  border-radius: 12px;
  border: 1px solid #e6ebf5;
  padding: 19px 20px 12px 20px;
  margin-bottom: 17px;
  position: relative;
  box-shadow: 0 1px 10px 0 rgba(34, 42, 65, 0.06);
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: flex-start;
  transition: opacity .22s;
}

.logo-row.deleted {
  opacity: .34;
  pointer-events: none;
}

.del-btn,
.undo-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background .13s;
}

.del-btn:hover {
  background: #ee626224;
}

.undo-btn {
  right: 52px;
}

.undo-btn:hover {
  background: #50bc7b26;
}

.logo-img-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 90px;
  max-width: 350px;
}

.logo-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  background: #f2f2f7;
  border-radius: 8px;
  border: 1px solid #e6ebf5;
  box-shadow: 0 0 0 1px #e6ebf5;
  margin-bottom: 3px;
}

.logo-file {
  margin-top: 5px;
}

.logo-fields {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.logo-fields input[type="text"],
.logo-fields input[type="url"] {
  width: 100%;
  padding: 7px 11px;
  font-size: 15px;
  border-radius: 7px;
  border: 1px solid #d4dbe8;
  background: #fff;
}


.logos-flex.mb-3 {
  display: flex;
  justify-content: space-between;
  align-content: center;
  flex-wrap: nowrap;
  flex-direction: row;
  align-items: center;
}


.about-section-main {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 0 0 4px 0;
}

.about-section-toprow {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2px;
}

.about-section-headline {
  font-size: 1.18em;
  font-weight: 700;
  color: #294870;
  margin-bottom: 1px;
}

.about-section-editbtn {
  background: #f6f8ff;
  color: #357cf5;
  border: 1.3px solid #d7e2fb;
  border-radius: 9px;
  padding: 7px 18px;
  font-weight: 500;
  cursor: pointer;
  margin-top: 0;
  align-self: flex-start;
  transition: background 0.14s;
}

.about-section-editbtn:hover {
  background: #eaf1ff;
}

.about-section-meta {
  display: flex;
  gap: 14px;
  color: #7e8fa7;
  font-size: 1em;
}

.about-section-metaitem:before {
  content: '• ';
  color: #b3bcd3;
  margin-right: 2px;
}

.about-section-title {
  font-size: 1.07em;
  color: #3260ab;
  margin-top: 2px;
}

.about-section-interests {
  margin: 10px 0 2px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.about-section-interest {
  background: #eaf1ff;
  color: #357cf5;
  border-radius: 12px;
  padding: 3px 14px;
  font-size: 0.97em;
  font-weight: 500;
  display: inline-block;
}

.about-section-widwid {
  margin-top: 7px;
  margin-bottom: 7px;
}

.about-section-widwid-title {
  font-size: 1.08em;
  font-weight: 600;
  color: #3d4791;
  margin-bottom: 2px;
}

.about-section-widwid-desc {
  color: #365;
  font-size: 1em;
  margin-bottom: 2px;
  white-space: pre-line;
}

.about-section-bio {
  font-size: 1.06em;
  color: #364660;
  line-height: 1.56;
  white-space: pre-line;
  margin-left: 2px;
}

.about-section-photos-row {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-bottom: 8px;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-wrap: nowrap;
  overflow: hidden;
  /* scroll-initial-target: nearest; */
  /* scroll-behavior: smooth; */
}

.about-section-multi-photo {
  width: auto;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  background: #f4f6fb;
  border: 2px solid #e5e7ee;
  box-shadow: 0 1px 5px #a5b6d026;
}

.about-section-flexgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 34px;
  margin-top: 6px;
}

@media (max-width: 700px) {
  .about-section-flexgrid {
    grid-template-columns: 1fr;
    gap: 22px 0;
  }
}

.about-section-label {
  font-size: 0.97em;
  font-weight: 600;
  color: #5170a8;
  margin-bottom: 3px;
}

.about-section-text {
  font-size: 1em;
  color: #3c5d4c;
  white-space: pre-line;
}

.about-section-video {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.about-section-video iframe {
  width: 100%;
  min-height: 152px;
  border-radius: 10px;
  border: none;
  background: #202c44;
}

/* Modal styles */
.about-modal-overlay {
  position: fixed;
  z-index: 2009;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(40, 56, 82, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-modal-content {
  background: #fff;
  border-radius: 21px;
  box-shadow: 0 5px 36px 0 rgba(60, 90, 140, 0.18);
  width: 100%;
  max-width: 840px;
  min-width: 280px;
  max-height: 94vh;
  overflow-y: auto;
  padding: 32px 30px 18px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.about-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.about-modal-title {
  font-size: 1.21em;
  font-weight: 600;
  color: #28365f;
}

.about-modal-close {
  font-size: 2em;
  color: #8fa3c5;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0 10px;
  line-height: 1;
  border-radius: 9px;
  transition: background 0.15s;
}

.about-modal-close:hover {
  background: #eef4ff;
}

.about-modal-body {
  overflow-y: auto;
  flex: 1;
  padding-right: 2px;
}

.about-form-row {
  margin-bottom: 16px;
}

.about-form-label {
  font-weight: 500;
  color: #466ba5;
  font-size: 1em;
  margin-bottom: 4px;
  display: block;
}

.about-form-input,
.about-modal-body textarea {
  width: 100%;
  padding: 9px 10px;
  border: 1.3px solid #dde8fa;
  border-radius: 8px;
  background: #f8fbff;
  font-size: 1em;
  margin-top: 2px;
  transition: border .2s;
}

.about-form-input:focus,
.about-modal-body textarea:focus {
  border: 1.3px solid #8ab8ff;
  outline: none;
  background: #fcfeff;
}

.about-modal-footer {
  margin-top: 10px;
  display: flex;
  gap: 13px;
  justify-content: flex-end;
  padding-bottom: 4px;
}

.about-save-btn {
  background: #397afe;
  color: #fff;
  font-weight: 600;
  padding: 9px 29px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1em;
  transition: background 0.15s;
}

.about-save-btn:hover {
  background: #2859c7;
}

.about-cancel-btn {
  background: #f5f7fb;
  color: #2d4570;
  border: 1.5px solid #dde8fa;
  border-radius: 8px;
  padding: 9px 19px;
  cursor: pointer;
  font-size: 1em;
  font-weight: 500;
}

.about-edit-photo-preview {
  margin: 7px 0 8px 0;
  max-width: 62px;
  border-radius: 10px;
  border: 1.5px solid #e8e8f6;
  box-shadow: 0 1px 5px #c8d9ee33;
  display: inline-block;
}

.padding-about-section {
  padding: 30px;
}

.modal-close-x {
  position: absolute;
  top: 14px;
  right: 17px;
  font-size: 23px;
  background: none;
  border: none;
  color: #7e7e7e;
  z-index: 1001;
  cursor: pointer;
  line-height: 1;
}


.sticky-footer {
  position: sticky;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1002;
  background: #fff;
  padding: 18px 24px;
  border-top: 1px solid #f3f3f3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom:23px;
}

.slot-card-container-3 {
  height: 303px;
  overflow-y: auto;
  border-radius: 10px;
}


.skills-card-modern {
  box-shadow: 0 2px 10px 0 rgba(42, 77, 135, 0.04);
  padding: 22px 18px 18px 18px;
  margin-bottom: 9px;
}

/* === Masonry Grid for About Page === */
.about-masonry-grid {
  column-count: 3;
  column-gap: 16px;
  margin-top: 24px;
}
.about-masonry-item {
  display: inline-block;
  width: 100%;
  margin-bottom: 16px;
  border-radius: 12px;
  overflow: hidden;
  break-inside: avoid;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08); /* Start with subtle shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about-masonry-item img {
  width: 100%;
  height: auto;
  display: block;
}
.about-masonry-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

@media (max-width: 991px) {
  .about-masonry-grid { column-count: 2; }
}
@media (max-width: 576px) {
  .about-masonry-grid { column-count: 1; }
}

/* === Why I Do What I Do (Feature Box) === */
.widwid-box {
  background: linear-gradient(to right, rgba(99, 102, 241, 0.03), rgba(168, 85, 247, 0.03));
  border: 1px solid rgba(99, 102, 241, 0.1);
  border-radius: 16px;
  padding: 32px;
  margin-top: 40px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}
.widwid-box::before {
  content: '"';
  position: absolute;
  top: -10px;
  right: 20px;
  font-size: 120px;
  color: rgba(99, 102, 241, 0.05);
  font-family: serif;
  line-height: 1;
  pointer-events: none;
}
.widwid-title {
  font-size: 20px;
  font-weight: 700;
  color: #333; /* Darker for better contrast */
  margin-bottom: 12px;
}
.widwid-desc {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

/* === Typography Improvements === */
.about-headline {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.25;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.about-subheadline {
  font-size: 18px;
  color: #666;
  font-weight: 500;
  margin-bottom: 24px;
}
.about-bio-text {
  font-size: 16px;
  line-height: 1.75;
  color: #333;
  margin-bottom: 24px;
}
.about-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 50px;
    background-color: #f3f4f6;
    color: #4b5563;
    font-size: 13px;
    font-weight: 500;
    margin-right: 8px;
    margin-bottom: 8px;
}
.about-badge i {
    margin-right: 6px;
    color: #9ca3af;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 40px;
}
@media (max-width: 768px) {
    .details-grid { grid-template-columns: 1fr; gap: 24px; }
}
.details-item-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #888;
    margin-bottom: 8px;
}
.details-item-value {
    font-size: 15px;
    color: #1a1a1a;
    font-weight: 500;
    line-height: 1.5;
}

.skills-title {
  font-size: 1.3em;
  font-weight: 600;
  color: #15253e;
  margin-bottom: 17px;
  margin-left: 4px;
  letter-spacing: .01em;
}

.skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 16px;
  max-height: 258px;
  overflow-y: auto;
  /* padding-right: 4px; */
  scrollbar-width: none;
}

.skills-list::-webkit-scrollbar {
  width: 6px;
  background: #eaf6fb;
}

.skills-list::-webkit-scrollbar-thumb {
  background: #bdd8ed;
  border-radius: 6px;
}

.skills-list::-webkit-scrollbar-track {
  background: #eaf6fb;
}

.skill-chip {
  background: #f6fbfe;
  border-radius: 18px;
  padding: 11px 16px 9px 16px;
  min-width: 125px;
  max-width: 196px;
  box-shadow: 0 2px 9px 0 rgba(30, 50, 100, 0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow .17s;
  margin-bottom: 2px;
  border: 1px solid #c3e1fa;
}

.skill-chip:hover {
  box-shadow: 0 5px 18px 0 rgba(30, 50, 100, 0.13);
  background: #e3f2fd;
}

.skill-label {
  font-weight: 500;
  font-size: 1em;
  color: #143c63;
  margin-bottom: 3px;
  line-height: 1.15;
  word-break: break-word;
}

.skill-desc {
  font-size: 0.98em;
  color: #3474a2;
  opacity: .85;
  line-height: 1.35;
  margin-bottom: 2px;
  margin-top: 2px;
  font-weight: 400;
  word-break: break-word;
}

.skills-empty {
  color: #a7b5c5;
  font-size: 15px;
  margin-top: 18px;
}

.publications-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.publication-card {
  border-radius: 14px;
  box-shadow: 0 2px 16px 0 rgba(30, 34, 40, 0.06);
  padding: 20px 22px 16px 22px;
  background: #fff;
  display: flex;
  flex-direction: column;
  position: relative;
}

.publication-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 8px;
}

.pub-type-badge {
  border-radius: 7px;
  font-weight: 500;
  font-size: 13px;
  flex-shrink: 0;
  margin-bottom: 0.3em;
  padding: 0px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.publication-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-grow: 1;
}

.publication-title a,
.publication-title {
  font-weight: bold;
  color: #23315a;
  font-size: 18px;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.publication-authors {
  color: #7b889c;
  font-size: 13px;
}

.publication-date {
  color: #b0b9c9;
  font-size: 12px;
}

.video-embed {
  width: 430px;
  max-width: 100vw;
  height: 242px;
  border-radius: 10px;
  background: #1b1b1b;
  display: block;
}

.publication-abstract {
  color: #2d385a;
  font-size: 15px;
}

.publication-tags {
  margin-top: 8px;
}

.pub-tag {
  display: inline-block;
  background: #e6f0fd;
  color: #325fae;
  border-radius: 5px;
  padding: 2px 10px;
  font-size: 12px;
  margin-right: 7px;
  margin-bottom: 3px;
}

.industry-experience-board {
  background: #f7faff;
  border-radius: 18px;
  padding: 22px 14px 12px 14px;
  min-height: 90px;
}

.industry-empty {
  color: #a6afc9;
  font-size: 16px;
  padding: 20px 0 10px 0;
  text-align: center;
}

.industry-card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 6px;
}

@media (max-width: 768px) {
    .projects-main {
        height: 100% !important;
    }
    .link-url-col {
        display: none !important;
    }
    /* Adjust widths when URL is hidden */
    .link-label-col { width: 40% !important; }
    .link-views-col { width: 20% !important; }
    .link-actions-col { width: 40% !important; }
    .link-seen-col { display: none !important; }
}

.industry-feed-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 10px 0 rgba(65, 82, 123, 0.07);
  border: 1.1px solid #e1e6f0;
  padding: 19px 24px 17px 21px;
  min-width: 270px;
  max-width: 420px;
  width: 100%;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: box-shadow .19s, border .18s, background .14s;
  cursor: pointer;
}

.industry-feed-card:hover {
  box-shadow: 0 6px 26px 0 rgba(45, 95, 230, 0.12);
  border: 1.4px solid #bdd6fb;
  background: #fafdff;
}

.industry-card-header {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 8px;
}

.industry-badge {
  display: inline-block;
  padding: 4px 16px;
  font-size: 0.98em;
  font-weight: 600;
  border-radius: 8px;
  color: #fff;
  background: #2278fc;
  box-shadow: 0 1px 5px 0 rgba(39, 120, 252, 0.08);
  letter-spacing: 0.01em;
}

.industry-card-body {
  flex: 1 1 0;
  display: flex;
  align-items: flex-start;
  font-size: 1.08em;
  color: #27336a;
  margin-bottom: 14px;
  min-height: 36px;
}

.industry-card-desc {
  color: #3c466e;
  font-size: 1em;
  line-height: 1.54;
  margin: 0 0 1px 0;
  white-space: pre-line;
  word-break: break-word;
}

.industry-card-meta {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #a3aac1;
  font-size: 0.97em;
  margin-top: 2px;
  margin-bottom: 2px;
}

.industry-card-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.upgrade-card.selected {
  border: 2.5px solid #3758f9;
  box-shadow: 0 4px 18px 0 rgba(60, 110, 255, .10);
}

.upgrade-title {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 8px;
  color: #25324d;
}

.upgrade-price {
  font-size: 1.14rem;
  font-weight: 600;
  color: #3758f9;
  margin-bottom: 7px;
  text-align: center;
}

.upgrade-desc {
  font-size: 1.00rem;
  color: #4753a3;
  margin-bottom: 14px;
  font-weight: 500;
  text-align: center;
  padding-bottom: 20px;
  /* padding-top: 3px; */
}

.upgrade-features {
  font-size: 1.01rem;
  color: #283152;
  margin-bottom: 20px;
  line-height: 1.7;
  padding-left: 46px;
  text-align: left;
}

.upgrade-features li {
  margin-bottom: 4px;
  list-style: disc inside;
}

.upgrade-btn {
  display: inline-block;
  border-radius: 8px;
  background: #3758f9;
  color: #fff;
  font-weight: 600;
  padding: 10px 26px;
  font-size: 1em;
  text-decoration: none !important;
  transition: background .15s, color .14s;
  box-shadow: 0 2px 6px 0 rgba(60, 90, 180, .07);
  margin-top: 10px;
  position: absolute;
  bottom: 40px;
}

.upgrade-btn:hover,
.upgrade-btn:focus {
  background: #2233a7;
  color: #fff;
}

.upgrade-btn[disabled],
.upgrade-btn.disabled {
  background: #e5e6ee;
  color: #a2a7c7;
  cursor: default;
  pointer-events: none;
}

.upgrade-manage-link {
  display: block;
  margin-top: 15px;
  text-align: center;
  color: #3758f9;
  font-weight: 500;
  font-size: .97em;
}




.founders-card {
  background: linear-gradient(92deg, #ffeeb2 0%, #ffe5e0 100%);
  border-radius: 16px;
  box-shadow: 0 2px 14px 0 rgba(255, 170, 60, 0.13);
  padding: 30px 35px 24px 35px;
  margin: 0 0 38px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  border: 2.5px solid #ffb224;
  position: relative;
}

.founders-info {
  flex: 1 1 330px;
}

.founders-title {
  font-size: 1.24rem;
  font-weight: 700;
  color: #b18407;
  margin-bottom: 10px;
  letter-spacing: 0.03em;
}

.founders-desc {
  font-size: 1.02em;
  color: #7e5605;
  margin-bottom: 10px;
  font-weight: 500;
}

.founders-count {
  font-size: 1.10em;
  font-weight: 600;
  color: #9b5e02;
  background: #ffedc1;
  border-radius: 12px;
  padding: 6px 20px;
  margin-bottom: 6px;
  display: inline-block;
  letter-spacing: .05em;
}

.founders-btn {
  background: #ffb224;
  color: #442400;
  border-radius: 10px;
  font-size: 1.15em;
  font-weight: 700;
  padding: 16px 34px;
  box-shadow: 0 3px 18px 0 rgba(255, 192, 84, 0.11);
  border: none;
  display: inline-block;
  text-decoration: none !important;
  transition: background .16s, color .14s;
  margin-left: 30px;
  margin-top: 0;
  margin-bottom: 0;
}

.founders-btn:hover {
  background: #ffd977;
  color: #7c4700;
}

.upgrade-cards-row {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 0 35px 0;
  align-content: center;
  align-items: center;
}

.upgrade-card {
  /* background: #fff; */
  border-radius: 22px;
  box-shadow: 0 2px 12px 0 rgb(30 38 90 / 4%);
  max-width: 400px;
  width: 100%;
  flex: 1 1 320px;
  padding: 34px 10px 30px 10px;
  border: 1px solid #e3e3e3;
  transition: box-shadow .16s, border .15s;
  position: relative;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  /* height: 100%; */
  /* max-height: 500vh; */
  height: 630px;
}

.upgrade-card-pro {
  background: linear-gradient(137deg, #97f8fb47 0%, #fff 100%);
  border-radius: 22px;
  /* box-shadow: 0 2px 12px 0 rgba(30, 38, 90, 0.12); */
  max-width: 400px;
  width: 100%;
  flex: 1 1 320px;
  padding: 34px 10px 30px 10px;
  transition: box-shadow .16s, border .15s;
  position: relative;
  /* margin-bottom: 10px; */
  display: flex;
  flex-direction: column;
  align-items: center;
  /* height: 100%; */
  /* max-height: 500vh; */
  height: 684px;
  align-content: flex-end;
  justify-content: flex-start;
}

.upgrade-card-creator {
  /* background: #ffffffff; */
  border-radius: 22px;
  box-shadow: 0 2px 12px 0 rgb(30 38 90 / 4%);
  max-width: 400px;
  width: 100%;
  flex: 1 1 320px;
  padding: 34px 10px 30px 10px;
  border: 1px solid #e3e3e3;
  transition: box-shadow .16s, border .15s;
  position: relative;
  margin-bottom: 10px;
  display: flex;
  justify-content: flex-start;
  /* height: 100%; */
  /* max-height: 500vh; */
  height: 630px;
  align-items: center;
  flex-wrap: nowrap;
  align-content: flex-start;
  flex-direction: column;
}

.plan-flex {
  display: flex;
  flex-direction: column;
  align-content: space-around;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  /* gap: 40px; */
  padding-bottom: 25px;
}

.upgrade-buttons {
  position: absolute;
  bottom: 40px;
}

.licenses-hscroll {
  display: flex;
  flex-direction: row;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  gap: 22px;
  padding: 10px 0 18px 3px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  white-space: nowrap;
  scrollbar-width: none;
}

.licenses-hscroll::-webkit-scrollbar {
  height: 8px;
}

.licenses-hscroll::-webkit-scrollbar-thumb {
  background: #c3d7f6;
  border-radius: 8px;
}

.licenses-hscroll::-webkit-scrollbar-track {
  background: #f8fafc;
  border-radius: 9px;
}

.card-licenses {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  background: #fafdfe;
  border-radius: 16px;
  border: 1.5px solid #e4e7f0;
  box-shadow: 0 6px 18px -7px #2563eb18;
  padding: 24px 24px 20px 24px;
  min-width: 330px;
  max-width: 350px;
  height: 260px;
  position: relative;
  scroll-snap-align: start;
  flex-shrink: 0;
  transition: box-shadow 0.18s, border-color 0.14s;
  margin-right: 5px;
}

.card-licenses:hover {
  box-shadow: 0 14px 40px -6pxrgba(179, 203, 255, 0.2);
  border-color: rgb(30, 50, 90);
}

.license-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  font-weight: 700;
  font-size: 1.09em;
  flex-direction: column-reverse;
  flex-wrap: wrap;
  align-content: flex-start;
}

.license-title {
  font-size: 1.07em;
  color: #1e293b;
  font-weight: 700;
  word-break: break-word;
  line-height: 1.2;
}

.license-body {
  font-size: 1.01em;
  color: #374151;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  word-break: break-word;
  align-items: center;
}

.license-number {
  color: #206eab;
  font-size: 0.98em;
  background: #eaf2fb;
  border-radius: 7px;
  padding: 0 7px;
  font-weight: 500;
  margin-left: 2px;
}

.license-validity,
.license-country,
.license-desc {
  font-size: .98em;
  color: #6270a7;
  margin-bottom: 3px;
  word-break: break-word;
}

.license-desc {
  color: #415173;
  font-size: .99em;
  font-weight: 400;
  margin-top: 7px;
  line-height: 1.37;
  white-space: normal !important;
  word-break: break-word !important;
  /* width: 100%; */
  font-size: 15px;
  font-weight: 500;
  /* text-align: left; */
  display: block;
}

.licenses-feed-empty {
  color: #aaa;
  text-align: center;
  padding: 34px 0;
  font-size: 1.07em;
}

.gap-card {
  gap: 1.5em;
}

/* ---------------------------------------------------------------------------------- */



/* min-mobile */
@media (min-width: 768px) {

  .custom-feedback-item {
    flex: 0 0 50%;
    /* On wider screens, reduce card width */
    max-width: 50%;
  }

  .slot-card-container-1 {
    height: 290px;
    overflow-y: auto;
    /* padding-right: 8px; */
    border-radius: 10px;
  }

  .slot-card-container-3 {
    /* height: 100%; */
    overflow-y: auto;
    /* padding-right: 8px; */
  }

  .slot-card-container-1::-webkit-scrollbar {
    display: none;
  }

  .slot-card-container-1::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
  }

  .slot-card-container-1::-webkit-scrollbar-track {
    background: transparent;
  }

  .slot-card-container-2 {
    max-height: 695px;
    overflow-y: auto;
    border-radius: 10px;
  }

  /* Optional scrollbar styling */
  .slot-card-container-2::-webkit-scrollbar {
    display: none;
  }

  .slot-card-container-2::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
  }

  .slot-dash-container-2::-webkit-scrollbar-track {
    background: transparent;
  }

  .slot-dash-container-2 {
    max-height: 848px;
    overflow-y: auto;
    border-radius: 10px;
  }

  /* Optional scrollbar styling */
  .slot-dash-container-2::-webkit-scrollbar {
    display: none;
  }

  .slot-dash-container-2::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
  }

  .slot-dash-container-2::-webkit-scrollbar-track {
    background: transparent;
  }

  .service-col-4 {
    flex: 0 0 auto;
    width: 25%;
  }

  .service-col-5 {
    flex: 0 0 auto;
    width: 20%;
  }

  .service-col-6 {
    flex: 0 0 auto;
    width: 16.6667%;
  }
}


/* max-mobile */
@media (max-width: 769px) {
  .status-pill {
    display: none;
  }

  .gap-card {
    gap: 1.1em;
  }

  .founders-btn {
    background: #ffb224;
    color: #442400;
    border-radius: 10px;
    font-size: 1.15em;
    font-weight: 700;
    padding: 23px 19px;
    box-shadow: 0 3px 18px 0 rgba(255, 192, 84, 0.11);
    border: none;
    display: inline-block;
    text-decoration: none !important;
    transition: background .16s, color .14s;
    /* margin-left: 30px; */
    margin-top: 0;
    margin-bottom: 0;
  }


  .avail-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 16px;
    font-size: 0.95rem;
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-content: center;
    flex-wrap: nowrap;
  }


  .logo-img-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    min-width: 90px;
    max-width: 350px;
    align-content: center;
  }

  .logo-row {
    background: #f9fafd;
    border-radius: 12px;
    border: 1px solid #e6ebf5;
    padding: 19px 20px 12px 20px;
    margin-bottom: 17px;
    position: relative;
    box-shadow: 0 1px 10px 0 rgba(34, 42, 65, 0.06);
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
    transition: opacity .22s;
  }

  .github-repo-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 0.75rem;
    background: #fff;
    /* width: 280px; */
    min-width: 330px;
    max-width: 380px;
    height: 260PX;
    box-shadow: 0 3px 8px -1px rgba(32, 44, 84, .07), 0 1.5px 4px -1px rgba(32, 44, 84, .11);
    overflow: hidden;
    scroll-snap-align: start;
    flex-shrink: 0;
    border: 1px solid #eaeef6;
  }

  .client-feedback .main-common-title {
    /* padding-bottom: 56px; */
    display: flex;
    text-align: center;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
  }

  .logos-flex.mb-3 {
    display: flex;
    flex-direction: column;
  }

  .modal-content {
    background: #fff;
    border-radius: 14px;
    max-width: 520px;
    width: 390px;
    padding: 2rem;
    position: relative;
    box-shadow: 0 12px 48px 0 rgba(0, 0, 0, 0.17);

  }

  .experience-track {
    padding: 0;
  }

  .experience-card {
    min-width: 85vw;
    /* padding: 16px 9vw 14px 7vw; */
  }

  .education-item {
    padding-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 10px;
    transition: transform 0.2s, box-shadow 0.2s;
    width: 334px;
    height: 311px;
  }

  .portfolio-top-info {
    padding: 17px 7vw 11px 4vw;
    gap: 7px;
  }

  .main-title {
    font-size: 1.27rem;
    gap: 5px;
  }

  .main-subtitle {
    font-size: 1rem;
  }

  .profile-top-info {
    flex-direction: column;
    padding: 15px 8px 8px 12px;
    gap: 9px;
  }

  .available-status {
    margin-left: 1px;
    margin-top: 4px;
  }

  .public-faqs-section {
    padding: 14px 2vw 8px 2vw;
  }

  .public-faq-q {
    font-size: 1rem;
    padding: 13px 8px 10px 5px;
  }

  .public-faq-a {
    font-size: .98rem;
    padding: 0 8px 12px 10px;
  }

  .faqs-section {
    padding: 14px 2vw 13px 2vw;
  }

  .faq-title-row {
    font-size: 1.04rem;
  }

  /* .faq-card { padding: 10px 7px 8px 7px; } */
  .faq-add-form {
    flex-direction: column;
    gap: 8px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: stretch;
    /* width: 302px; */
    background: none;
    width: auto;
  }

  .faq-inline-edit {
    flex-direction: column;
    gap: 7px;
  }

  .feedback-grid,
  .all-reviews-grid {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .feedback-card {
    padding: 16px 9px 13px 10px;
  }

  .main-common-title {
    font-size: 1.3rem;
  }

  .reviews-modal-header {
    font-size: 1.03rem;
  }

  .content-box-card .main-common-title {
    font-size: 24px;
    line-height: 1.3em;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
  }

  h5.card-title {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }


  .delete-btn,
  .undo-btn,
  .add-btn,
  .back-btn,
  .remove-btn,
  .save-btn,
  .save-btn-2,
  .save-btn-3,
  .add-btn-3 {
    border: none;
    border-radius: 6px;
    padding: 0px 16px;
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
    transition: background .15s;
  }

  .profile3d-title {
    font-size: 1.24rem;
    font-weight: 600;
    margin-bottom: 3px;
    color: #18305a;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-content: center;
    flex-wrap: nowrap;
    flex-direction: row;
    width: 100%;
    align-items: center;
  }

  .slot-3-dash .card-body {
    height: 100% !important;
  }

  .top-header-services {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    align-content: center;
    margin-bottom: 0;
    align-items: center;
    flex-direction: column;
  }

  .content-box-card .top-info {
    margin: 0;
  }

  .specialization-section {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* gap: 1.5rem; */
    /* margin-bottom: 2rem; */
    flex-direction: row;
    align-content: center;
    flex-wrap: wrap;
    text-align: center;
  }

  .edit-btn-3.ms-3 {
    font-size: 23px;
    margin: 20px;
  }

  .profile3d-slot-row.quickstat-box {
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
  }

  .reviews-modal-content {
    padding: 0 6vw 24px 6vw;
  }

  .reviews-modal-header {
    padding-left: 1vw;
    padding-right: 1vw;
  }

  .portfolio-item {
    min-height: 250px;
    padding: 13px 6vw 11px 6vw;
  }

  .portfolio-item .img-fluid,
  .portfolio-item .ratio {
    height: 150px;
    min-height: 100px;
  }

  .services-list {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .service-card {
    padding: 15px 6px 13px 6px;
  }

  .add-custom-service-form {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .add-custom-service-form>* {
    width: 100% !important;
    max-width: 100% !important;
    height: 44px;
  }

  .slot-card-container-1,
  .slot-card-container-3 {
    max-height: none;
    overflow: visible;
  }

  .slot-card-container-2 {
    max-height: none;
    overflow: visible;
  }

  .section-block .info-row {
    display: block;
  }

  .card-body .p-4-call {
    padding: 24px 24px 24px;
  }

  .card-body .p-5-call {
    padding: 24px 24px 24px;
  }

  .service-col-4 {
    flex: 0 0 auto;
    width: 50%;
  }

  .service-col-5 {
    flex: 0 0 auto;
    width: 50%;
  }

  .service-col-6 {
    flex: 0 0 auto;
    width: 50%;
  }

}



/* max-tablet */
@media (max-width: 1199.98px) {

  .license-number {
    color: #206eab;
    font-size: 0.9em;
    background: #eaf2fb;
    border-radius: 7px;
    padding: 0 7px;
    font-weight: 500;
    margin-left: 2px;
    margin-bottom: 0.4rem;
  }

  .license-title {
    font-size: 0.9em;
    color: #1e293b;
    font-weight: 700;
    word-break: break-word;
    line-height: 1.2;
  }

  .license-desc {
    color: #415173;
    font-size: .99em;
    font-weight: 400;
    /* margin-top: 7px; */
    line-height: 1.37;
    white-space: normal !important;
    word-break: break-word !important;
    /* width: 100%; */
    font-size: 15px;
    font-weight: 500;
    /* text-align: left; */
    display: block;
  }

  .card-licenses {
    min-width: 85vw;
    max-width: 85vw;
    padding: 14px 6vw 17px 6vw;
  }

  .upgrade-buttons {
    position: absolute;
    bottom: 21px;
    align-items: center;
    display: flex;
  }

  .upgrade-buttons {
    position: absolute;
    bottom: 30px;
  }

  .content-box-card .card-body {
    padding: 25px;
  }




  .upgrade-card {
    padding: 34px 18px 30px
  }

  .founders-btn {
    margin-left: 0;
    margin-top: 0;
    margin-bottom: 0;
    width: 100%;
    text-align: center;
  }

  .tab {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    width: 70px;
    font-size: 1.7rem;
    color: black;
    font-weight: 500;
    border-radius: 99px;
    cursor: pointer;
    transition: color 0.15s ease-in;
    width: 250px;
    height: 100px;
  }

  .radio-container input[type="radio"]:checked+label>.radio-notification {
    background-color: #185ee0;
    color: #fff;
    margin: 0px;
    height: 30px;
    width: 6rem;
  }

  .radio-notification {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 0.8rem;
    position: absolute;
    top: -0.3rem;
    left: auto;
    font-size: 1rem;
    margin-left: 5rem;
    border-radius: 8px;
    margin: 0px;
    background-color: #e6eef9;
    transition: 0.15s ease-in;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    width: 7rem;
    height: 2rem;
  }

  .founders-title {
    font-size: 1.24rem;
    font-weight: 700;
    color: #b18407;
    margin-bottom: 10px;
    letter-spacing: 0;
  }

  .neurons-tooltip-wrapper:hover .neurons-tooltip-bubble {
    opacity: 0;
    pointer-events: none;
  }

  .upgrade-card,
  .upgrade-card-pro,
  .upgrade-card-creator {
    padding: 34px 18px 30px;
    text-align: left;
    height: 100%;
  }

  .upgrade-features {
    text-align: left;
    font-size: 1.01rem;
    color: #283152;
    margin-bottom: 20px;
    line-height: 1.7;
    padding-left: 16px;
    padding-bottom: 20px;
  }

  .footer-area .container {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    flex-direction: column-reverse;
    gap: 14px;
    text-decoration: none;
    align-content: center;
    justify-content: space-evenly;
    /* font-size: 1rem; */
  }

  ul.list-unstyled.settings-menu.create-account-menu {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
    align-content: stretch;
    flex-wrap: wrap;
    gap: 10px;
  }

  .card-title {
    align-items: center;
  }

  .industry-experience-board {
    background: none;
    border-radius: 18px;
    padding: 0;
    min-height: 90px;
  }

  .video-embed {
    width: 97vw;
    min-width: 140px;
    max-width: 73vw;
    height: 26vw;
    min-height: 120px;
  }

  .slot-card-container-3 {
    height: 310px;
  }

  .skills-card-modern {
    max-height: 330px;
    height: 100%;
  }

  .skill-chip {
    background: #f6fbfe;
    border-radius: 18px;
    padding: 11px 16px 9px 16px;
    min-width: 125px;
    max-width: 296px;
    box-shadow: 0 2px 9px 0 rgba(30, 50, 100, 0.08);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: box-shadow .17s;
    margin-bottom: 2px;
    border: 1px solid #c3e1fa;
  }

  .industry-feed-card {
    min-width: 10vw;
    width: 100%;
    padding: 14px 8vw 13px 7vw;
  }

  .industry-card-meta {
    display: flex;
    align-items: center;
    gap: 22px;
    color: #a3aac1;
    font-size: 0.97em;
    margin-top: 2px;
    margin-bottom: 2px;
    justify-content: flex-end;
  }

  .profile3d-quickstats {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-bottom: 3px;
    justify-content: center;
    align-items: center;
    align-content: space-between;
    flex-direction: row;
  }


  .desktop-only {
    display: none !important;
  }

  .menu-container .navbar-info,
  .menu-container .desktop-only {
    display: none !important;
  }

  .header-area .header-right-info .lets-talk-btn {
    margin-left: 0;
    text-align: center;
    display: flex;
    flex-direction: row-reverse;
    align-content: space-between;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    /* margin: 13px 80px; */
    width: 50%;
  }

  .header-area .header-right-info .locked {
    margin-left: 0;
    text-align: center;
    display: flex;
    flex-direction: row-reverse;
    align-content: space-between;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    margin: 13px 80px;
    /* width: 50%; */
  }

  .mobile-sidebar {
    position: fixed;
    top: 0;
    left: -260px;
    width: 240px;
    height: 100vh;
    background-color: #ffffff;
    z-index: 10001;
    padding: 24px 20px;
    transition: left 0.3s ease-in-out;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}

/* min-desktop */
@media (min-width: 900px) {
  .mobile-sidebar {
    display: none !important;
  }
}

/* desktop */
@media (min-width: 1199.99px) {

  /* .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
  max-width: 1520px;
} */
  .bod {
    max-height: 20px;
  }

  .mobile-only {
    display: none;

  }

  .menu-container .mobile-only {
    display: none !important;
  }
}




.edit-container {
  max-width: 800px;
  margin: 0;
  background: #fff;
  padding: 0 24px 0 24px;
  border-radius: 10px;
}

.del-btn-case {
  background: none;
  border: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 101;
  cursor: pointer;
  padding: 0;
}

.tour-modal-content {
  border-radius: 12px;
  max-width: 98vw;
  max-height: 93vh;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 12px 38px rgba(70, 82, 118, 0.22);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tour-modal-img {
  display: block;
  max-width: 98vw;
  max-height: 90vh;
  margin: 0 auto;
  border-radius: 0 0 12px 12px;
}

.tour-modal-close {
  position: absolute;
  top: 0;
  right: 0;
  background: rgba(44, 56, 90, 0.11);
  border: none;
  font-size: 32px;
  color: #6c7ab1;
  cursor: pointer;
  z-index: 2060;
  width: 44px;
  height: 44px;
  border-radius: 0 12px 0 24px;
  transition: background .18s;
}

.tour-modal-close:hover {
  background: rgba(44, 56, 90, 0.23);
  color: #1d2040;
}

@media (max-width: 640px) {
  .tours-gallery {
    grid-template-columns: 1fr;
  }

  .tour-modal-content {
    max-width: 100vw;
    max-height: 99vh;
  }

  .tour-modal-img {
    max-width: 100vw;
    max-height: 93vh;
  }
}

.tour-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30, 34, 44, 0.93);
  z-index: 10010;
  display: none;
  align-items: center;
  justify-content: center;
}

/* ============================================================
   Accessibility: Contrast fixes across themes (global overrides)
   - Ensures minimum readable contrast for text on card surfaces
   - Light themes: darker text colors; Dark themes: lighter text
   - Keeps existing palette but biases toward WCAG-friendly tones
===============================================================*/

/* Helper sets */
/* Light theme context (everything that is not a dark theme) */
body:not(.theme-amoled):not(.theme-obsidian):not(.theme-neon):not(.theme-cyber):not(.theme-dark) {
  --tj-text: #111827;
  /* slate-900 */
  --tj-muted: #4b5563;
  /* slate-600 */
  --tj-link: #252525;
  /* Google blue */
  --tj-surface: #ffffff;
  /* ensure white surface when needed */
}

/* Dark theme context */
body.theme-amoled,
body.theme-obsidian,
body.theme-neon,
body.theme-cyber,
body.theme-dark {
  --tj-text: #e5e7eb;
  /* zinc-200 */
  --tj-muted: #a6b2cc;
  /* existing muted in dark */
  --tj-link: #8ab4f8;
  /* light blue */
  --tj-surface: #0f172a;
  /* slate-900 */
}

/* Apply text colors to common surfaces */
.card,
.card .card-body,
.modal-content,
.navbar,
.mobile-sidebar,
.edit-container,
.services-card,
.experience-card,
.profile-card {
  color: var(--tj-text) !important;
}

.text-muted,
.muted,
.small.text-muted,
.form-text {
  color: var(--tj-muted) !important;
}

a:not(.btn) {
  color: var(--tj-link);
}

a:not(.btn):hover {
  color: color-mix(in srgb, var(--tj-link) 85%, black 15%);
}

/* Active nav item backgrounds with readable foreground */
/* Light */
body:not(.theme-amoled):not(.theme-obsidian):not(.theme-neon):not(.theme-cyber):not(.theme-dark) .header-area .navbar-info .nav-link.active {
  background-color: #eef2f7 !important;
  /* slate-100 */
  color: #0f172a !important;
  /* slate-900 */
}

/* Dark */
body.theme-amoled .header-area .navbar-info .nav-link.active,
body.theme-obsidian .header-area .navbar-info .nav-link.active,
body.theme-neon .header-area .navbar-info .nav-link.active,
body.theme-cyber .header-area .navbar-info .nav-link.active,
body.theme-dark .header-area .navbar-info .nav-link.active {
  background-color: rgba(255, 255, 255, 0.08) !important;
  color: #f3f4f6 !important;
  /* gray-100 */
}

/* Ensure badge/label text remains legible */
.badge,
.label,
.tag {
  color: var(--tj-text) !important;
}

body.theme-amoled .badge,
body.theme-obsidian .badge,
body.theme-neon .badge,
body.theme-cyber .badge,
body.theme-dark .badge {
  color: #f3f4f6 !important;
}

/* Inputs on dark themes: improve placeholder and text */
body.theme-amoled input,
body.theme-obsidian input,
body.theme-neon input,
body.theme-cyber input,
body.theme-dark input,
body.theme-amoled select,
body.theme-obsidian select,
body.theme-neon select,
body.theme-cyber select,
body.theme-dark select,
body.theme-amoled textarea,
body.theme-obsidian textarea,
body.theme-neon textarea,
body.theme-cyber textarea,
body.theme-dark textarea {
  color: #e5e7eb;
}

body.theme-amoled ::placeholder,
body.theme-obsidian ::placeholder,
body.theme-neon ::placeholder,
body.theme-cyber ::placeholder,
body.theme-dark ::placeholder {
  color: #9ca3af;
  /* gray-400 */
}

/* Cards that inherit pastel backgrounds: enforce readable text */
.theme-transparent .card,
.theme-solid .card,
.theme-flat .card,
.theme-blue .card,
.theme-mint .card,
.theme-ocean .card,
.theme-sunset .card,
.theme-lavender .card,
.theme-sand .card {
  color: var(--tj-text) !important;
}

/* Dark palettes */
.theme-midnight .card,
.theme-obsidian .card,
.theme-neon .card,
.theme-cyber .card,
.theme-amoled .card {
  color: #e5e7eb !important;
}

/* Buttons: ensure contrast on hover for light themes */
body:not(.theme-amoled):not(.theme-obsidian):not(.theme-neon):not(.theme-cyber):not(.theme-dark) .btn-primary,
body:not(.theme-amoled):not(.theme-obsidian):not(.theme-neon):not(.theme-cyber):not(.theme-dark) .lets-talk-btn {
  color: #ffffff !important;
}

body:not(.theme-amoled):not(.theme-obsidian):not(.theme-neon):not(.theme-cyber):not(.theme-dark) .btn-primary:hover,
body:not(.theme-amoled):not(.theme-obsidian):not(.theme-neon):not(.theme-cyber):not(.theme-dark) .lets-talk-btn:hover {
  filter: brightness(0.9);
}

/* Table and subtle texts on dark themes */
body.theme-amoled table,
body.theme-obsidian table,
body.theme-neon table,
body.theme-cyber table,
body.theme-dark table {
  color: #e5e7eb;
}

/* =====================
   Overview Card Heights
   =====================
   Each class below sets a max-height for the card content and enables
   scrolling if content exceeds that height. Adjust the --h-* variables
   here or override them elsewhere to change heights per card.
*/
.card-h-completion {
  max-height: var(--h-completion, 814px);
  overflow: auto;
}

.card-h-analytics {
  max-height: var(--h-analytics, 360px);
  overflow: auto;
}

.card-h-rubiq {
  max-height: var(--h-rubiq, 420px);
  overflow: auto;
}

.card-h-privacy {
  max-height: var(--h-privacy, 360px);
  overflow: auto;
}

.card-h-theme {
  max-height: var(--h-theme, 360px);
  overflow: auto;
}

.card-h-neurons {
  max-height: var(--h-neurons, 360px);
  overflow: auto;
}

.card-h-referrals {
  max-height: var(--h-referrals, 360px);
  overflow: auto;
}

.card-h-completion,
.card-h-analytics,
.card-h-rubiq,
.card-h-privacy,
.card-h-theme,
.card-h-neurons,
.card-h-referrals {
  scrollbar-gutter: stable;
}

/* =====================
   Overview Card Heights
   =====================
   Set height on the CARD itself. The direct .card-body will flex and scroll.
   Adjust the --h-* variables to control per-card height.
*/
.cardH-completion {
  height: var(--h-completion, 360px);
  max-height: var(--h-completion, 360px);
  display: flex;
  flex-direction: column;
}

.cardH-analytics {
  height: var(--h-analytics, 360px);
  max-height: var(--h-analytics, 360px);
  display: flex;
  flex-direction: column;
}

.cardH-rubiq {
  height: var(--h-rubiq, 520px);
  max-height: var(--h-rubiq, 520px);
  display: flex;
  flex-direction: column;
}

.cardH-privacy {
  height: var(--h-privacy, 360px);
  max-height: var(--h-privacy, 360px);
  display: flex;
  flex-direction: column;
}

.cardH-theme {
  height: var(--h-theme, 360px);
  max-height: var(--h-theme, 360px);
  display: flex;
  flex-direction: column;
}

.cardH-neurons {
  height: var(--h-neurons, 360px);
  max-height: var(--h-neurons, 360px);
  display: flex;
  flex-direction: column;
}

.cardH-referrals {
  height: var(--h-referrals, 360px);
  max-height: var(--h-referrals, 360px);
  display: flex;
  flex-direction: column;
}

.cardH-completion>.card-body,
.cardH-analytics>.card-body,
.cardH-privacy>.card-body,
.cardH-theme>.card-body,
.cardH-neurons>.card-body,
.cardH-referrals>.card-body {
  flex: 1 1 auto;
  overflow: auto;
}

/* Completion: header fixed, list scrolls */
.cardH-completion>.card-body {
  overflow: visible;
  display: flex;
  flex-direction: column;
}

.cardH-completion .pc-scroll {
  flex: 1 1 auto;
  overflow: auto;
}

/* Rubiq: chat area scrolls, input row sticks */
.cardH-rubiq>.card-body {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

