@charset "UTF-8";
/* App Font */
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  font-family: "Roboto", sans-serif;
}

/* Fixed Vars */
/* Color Overrides */
:root {
  --bs-primary: #6c5ce7;
  --bs-primary-rgb: 108, 92, 231;
  --bs-secondary: #00cec9;
  --bs-light: #f8f9fa;
  --bs-dark: #2d3436;
  --bs-success: #198754;
  --bs-danger: #dc3545;
  --bs-warning: #ffc107;
  --bs-info: #0dcaf0;
  --gray: #6c757d;
}

html {
  font-size: 0.95rem;
  height: 100% !important;
  scroll-behavior: smooth;
}

/* Body & Typography */
body {
  /*@include rem-fallback( padding-top, 2.9);*/
  line-height: 1.7;
  letter-spacing: 0.2px;
  overflow-x: hidden;
  min-height: 100% !important;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

h1,
h2,
h3,
h4,
h5,
.h1,
.h2,
.h3,
.h4,
.h5 {
  font-weight: 700;
  letter-spacing: -0.5px;
}

/* Navbar */
.navbar {
  padding-top: 19.2px;
  padding-top: 1.2rem;
  padding-bottom: 19.2px;
  padding-bottom: 1.2rem;
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.95) !important;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-weight: 800;
  padding-top: 3.2px;
  padding-top: 0.2rem;
  padding-bottom: 3.2px;
  padding-bottom: 0.2rem;
}

#navLogo,
#footerLogo {
  width: auto;
  height: 38.4px;
  height: 2.4rem;
}

/* Button Styles */
.btn {
  border-radius: 50px;
  padding: 0.6rem 1.4rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

/* Primary */
.btn-primary {
  background: linear-gradient(135deg, var(--bs-primary), #8c7ae6);
  border: none;
  box-shadow: 0 4px 15px rgba(var(--bs-primary-rgb), 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(var(--bs-primary-rgb), 0.4);
}

.btn-outline-primary {
  /*border-width: 2px;*/
  border-color: var(--bs-primary);
  color: var(--bs-primary);
}

.btn-outline-primary:hover {
  background: var(--bs-primary);
  color: #fff;
}

/* Secondary */
.btn-secondary {
  background: linear-gradient(135deg, var(--bs-secondary), #1dd1a1);
  border: none;
  box-shadow: 0 4px 15px rgba(0, 206, 201, 0.3);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 206, 201, 0.4);
}

.btn-outline-secondary {
  border-width: 2px;
  border-color: var(--bs-secondary);
  color: var(--bs-secondary);
}

.btn-outline-secondary:hover {
  background: var(--bs-secondary);
  color: #fff;
}

/* Success */
.btn-success {
  background: linear-gradient(135deg, var(--bs-success), #28a745);
  border: none;
  box-shadow: 0 4px 15px rgba(25, 135, 84, 0.3);
}

.btn-success:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(25, 135, 84, 0.4);
}

.btn-outline-success {
  border-width: 2px;
  border-color: var(--bs-success);
  color: var(--bs-success);
}

.btn-outline-success:hover {
  background: var(--bs-success);
  color: #fff;
}

/* Danger */
.btn-danger {
  background: linear-gradient(135deg, var(--bs-danger), #e74c3c);
  border: none;
  box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.btn-danger:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(220, 53, 69, 0.4);
}

.btn-outline-danger {
  border-width: 2px;
  border-color: var(--bs-danger);
  color: var(--bs-danger);
}

.btn-outline-danger:hover {
  background: var(--bs-danger);
  color: #fff;
}

/* Warning */
.btn-warning {
  background: linear-gradient(135deg, var(--bs-warning), #ffdd57);
  border: none;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.btn-warning:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
}

.btn-outline-warning {
  border-width: 2px;
  border-color: var(--bs-warning);
  color: var(--bs-warning);
}

.btn-outline-warning:hover {
  background: var(--bs-warning);
  color: #fff;
}

/* Info */
.btn-info {
  background: linear-gradient(135deg, var(--bs-info), #17a2b8);
  border: none;
  box-shadow: 0 4px 15px rgba(13, 202, 240, 0.3);
}

.btn-info:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(13, 202, 240, 0.4);
}

.btn-outline-info {
  border-width: 2px;
  border-color: var(--bs-info);
  color: var(--bs-info);
}

.btn-outline-info:hover {
  background: var(--bs-info);
  color: #fff;
}

/* Light */
.btn-light {
  background: linear-gradient(135deg, var(--bs-light), #e0e0e0);
  border: none;
  box-shadow: 0 4px 15px rgba(248, 249, 250, 0.3);
}

.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(248, 249, 250, 0.4);
}

.btn-outline-light {
  border-width: 2px;
  border-color: var(--bs-light);
  color: var(--bs-dark);
}

.btn-outline-light:hover {
  background: var(--bs-light);
  color: var(--bs-dark);
}

/* Dark */
.btn-dark {
  background: linear-gradient(135deg, var(--bs-dark), #636e72);
  border: none;
  box-shadow: 0 4px 15px rgba(45, 52, 54, 0.3);
}

.btn-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(45, 52, 54, 0.4);
}

.btn-outline-dark {
  border-width: 2px;
  border-color: var(--bs-dark);
  color: var(--bs-dark);
}

.btn-outline-dark:hover {
  background: var(--bs-dark);
  color: #fff;
}

.btn-share {
  height: 3rem;
  width: 3rem;
}

/* Cards */
.card {
  background-color: #ffffff;
  border-radius: var(--bs-border-radius-xl) !important;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.card:hover {
  transform: translateY(-0.25rem);
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.08) !important;
}

/* Forms */
input.form-control, select.form-select {
  line-height: 1.8;
  padding: 0.4rem 0.75rem;
}

.form-control,
.form-select,
.form-control-color {
  /*    padding: .475rem .85rem;
  border-radius: 8px !important;
  border-width: 2px !important;*/
}

.form-control:focus,
.form-select:focus {
  border-color: var(--bs-primary);
  box-shadow: 0 0 0 0.25rem rgba(108, 92, 231, 0.25);
}

/* Badges */
.badge {
  font-weight: 600;
  padding: 0.35em 0.65em;
}

/* Icons */
.fa-solid {
  /*vertical-align: middle;*/
}

/* Section Padding */
.py-6 {
  padding-top: 6rem !important;
  padding-bottom: 6rem !important;
}

/* Modals */
@media (min-width: 576px) {
  .modal-sm {
    max-width: 380px;
  }
}

.modal-open .scroll-top-wrapper {
  display: none;
}

.modal-title {
  font-size: 1.2rem;
}

.btn-close {
  width: 0.2rem;
  height: 0.2rem;
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/0.7em auto no-repeat;
}

/* Links */
a:link,
a:visited,
a:hover,
a:active {
  text-decoration: none;
}

/* Social Buttons */
.btn-google {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  border: none;
  color: white;
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.btn-google:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
}

.btn-facebook {
  background: linear-gradient(135deg, #1877F2, #145DBF);
  border: none;
  color: white;
  box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
}

.btn-facebook:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(24, 119, 242, 0.4);
}

/* UI Blocker */
#uiBlockerContainer {
  position: fixed;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 2000;
  cursor: pointer;
}

#uiBlockerMessageContainerWrapper {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 288px;
  width: 18rem;
  opacity: 1;
  z-index: 2500;
}
@media (min-width: 768px) {
  #uiBlockerMessageContainerWrapper {
    width: 400px;
    width: 25rem;
  }
}

#uiBlockerMessageContainer {
  display: none;
  color: #fff;
  font-size: 15.2px;
  font-size: 0.95rem;
  background-color: #000;
  border-radius: 4.8px;
  border-radius: 0.3rem;
  overflow-wrap: break-word;
  padding-bottom: 9.6px;
  padding-bottom: 0.6rem;
  padding-left: 9.6px;
  padding-left: 0.6rem;
  padding-top: 9.6px;
  padding-top: 0.6rem;
  padding-right: 9.6px;
  padding-right: 0.6rem;
  width: 100%;
}
@media (min-width: 768px) {
  #uiBlockerMessageContainer {
    font-size: 16px;
    font-size: 1rem;
  }
}
@media (min-width: 768px) {
  #uiBlockerMessageContainer {
    border-radius: 8px;
    border-radius: 0.5rem;
  }
}
@media (min-width: 768px) {
  #uiBlockerMessageContainer {
    padding-bottom: 16px;
    padding-bottom: 1rem;
    padding-left: 16px;
    padding-left: 1rem;
    padding-top: 16px;
    padding-top: 1rem;
    padding-right: 16px;
    padding-right: 1rem;
  }
}

/* Notifications */
.notificationContainerWrapper {
  display: block;
  position: fixed;
  top: 12.8px;
  top: 0.8rem;
  right: 12.8px;
  right: 0.8rem;
  width: 288px;
  width: 18rem;
  opacity: 1;
  z-index: 2500;
}
@media (min-width: 768px) {
  .notificationContainerWrapper {
    top: 32px;
    top: 2rem;
    right: 32px;
    right: 2rem;
    width: 384px;
    width: 24rem;
  }
}

.notificationContainer {
  display: none;
  color: #fff;
  font-size: 15.2px;
  font-size: 0.95rem;
  background-color: #000;
  border-radius: 4.8px;
  border-radius: 0.3rem;
  overflow-wrap: break-word;
  padding-bottom: 9.6px;
  padding-bottom: 0.6rem;
  padding-left: 9.6px;
  padding-left: 0.6rem;
  padding-top: 9.6px;
  padding-top: 0.6rem;
  padding-right: 9.6px;
  padding-right: 0.6rem;
  width: 100%;
}
@media (min-width: 768px) {
  .notificationContainer {
    font-size: 16px;
    font-size: 1rem;
  }
}
@media (min-width: 768px) {
  .notificationContainer {
    border-radius: 8px;
    border-radius: 0.5rem;
  }
}
@media (min-width: 768px) {
  .notificationContainer {
    padding-bottom: 16px;
    padding-bottom: 1rem;
    padding-left: 16px;
    padding-left: 1rem;
    padding-top: 16px;
    padding-top: 1rem;
    padding-right: 16px;
    padding-right: 1rem;
  }
}

.notificationDismiss {
  cursor: pointer;
}

.notification-warning {
  background-color: #E67E22;
}

.notification-error {
  background-color: #D32F2F;
}

.notification-success {
  background-color: #2E7D32;
}

.notification-info {
  background-color: #546E7A;
}

/* Page Scroll */
.scroll-top-wrapper {
  position: fixed;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  z-index: 1030;
  background: linear-gradient(135deg, var(--bs-primary), #8c7ae6);
  border: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  color: #eeeeee;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  width: 51.2px;
  width: 3.2rem;
  height: 51.2px;
  height: 3.2rem;
  right: 16px;
  right: 1rem;
  bottom: 16px;
  bottom: 1rem;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 768px) {
  .scroll-top-wrapper {
    width: 60.8px;
    width: 3.8rem;
    height: 60.8px;
    height: 3.8rem;
    right: 32px;
    right: 2rem;
    bottom: 32px;
    bottom: 2rem;
  }
}

.scroll-top-wrapper:hover {
  cursor: pointer;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 25px rgba(108, 92, 231, 0.4);
}

.scroll-top-wrapper.show {
  visibility: visible;
  cursor: pointer;
  opacity: 1;
}

.scroll-top-wrapper i.fa {
  font-size: 1.7rem;
}
@media (min-width: 768px) {
  .scroll-top-wrapper i.fa {
    font-size: 2rem;
  }
}

/* Custom */
.main-container {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  min-height: calc(100vh - 80px);
  min-height: calc(100dvh - 80px);
}

.footer-container {
  width: 100%;
  right: 0;
}

.hide {
  display: none;
}

@media (min-width: 768px) {
  .flexi-width {
    max-width: -moz-max-content;
    max-width: max-content;
  }
}

.iti {
  width: 100% !important;
}

.otpField {
  height: 48px;
  height: 3rem;
}

#formLogo {
  width: 240px;
  width: 15rem;
  height: auto;
}

.table {
  font-size: 0.85rem;
}

.form-select-sm {
  padding: 0px;
  font-size: 0.7rem;
}

.nowrap {
  white-space: nowrap;
}

#img-index-welcome {
  width: 80%;
  height: auto;
}

.text-logo-purple {
  color: #6c5ce7;
}

.text-logo-red {
  color: #ec7063;
}

.text-logo-header {
  font-size: 1.25rem;
  font-weight: 800;
  padding: 0;
}

.tooltip-hover {
  cursor: pointer;
  position: relative;
}

.tooltip-hover::after {
  content: attr(data-title);
  position: absolute;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #222;
  color: #fff;
  padding: 6px 10px;
  font-size: 13px;
  border-radius: 5px;
  white-space: normal;
  width: -moz-max-content;
  width: max-content;
  max-width: 220px;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  z-index: 999;
}

.tooltip-hover:hover::after {
  display: inline-block;
  opacity: 1;
  transform: translateX(-50%) translateY(4px);
}

.cardImage {
  width: 128px;
  padding: 16px;
  padding: 1rem;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.scroll-target {
  scroll-margin-top: 83.2px;
  scroll-margin-top: 5.2rem;
}

img[loading=lazy] {
  filter: saturate(1.02);
}

.section-full-height {
  min-height: 100vh;
  min-height: 100dvh;
}

.section-full-height-with-navbar {
  min-height: calc(100vh - 83.2px);
  min-height: calc(100vh - 5.2rem);
  min-height: calc(100dvh - 83.2px);
  min-height: calc(100dvh - 5.2rem);
}

section:not(#home):nth-of-type(odd) {
  background: linear-gradient(135deg, #ffffff, #f8fafc);
}

section:not(#home):nth-of-type(even) {
  background: linear-gradient(135deg, #f9fafb, #eef2f7);
}

/* ============================================================
   Core Services â€” Tabbed Category Grid
   ============================================================ */
.services-tab-nav-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.services-tab-nav-wrapper::-webkit-scrollbar {
  display: none;
}

.lottie-box,
.feature-img,
.feature-img-hero {
  width: 100%;
  aspect-ratio: 1/1;
}

.service-grid-card {
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}
.service-grid-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.service-grid-img-col {
  width: 30%;
  -ms-flex: 0 0 30%;
      flex: 0 0 30%;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  overflow: hidden;
}
.service-grid-img-col img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.service-grid-content-col {
  width: 70%;
  -ms-flex: 0 0 70%;
      flex: 0 0 70%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
}

/* Tab pane fade animation */
.tab-content > .tab-pane {
  transition: opacity 0.2s ease;
}

/* ============================================================
   Product Suite Horizontal Scroll Carousel (Pastel Cards)
   ============================================================ */
.product-suite-wrapper {
  background-color: #e8f1f7;
  border-radius: 2rem;
}

.product-suite-slider,
.core-services-slider {
  padding-top: 0.75rem;
  padding-bottom: 1.25rem;
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
  scrollbar-width: none;
}
.product-suite-slider::-webkit-scrollbar,
.core-services-slider::-webkit-scrollbar {
  display: none;
}

.product-suite-card {
  border-radius: 1.25rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.product-suite-card:hover, .product-suite-card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
}
.product-suite-card:hover .product-card-img-wrap img, .product-suite-card:focus-within .product-card-img-wrap img {
  transform: scale(1.04);
}

.product-card-img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 0.75rem;
  overflow: hidden;
  background-color: #ffffff;
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  padding: 0.75rem;
}
.product-card-img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  transition: transform 0.4s ease;
}

/* Distinct soft pastel card backgrounds matching design reference */
.product-bg-1 {
  background-color: #e2f0d9;
}

.product-bg-2 {
  background-color: #dce6f8;
}

.product-bg-3 {
  background-color: #d5e8ed;
}

.product-bg-4 {
  background-color: #e9edd0;
}

.product-bg-5 {
  background-color: #eae3f7;
}

.product-bg-6 {
  background-color: #fce8e6;
}

/* ============================================================
   Featured Projects Gallery Slider (4:3 Aspect Ratio, Mobile-First)
   ============================================================ */
.project-gallery-wrapper {
  width: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -ms-touch-action: pan-y pinch-zoom;
      touch-action: pan-y pinch-zoom;
  cursor: grab;
}
.project-gallery-wrapper:active {
  cursor: grabbing;
}
.project-gallery-wrapper:focus-visible {
  outline: 2px solid var(--bs-primary);
  outline-offset: -2px;
}

.project-gallery-viewport {
  width: 100%;
  aspect-ratio: 4/3;
  background-color: transparent;
}

.project-gallery-track {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.project-gallery-slide {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.project-gallery-slide .project-gallery-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  pointer-events: none;
}

.backdrop-blur {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.project-gallery-nav {
  width: 44px;
  height: 44px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  z-index: 10;
  opacity: 0.85;
  transition: all 0.25s ease;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: #1e293b;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.project-gallery-nav:hover, .project-gallery-nav:focus {
  opacity: 1;
  background: #ffffff;
  color: var(--bs-primary);
  transform: translateY(-50%) scale(1.08);
}
.project-gallery-nav:active {
  transform: translateY(-50%) scale(0.95);
}
@media (max-width: 575.98px) {
  .project-gallery-nav {
    width: 38px;
    height: 38px;
    font-size: 0.875rem;
  }
}

.project-gallery-dots-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.45), transparent);
  pointer-events: none;
}
.project-gallery-dots-overlay .dot {
  pointer-events: auto;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.project-gallery-dots-overlay .dot:hover {
  background-color: rgba(255, 255, 255, 0.85);
}
.project-gallery-dots-overlay .dot.active {
  width: 24px;
  background-color: #ffffff;
}

/* Vertical Thumbnail Side Panel (Full Height) */
.project-gallery-thumbs-panel {
  height: 100%;
  max-height: 100%;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.25) transparent;
}
.project-gallery-thumbs-panel::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
.project-gallery-thumbs-panel::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.25);
  border-radius: 4px;
}

.gallery-thumb-item {
  aspect-ratio: 4/3;
  border: 2px solid transparent !important;
  opacity: 0.65;
  transition: all 0.25s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
  background-color: #0f172a;
}
@media (min-width: 768px) {
  .gallery-thumb-item {
    width: 100%;
  }
}
@media (max-width: 767.98px) {
  .gallery-thumb-item {
    width: 90px;
    height: 67.5px;
  }
}
.gallery-thumb-item:hover {
  opacity: 0.9;
  transform: scale(1.02);
}
.gallery-thumb-item.active {
  opacity: 1;
  border-color: var(--bs-primary) !important;
  box-shadow: 0 0 12px rgba(var(--bs-primary-rgb), 0.4);
}

.gallery-thumb-badge {
  width: 1rem !important;
  height: 1rem !important;
  border-radius: 50% !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
  -ms-flex-align: center !important;
      align-items: center !important;
  -ms-flex-pack: center !important;
      justify-content: center !important;
  padding: 0 !important;
  line-height: 1 !important;
  font-size: 0.6rem !important;
  z-index: 2;
}

.extra-small {
  font-size: 0.65rem;
  padding: 0.25em 0.45em;
  line-height: 1;
}