:root {
  /* Brand */
  --primary: #71306c;

  /* UI Colors */
  --green: #71306c;
  --border: #e5e7eb;

  /* Text */
  --text: #2f2f2f;
  --text-dark: #111827;
  --muted: #6b7280;
}

/* ================= NAVBAR ================= */
.damira-navbar {
  background: transparent;
  padding: 16px 0;
  transition:
    background-color 0.35s ease,
    box-shadow 0.35s ease,
    padding 0.35s ease;
  z-index: 1050;
}

/* Default state → show WHITE logo */
.damira-logo-white {
  display: block;
}
.damira-logo-purple {
  display: none;
}

/* Navbar on scroll */
.navbar.damira-navbar.scrolled {
  background-color: #ffffff !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* Swap logos on scroll */
.damira-navbar.scrolled .damira-logo-white {
  display: none;
}
.damira-navbar.scrolled .damira-logo-purple {
  display: block;
}

/* Login button styling on scroll */
.damira-navbar.scrolled .login-button {
  border-radius: 10px;
  font-weight: 600;
  padding: 8px 26px;
  background: linear-gradient(135deg, #71306c, #82307e);
  color: #ffffff;
  border: 2px solid #71306c !important;
  box-shadow: 0 6px 16px rgba(111, 45, 107, 0.35);
  transition: all 0.3s ease;
}
.damira-navbar .navbar-toggler {
  border: 1px solid #ffffff !important;
}
.damira-navbar .navbar-toggler i {
  color: #ffffff !important;
}
.damira-navbar.scrolled .navbar-toggler {
  border: 1px solid #71306c !important;
}
.damira-navbar.scrolled .navbar-toggler i {
  color: #71306c !important;
}
/* Logo resize smoothly */
.damira-navbar img {
  transition: height 0.3s ease;
}

.damira-navbar.scrolled img {
  height: 36px;
}

/* Nav links transition */
.navbar-nav .nav-link {
  transition: color 0.3s ease;
}

.damira-navbar .navbar-brand img {
  height: 42px;
}
.group-name {
  color: #71306c !important;
  font-weight: 600 !important;
}

.nav-link {
  color: #6c757d;
  font-weight: 500;
  position: relative;
}

.nav-link.active,
.nav-link:hover {
  color: var(--primary) !important;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}
.navbar-nav {
  gap: 10px !important;
  white-space: nowrap;
  display: flex;
}
.btn-login {
  border-radius: 10px;
  font-weight: 600;
  padding: 8px 26px;
  /* background: linear-gradient(135deg, #71306C, #82307E); */
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(111, 45, 107, 0.35);
  transition: all 0.3s ease;
  border: 2px solid #ffffff !important;
}

/* Hover */
.btn-login:hover,
.btn-login:active {
  background: linear-gradient(135deg, #71306c, #82307e);
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(111, 45, 107, 0.45);
}

/* Focus (keyboard accessibility) */
.btn-login:focus {
  outline: none;
  box-shadow: unset;
}

/* Active click */
.btn-login:active {
  transform: translateY(0);
  box-shadow: unset;
}

/* ================= HERO ================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("../img/landing_page/bg-image.png") center / cover no-repeat;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(106 47 113 / 80%);
  /* backdrop-filter: blur(6px); */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  color: #fff;
}

.hero h1 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
}

.hero-subtitle {
  font-size: 18px;
  opacity: 0.85;
}
/* Page container ne full height aapo */
html,body {
  height: 100%;
  margin: 0;
}

.main-wrapper {
  min-height: 100vh; 
  display: flex;
  flex-direction: column;
}

/* Content area ne flexible banao */
.main-content {
  flex: 1;
}

/* Footer ne bottom ma rakho */
footer {
  margin-top: auto;
}

/* search list shoutout list view*/
.shout-out-search-section .shout-out-content {
  text-align: left;
  padding: 20px;
}
.news-listing-view {
  max-height: 835px;
  overflow-y: auto;
}
.shout-out-listing-view {
  max-height: 500px;
  overflow-y: auto;
}
/* ================= SEARCH ================= */
/* suggetions search*/
.search-box {
  position: relative;
}

#search_suggestions {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 9999;
  max-height: 300px;
  overflow-y: auto;
  width: 100%;
}

#search_suggestions li {
  cursor: pointer;
  padding: 10px 15px;
}

#search_suggestions li:hover {
  background: #f1f1f1;
}


/* Card */
.event-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 24px;
  transition: 0.3s ease;
  display: flex;
  height: 100%;
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* Card Content */
.event-content {
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* Top Section */
.event-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 18px;
}

/* Date Box */
.event-date-box {
  background: #71306c;
  color: #fff;
  padding: 10px 14px;
  border-radius: 12px;
  text-align: center;
  min-width: 70px;
  line-height: 1.1;
}

.event-date-box .day {
  display: block;
  font-size: 18px;
  font-weight: 600;
}

.event-date-box .month,
.event-date-box .year {
  display: block;
  font-size: 12px;
}

/* Time */
.event-time {
  font-size: 14px;
  color: #6c757d;
  font-weight: 500;
}

/* Title */
.event-title {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 18px;
}

/* Description */
.event-desc {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Link */
.event-link {
  font-weight: 500;
  color: #6f2c91;
  text-decoration: none;
  margin-top: auto;
}

.event-link:hover {
  text-decoration: underline;
}

/* Responsive Improvements */
@media (max-width: 576px) {
  .event-top {
    flex-direction: column;
    gap: 10px;
  }

  .event-time {
    font-size: 13px;
  }
}

/* search Document section css  */





/* Buttons */
.doc-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}
/* banner search section css here */
/* Search Box */
.banner-search-form {
  width: 100%;
}

.banner-search-box {
  position: relative;
  max-width: 420px;
  margin-left: auto;
}

.banner-search-box .form-control {
  height: 50px;
  border-radius: 50px;
  padding: 0 60px 0 20px;
  border: none;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.banner-search-box .form-control:focus {
  /* box-shadow: 0 6px 20px rgba(0,0,0,0.25); */
  outline: none;
}

.search-btn {
  position: absolute;
  right: 6px;
  top: 6px;
  bottom: 6px;
  width: 45px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}
.search-btn i {
  color: #71306c;
}

.search-btn:hover {
  background: #71306c;
}
/* end css  */
/* ============================= */
/* Responsive Card Layout */
/* ============================= */


/* End */

/* end */
.search-box {
  background: #fff;
  border-radius: 50px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  border: 1px solid #decadc;
}

.search-box i {
  color: #999;
}

.search-box input {
  border: none;
  outline: none;
  width: 100%;
}
.with-bar {
  position: relative;
  padding-left: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.with-bar::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 6px;
  height: 80%;
  background-color: #71306c; /* green bar */
  border-radius: 2px;
}
/* ================= SHORTCUT GRID ================= */
.shortcut {
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.shortcut:hover {
  transform: translateY(-6px);
}

.icon-box {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  transition: all 0.3s ease;
}

.icon-box img {
  width: 60%;
}

.shortcut span {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  display: block;
}

/* ================= SHORTCUT CARD ================= */
.shortcut {
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.shortcut:hover {
  transform: translateY(-6px);
}

/* ================= ICON ================= */
.icon-box {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-inline: auto;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}

.icon-box img {
  width: 70%;
  height: auto;
}

.shortcut:hover .icon-box {
  transform: scale(1.08);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

/* ================= LABEL ================= */
.shortcut span {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

/* News section css start here */
/* ================= TAB SLIDER ================= */
.tab-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}

.tabSwiper {
  width: 100%;
}

.tabSwiper .swiper-slide {
  width: auto;
}

.tab-btn {
  border: none;
  background: #f1f1f1;
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 600;
  white-space: nowrap;
  transition: 0.3s;
}

.tab-btn.active {
  background: #71306c;
  color: #fff;
}


/* =======================
  Shoutout Section
======================= */
.shoutout-section {
  position: relative;
  /* padding: 80px 0; */
  background: url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f")
    center/cover no-repeat;
}

.shoutout-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(245, 245, 243, 0.95);
  z-index: 1;
}

.shoutout-section .container {
  position: relative;
  z-index: 2;
}

/* =======================
   CARD
======================= */
/* =======================
   CARD BASE
======================= */
.staff-card {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  height: 100%;
  text-align: center;
  transition: 0.3s ease;

  display: flex;
  flex-direction: column;
}

.staff-card:hover {
  transform: translateY(-6px);
}
.shoutout-slider .item{
  width: 100%;
}
.alert {
  white-space: normal;
}
/* =======================
   PROFILE IMAGE
======================= */
.staff-img {
  width: 100%;
    height: 240px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 16px;
  flex-shrink: 0;
}

/* =======================
   NAME & ROLE
======================= */
.staff-name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;

  /* keep height equal */
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.staff-role {
  font-size: 14px;
  color: #71306c;
  font-weight: 500;
  margin-bottom: 10px;

  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* =======================
   DESCRIPTION
======================= */
.staff-text {
  font-size: 14px;
  color: #6c757d;
  line-height: 1.6;
  margin-top: auto;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* =======================
   OWL FIXES (IMPORTANT)
======================= */
.shoutout-slider .owl-stage {
  display: flex;
  margin: 0 auto !important;
}

.shoutout-slider .owl-item {
  display: flex;
}

/* =======================
   SLIDER SPACING
======================= */
.shoutout-slider .item {
  padding: 10px;
}

.owl-carousel .owl-item img {
    display: block;
    width: 100%;
}
/* =======================
   DOTS
======================= */
.shoutout-slider .owl-dots {
  margin-top: 25px;
  text-align: center;
}

.shoutout-slider .owl-dot span {
  width: 10px;
  height: 10px;
  background: #ccc;
  display: block;
  border-radius: 50%;
  margin: 5px;
}

.shoutout-slider .owl-dot.active span {
  background: #71306c;
}

/* =======================
   RESPONSIVE IMAGE HEIGHT
======================= */
@media (max-width: 575px) {
  .staff-img {
    height: 350px;
  }
  .search-staff-img {
    height: 350px !important; 
  }
  .banner-breadcrumb .breadcrumb {
    justify-content: center;
  }
  .banner-search-box {
    margin: 0 auto;
  }
}
/* ================= NEWS CARD ================= */
/* SECTION */
.common-section {
  /* padding: 80px 0; */
  background: #fbfbfb;
}

/* CONTAINER FIX */
.tab-container {
  position: relative;
  width: 100%;
  overflow: hidden; /* 🔑 IMPORTANT */
}

/* TAB WRAPPER */
.tab-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 10px;
}

/* SWIPER WIDTH LOCK */
.tabSwiper {
  width: 100%;
  overflow: hidden;
}

/* SLIDE AUTO SIZE */
.tabSwiper .swiper-slide {
  width: auto;
}

/* TAB BUTTON */
.tab-btn {
  border: none;
  background: #f1f1f1;
  padding: 8px 18px;
  border-radius: 10px;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: 0.3s;
}

.tab-btn.active {
  background: #71306c;
  color: #fff;
}

/* ARROWS */
.tab-arrow {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  z-index: 5;
}

/* ===== GRID LAYOUT ===== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.news-section {
  background-color: #fbfbfb;
}
/* ===== CARD ===== */
.news-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}

/* Image fixed on top */
.news-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Card body takes remaining space */
.news-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px;
}

/* Meta text */
.news-body small {
  color: #6c757d;
  margin-bottom: 8px;
}

/* Title */
.news-body h5 {
  font-weight: 600;
  margin-bottom: 10px;
}


.news-body p {
  flex: 1;
  color: #555;
  margin-bottom: 12px;

  /* Optional: 3-line ellipsis */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}


.news-body .news-link {
  align-self: flex-start;
  margin-top: auto;
  font-weight: 700;
  color: #71306c;
  text-decoration: none !important;
  width: fit-content;
}
.event-link {
  align-self: flex-start;
  margin-top: auto;
  font-weight: 700;
  color: #71306c;
  text-decoration: none !important;
  width: fit-content;
  overflow-wrap: anywhere;
}

.event-description {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.meta {
  font-size: 14px;
  margin-top: 12px;
}

/* ===== PAGINATION ===== */
.news-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.news-pagination button {
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #eee;
  font-weight: 600;
  cursor: pointer;
}

.news-pagination button.active {
  background: #71306c;
  color: #fff;
}

.tab-slider .swiper-wrapper {
  gap: 10px;
  justify-content: flex-start;
}
.tab-prev,
.tab-next {
  cursor: pointer;
  background: #fff;
  border-radius: 10px;
  min-width: 40px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 10;
  border: none;
}

.tab-prev i,
.tab-next i {
  font-size: 14px;
  color: #71306c;
}

/* News section css end here */

/* view more button */
.view-more-btn {
  background: linear-gradient(135deg, #71306c, #8e44ad);
  color: #fff;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(113, 48, 108, 0.4);
}

.view-more-btn i {
  transition: transform 0.3s ease;
}

.view-more-btn:hover {
  background: linear-gradient(135deg, #8e44ad, #71306c);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(113, 48, 108, 0.55);
  color: #fff;
}

.view-more-btn:hover i {
  transform: translateX(6px);
}
/* view more button end */

/* Loan Growth section start here */
/* GRID LAYOUT */
.kpi-card {
  height: 100%;
  min-height: 220px;
  padding: 13px;
  border-radius: 20px;
  color: #212529;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
  cursor: pointer;
}

/* Hover lift */
.kpi-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

/* Decorative overlay */
.kpi-card::after {
  content: "";
  position: absolute;
  top: -40%;
  right: -40%;
  width: 220px;
  height: 220px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  transition: 0.4s ease;
}

.kpi-card:hover::after {
  transform: scale(1.2);
}

/* Titles */
.kpi-card h6 {
  font-size: 18px;
  opacity: 0.9;
  text-align: left;
  color: var(--bs-emphasis-color);
}

/* Main number */
.value {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.5px;
  text-align: left;
}

/* Icons */
.icon {
  background: rgba(255, 255, 255, 0.15);
  padding: 12px;
  border-radius: 14px;
  font-size: 16px;
  transition:
    transform 0.4s ease,
    background 0.3s ease;
}

.kpi-card:hover .icon {
  transform: rotate(12deg) scale(1.1);
  background: rgba(255, 255, 255, 0.25);
}

/* Trend */
.trend {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  margin-top: 10px;
}

.circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.circle i {
  color: #7e3079;
}
.analytics-icons i {
  color: #7e3079;
}
.trend.up {
  color: #c6f6d5;
}

.trend.down {
  color: #fed7d7;
}

/* Tags */
.tag {
  background: rgba(255, 255, 255, 0.18);
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

/* Background gradients */

.bg-nhs {
  background: linear-gradient(160deg, #c0da76 0%, #9fbe4f 100%);
}

.bg-private {
  background: linear-gradient(160deg, #aadce9 0%, #7fc1d6 100%);
}

.bg-shout {
  background: linear-gradient(160deg, #c7bdda 0%, #a79bc6 100%);
}

.bg-revenue {
  background: linear-gradient(160deg, #ff9fa2 0%, #ff6f73 100%);
}

.bg-white-space {
  background: linear-gradient(160deg, #7da1cc 0%, #567fb3 100%);
}

/* Announcement section css start here */
/* ===== SECTION STYLING ===== */
.discover-section {
  padding: 80px 0 60px;
  background: #fff;
}

.discover-title {
  font-size: 32px;
  font-weight: 700;
  color: #1f2933;
  text-transform: uppercase;
}

.discover-subtitle {
  font-size: 32px;
  font-weight: 500;
  color: #6b7280;
}

.discover-desc {
  max-width: 620px;
  font-size: 18px;
  color: #6b7280;
}

/* ===== CATEGORY CARD ===== */
/* ===== CARD BASE ===== */
.category-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 28px;
  height: 100%;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* ICON */
.category-card .damira-logo {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  transition: all 0.35s ease;
}

/* TITLE */
.category-card .category-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  color: #111827;
  transition: color 0.35s ease;
}

/* DESCRIPTION */
.category-card .discover-desc {
  font-size: 14px;
  color: #6b7280;
  transition: color 0.35s ease;
}

/* ===== HOVER EFFECT ===== */
.category-card:hover {
  background: #71306c; /* Purple */
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(111, 45, 107, 0.35);
  border-color: transparent;
}

/* TEXT ON HOVER */
.category-card:hover .category-title,
.category-card:hover .discover-desc {
  color: #ffffff;
}

/* SVG / IMAGE ICON COLOR FIX */
.category-card:hover .damira-logo {
  filter: brightness(0) invert(1);
}
.announcement-card-list {
  overflow-y: auto;
  max-height: 600px;
}
.accordion-item:first-of-type {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
.accordion-item:last-of-type {
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}
.accordion-title {
  display: flex;
  align-items: center;
  gap: 12px;
}
/* Announcement section css End here */
.announcement-section {
  padding: 40px 0;
}

.announcement-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.announcement-header {
  padding: 24px;
}

.announcement-body {
  padding: 24px;
}

/* Calendar section css start here */

/* ===== SECTION ===== */
.calendar-events-section {
  /* padding: 32px 16px; */
  overflow-x: hidden;
}

/* ===== CARDS ===== */

.calendar-card,
.events-card {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  /* height: 100%; */
}
.events-card .no-news-data{
   box-shadow: unset !important;
}
.no-news-data{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  color: #6c757d;
      text-align: center;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    min-height: 250px;
    width: 100%;
    height: auto;
    position: relative;
}
/* ===== CALENDAR ===== */
.calendar-header {
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  align-items: center;
  margin-bottom: 16px;
}

.calendar-header h3 {
  text-align: center;
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  white-space: nowrap;
}

.calendar-header button {
  cursor: pointer;
  background: #fff;
  border-radius: 10px;
  min-width: 40px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 10;
  border: none;
}

.calendar-header button:hover {
  background: var(--primary);
  color: #fff;
}
.calendar-days {
  border: 1px solid #f2f2f2;
  border-radius: 12px 12px 0 0;
  background: #f9f9f9;
  padding: 0 0 6px;
}
.calendar-days,
.calendar-dates {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  gap: 3px;
  margin-top: 10px;
}

.calendar-days span {
  font-size: 14px;
  color: #000000;
  padding: 9px;
  font-weight: 500;
}
/* Base date cell */
.calendar-dates .date {
  padding: 8px;
  margin: 0;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
  margin: 3px;
}
.quick-access-card {
  background: #fff;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}
.qa-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

/* Base card */
.qa-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border-radius: 14px;
  text-decoration: none;
  color: #1f2937;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

/* Different backgrounds */
.qa-item:nth-child(6n + 1) {
  background: linear-gradient(135deg, #fff7ed, #ffedd5);
}

.qa-item:nth-child(6n + 2) {
  background: linear-gradient(135deg, #f3e8ff, #e9d5ff);
}

.qa-item:nth-child(6n + 3) {
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
}

.qa-item:nth-child(6n + 4) {
  background: linear-gradient(135deg, #fdf2f8, #fbcfe8);
}

.qa-item:nth-child(6n + 5) {
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
}

.qa-item:nth-child(6n + 6) {
  background: linear-gradient(135deg, #fffbeb, #fef3c7);
}

/* Hover animation */
.qa-item:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

/* Arrow animation */
.qa-item:hover .qa-arrow {
  transform: translateX(6px);
  color: #71306c;
}

.qa-arrow {
  font-size: 18px;
  transition: all 0.25s ease;
}

/* Icon styling */
.qa-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  flex-shrink: 0;
}

.news-section .swiper-wrapper {
    flex-wrap: nowrap !important;
    gap: 5px !important;
    padding-bottom: 10px;
    max-width: 100%;
    overflow-x: auto;
}
/* =========================
   FULLCALENDAR RESPONSIVE
   ========================= */

/* Prevent horizontal scroll */
.fc {
  max-width: 100%;
  overflow-x: hidden;
}

/* Make calendar wrapper responsive */
.fc-view-harness,
.fc-scrollgrid,
.fc-scrollgrid table {
  width: 100% !important;
}

/* Ensure grid scales correctly */
.fc-scrollgrid-sync-table {
  table-layout: fixed;
  width: 100% !important;
}

/* Day cell responsiveness */
.fc-daygrid-day {
  min-height: 90px;
}

/* Event text handling */
.fc-event-title,
.custom-event-title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 12px;
}

/* Icons align properly */
.event-icons {
  display: flex;
  gap: 6px;
}

/* Reduce padding for events */
.fc-daygrid-event {
  padding: 2px 4px;
  font-size: 12px;
}

/* Make "+ more" link readable */
.fc-daygrid-more-link {
  font-size: 11px;
  margin-top: 2px;
}

/* =========================
   TABLET (≤ 992px)
   ========================= */
@media (max-width: 992px) {
  .fc-daygrid-day {
    min-height: 80px;
  }

  .fc-event-title,
  .custom-event-title {
    font-size: 11px;
  }
}

@media (max-width: 768px) {
  /* Calendar container */
  .fc {
    width: 100% !important;
    overflow-x: hidden;
  }

  /* Force table to fit screen */
  .fc-scrollgrid,
  .fc-scrollgrid table,
  .fc-scrollgrid-sync-table {
    width: 100% !important;
    table-layout: fixed !important;
  }

  /* Reduce column header height */
  .fc-col-header-cell-cushion {
    font-size: 12px;
    padding: 4px 0;
  }

  /* Day cell height auto */
  .fc-daygrid-day {
    min-height: auto !important;
  }

  /* Important: allow events to FLOW instead of ABSOLUTE */
  .fc-daygrid-day-events {
    position: static !important;
  }

  .fc-daygrid-event-harness {
    position: relative !important;
    margin: 2px 0 !important;
  }

  /* Stack events vertically */
  .fc-daygrid-event {
    display: block !important;
    white-space: normal !important;
    font-size: 11px !important;
    padding: 4px !important;
    border-radius: 6px;
  }

  /* Event title wraps properly */
  .fc-event-title,
  .custom-event-title {
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: unset !important;
    line-height: 1.3;
  }

  /* Hide edit/delete icons on mobile */
  .event-icons {
    display: none !important;
  }

  /* "+ more" fix */
  .fc-daygrid-more-link {
    font-size: 11px;
    display: block;
    margin-top: 4px;
  }

  /* Reduce day number size */
  .fc-daygrid-day-number {
    font-size: 12px;
  }
}

/* =========================
   TODAY HIGHLIGHT (Optional)
   ========================= */
.fc-day-today {
  background: rgba(13, 110, 253, 0.08) !important;
}

/* Active item */
.qa-item.active {
  outline: 2px solid #71306c;
}

/* Text */
.qa-text {
  font-size: 15px;
  font-weight: 500;
}
/* Hover */
.calendar-dates .date:hover {
  background: rgba(123, 55, 142, 0.15);
}

/* Inner range (light purple) */
.calendar-dates .date.in-range {
  background: rgba(123, 55, 142, 0.18);
  color: #4b115f;
}

/* Start & End date (dark purple) */
.calendar-dates .date.range-start,
.calendar-dates .date.range-end {
  background: #71306c;
  color: #fff;
  font-weight: 600;
}

/* Today */
.calendar-dates .date.today {
  border: 1px solid #71306c;
}
/* ===== EVENTS ===== */
.events-card h3 {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 700;
}

.events-scroll {
  max-height: 325px;
  overflow-y: auto;
  padding-right: 6px;
}

.event-group {
  margin-bottom: 20px;
}

.event-label {
  display: inline-block;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.event-label.today {
  background: rgba(11, 94, 215, 0.15);
  color: var(--primary);
}
.event-label.upcoming {
  background: rgba(16, 185, 129, 0.15);
  color: var(--green);
}
.event-label.past {
  background: #e5e7eb;
  color: #374151;
}

.event-item {
  display: flex;
  gap: 14px;
  padding: 14px;
  background: #fff;
  border-radius: 16px;
  /* box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px; */
  border: 1px solid #eef0f2;
  margin: 12px 0;
  transition: 0.2s;
}

.event-item:hover {
  transform: translateY(-2px);
  background-color: #fff6fe;
  cursor: pointer;
}

.event-date {
  width: 64px;
  min-width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #71306c, var(--green));
  color: #fff;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.event-date .day {
  font-size: 18px;
  font-weight: 800;
}

.event-date .month {
  font-size: 11px;
  text-transform: uppercase;
}

.event-content h6 {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
}

.event-content p {
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--muted);
}

/* Scrollbar */
.events-scroll::-webkit-scrollbar {
  width: 6px;
}
.events-scroll::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 6px;
}
.category-select-wrapper {
  min-width: 180px;
}

.category-select {
  font-size: 13px;
  padding: 10px 32px 10px 12px;
  border-radius: 10px;
  background-color: #f1f3f6;
  border: none;
  box-shadow: none;
  cursor: pointer;
}

/* focus */
.category-select:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(22, 199, 132, 0.25);
}

.meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  color: #555;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.meta-item img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.staff-section {
  padding: 80px 0;
}

/* End here */
/* tab menu section css start  */
.tabs-nav .nav-link::after {
  background: transparent !important;
}
.tabs-nav .nav-link.active,
.tabs-nav .nav-link:hover {
  color: #ffffff !important;
  background-color: var(--primary) !important;
}
/* Wrapper */
.documents-wrapper {
  margin: auto;
  padding: 0px;
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
}

/* Search */
.search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid #d0d7e2;
  border-radius: 10px;
  padding: 10px 16px;
  margin-bottom: 20px;
}

.search-box input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 15px;
}

/* Folder Card */
.folder-card {
  background: #fff;
  border: 1px solid #e1e6ef;
  border-radius: 12px;
  margin-bottom: 18px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

/* Folder Header */
.folder-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid #eef1f6;
}

.folder-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.folder-icon {
  font-size: 20px;
}

.file-count {
  font-size: 13px;
  color: #6b7280;
}

/* File Row */
.file-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  gap: 16px;
}

.file-row.highlight {
  background: #f0f6ff;
}

/* File Left */
.file-left {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.file-icon {
  font-size: 20px;
}

.file-name {
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.file-meta {
  font-size: 12px;
  color: #6b7280;
}

/* Download Button */
.download-btn {
  background: #2563eb;
  color: #fff;
  border: none;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
}

.download-btn:hover {
  background: #71306c;
}
.search-icon,
.folder-icon,
.file-icon {
  font-size: 22px;
  color: #f4c430;
  margin-right: 8px;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  font-size: 14px;
  border: none;
  border-radius: 6px;
  background: linear-gradient(135deg, #af74aa, #a862aa);
  color: #fff;
  cursor: pointer;
  transition: 0.3s ease;
}

.download-btn:hover {
  opacity: 0.9;
}

/* acordian css start */
.accordion-container {
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ACCORDION */
.accordion-item {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e5e9f5;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* HEADER */
.accordion-header {
  padding: 16px 20px;
  cursor: pointer;
  display: flex;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, #f8fafc, #eef2ff);
  transition: background 0.35s ease;
}

/* LEFT */
.accordion-header .left {
  display: flex;
  align-items: center;
  gap: 10px;
  word-break: break-word;
  font-weight: 600;
  color: #1f2937;
}

/* RIGHT */
.accordion-header .right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.count {
  font-size: 14px;
  color: #71306c;
  white-space: nowrap;
  font-weight: 600;
}

/* ARROW */
.accordion-arrow i {
  font-size: 16px;
  color: #71306c;
  transition: transform 0.35s ease;
}


.accordion-item.active .accordion-arrow i {
  transform: rotate(180deg);
}

/* BODY */
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
}

/* OPEN BODY */
.accordion-item.active .accordion-body {
  max-height: 500px;
  overflow-y: auto;
}

/* FILE ROW */
.file-row {
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #eef1f7;
}

.file-info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.file-info strong {
  display: block;
  word-break: break-all;
  font-size: 15px;
}

.file-info small {
  font-size: 13px;
  color: #6b7280;
}

.file-icon {
  font-size: 22px;
}

.excel {
  color: #16a34a;
}
.pdf {
  color: #dc2626;
}
.doc {
  color: #71306c;
}
.image {
  color: #71306c;
}

/* BUTTON */
.download-btn {
  background: #71306c;
  border: none;
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  width: fit-content;
  text-align: left;
}

.download-btn:hover {
  background: #71306c;
}
.folder-icon {
  transition: color 0.3s ease;
}

.accordion-item.active .folder-icon {
  color: #f4c430; /* optional active color */
}

/* tab menu section css end  */

/* Product of the week section css start*/

.product-week .product-card {
  display: block; /* override bootstrap row flex */
}

/* Image column becomes floated */
.product-week .product-card .col-md-6:first-child {
  float: left;
  /* width: 45%; */
  margin-right: 30px;
  margin-top: 0;
}

/* Content column becomes full width */
.product-week .product-card .col-md-6:last-child {
  width: 100%;
}

/* Clear float after content */
.product-week .product-card::after {
  content: "";
  display: block;
  clear: both;
}

.product-card {
  background: #ffffff;
  border-radius: 16px;
}

.product-image img {
  height: auto;
  width: 100%;
  object-fit: cover;
}

.product-badge {
  background: #71306c;
  color: #fff;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
}

.product-title {
  font-size: 26px;
  font-weight: 700;
}

.product-desc {
  font-size: 16px;
  color: #555;
}

/* Product of the week section css end */

/* =============================================================================== */
/* Search result page css here */
/* ================================================================================== */
.search-shout-card{
      border: 1px solid #dddddd;
    padding: 10px;
    border-radius: 10px;
}
.search-staff-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 0px;
  flex-shrink: 0;
}
/* document section css start */
.document-table {
  white-space: nowrap;
}
.document-table tbody#documentsList tr td strong {
  word-break: break-word;
  overflow-wrap: anywhere;
  white-space: normal;
  font-weight: normal;
}
.document-tabs{
    flex-wrap: nowrap;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    display: flex;
}
@media (max-width: 991px) {
  table thead {
    display: none;
  }

  table,
  table tbody,
  table tr,
  table td {
    display: block;
    width: 100%;
  }

  table tr {
    margin-bottom: 1rem;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 10px;
    background: #fff;
  }

  table td {
    display: flex;
    justify-content: space-between;
    padding: 6px 10px;
    border: none;
    border-bottom: 1px solid #eee;
  }

  table td:last-child {
    border-bottom: none;
  }

  table td::before {
    content: attr(data-label);
    font-weight: 600;
    color: #6c757d;
  }

  .text-end {
    text-align: left !important;
  }
  .document-table tbody#documentsList tr td strong {
    padding-left: 20px;
  }
}
/* document section css end */
/* News Search result css start here */
.card-search-body{
  padding: 10px 20px;
}
.card-text {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-height: 1.5;
}
.news-search-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* News search result end here */
/* events section css start */
.event-card {
  word-break: break-word;
  overflow-wrap: anywhere;
  white-space: normal;
  font-weight: normal;
}
/* events section css End */
/* Footer Css Start Here */
.footer {
  background: radial-gradient(
    circle at top,
    #121c2d 0%,
    #71306c 45%,
    #0b1220 100%
  );
  color: #b9c3d0;
  /* padding: 70px 0 0px 0px; */
  font-size: 15px;
}
.footer a {
  color: #b9c3d0;
  text-decoration: none;
  transition: 0.3s;
}

.footer a:hover {
  color: #ffffff;
}

.footer h5 {
  color: #ffffff;
  margin-bottom: 25px;
  font-weight: 600;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo span {
  background: #71306c;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
}

.footer ul {
  padding: 0;
  list-style: none;
}

.footer ul li {
  margin-bottom: 12px;
}

.footer ul li i {
  margin-right: 8px;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-contact i {
  color: #ffffff;
  font-size: 18px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 40px;
}
.footer-bottom ul {
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-bottom a {
  margin-left: 25px;
}
/* Footer Css End Here */

/* ================= MOBILE ================= */
@media (min-width: 1200px) {
  .shortcut-row > div {
    flex: 0 0 130px;
    max-width: 130px;
    box-sizing: content-box;
  }
}
@media (max-width: 1024px) {
 .tag {
    font-size: 11px !important;
  }
}
@media (max-width: 991px) {
  .container,
  .container-sm,
  .container-md,
  .container-lg {
    max-width: 100% !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .navbar-collapse {
    display: none !important;
  }
  .hero {
    padding-top: 100px;
  }
  .hero-content {
    padding-top: 50px;
  }
  #mobileMenu {
    z-index: 99999;
  }
  .event-item {
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .file-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .download-btn {
    align-self: stretch;
    text-align: center;
  }
  .events-scroll {
    max-height: 420px;
  }
  .category-select {
    width: 100%;
    font-size: 14px;
  }
  .meta {
    gap: 10px;
    font-size: 12px;
  }

  .meta-item img {
    width: 14px;
    height: 14px;
  }
  .icon-box {
    width: 120px;
    height: 120px;
    font-size: 22px;
  }
  .news-card img {
    max-height: 100%;
  }
}
@media (max-width: 600px) {
  .file-row {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 767px) {
   .search-staff-img {
    height: 350px !important; 
  }
  .staff-img {
    height: 250px !important;
  }
  .product-card {
    grid-template-columns: auto;
  }
  .product-image img {
    max-height: 400px;
    object-fit: cover;
  }
  .product-badge {
    margin-top: 20px;
  }
  .discover-title {
    font-size: 36px;
  }
  .discover-subtitle {
    font-size: 24px;
  }
  .footer-bottom p {
    text-align: center;
    margin-bottom: 12px;
  }
.footer-bottom ul {
    gap: 20px;
}

}
@media (max-width: 576px) {
  .calendar-card,
  .events-card {
    padding: 10px;
  }
  .navbar-brand img {
    height: 30px !important;
  }
  .calendar-days span {
    font-size: 12px;
    padding: 6px;
  }
  .value {
    font-size: 28px;
  }

  .calendar-header h3 {
    font-size: 16px;
  }
  .container,
  .container-sm {
    max-width: unset;
  }
  .category-select-wrapper {
    min-width: auto;
  }
  .team-inner {
    height: 340px;
  }
  .section-title h1 {
    font-size: 32px;
    letter-spacing: 2px;
  }
}
@media (max-width: 480px) {
  .fc-col-header-cell-cushion {
    font-size: 11px;
  }

  .fc-daygrid-day-number {
    font-size: 11px;
  }

  .fc-daygrid-event {
    font-size: 10px !important;
    padding: 3px !important;
  }
  .tab-prev {
    position: absolute;
    left: 10px;
    right: auto;
  }
  .tab-next {
    position: absolute;
    right: 10px;
    left: auto;
  }
  .icon-box {
    width: 120px;
    height: 120px;
    font-size: 20px;
  }
  .calendar-dates .date {
    border-radius: 3px;
    padding: 0px;
  }
  .folder-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .file-name {
    font-size: 13px;
  }
  
}
@media (max-width: 375px) {
  .footer-bottom ul {
    gap: 5px;
    margin-top: 20px;
  }
  .damira-logo-white {
    display: block;
    width: 100%;
  }
 
}

.key-system-section .links-card{
    border:1px solid #eee;
    border-radius:8px;
    padding:10px;
    transition:0.3s;
    background:#fff;
}

.key-system-section .links-card:hover{
    box-shadow:0 4px 12px rgba(0,0,0,0.08);
    transform:translateY(-2px);
}

.key-system-section .link-item{
    display:flex;
    align-items:center;
    text-decoration:none;
    color:#333;
}

.key-system-section .link-icon{
    width:80px;
    height:80px;
    object-fit:cover;
    border-radius: 8px;
    margin-right:10px;
}

.key-system-section .link-title{
    font-size:14px;
    font-weight:500;
}
#document-list-section {
    overflow-y: auto;
    max-height: 500px;
}
#document-list-section table thead{
     position: sticky;
    top: 0;
}
/*================= Ticket page css start here ========================*/
.support-ticket-section {
    padding-top: 20px;
    padding-bottom: 40px;
}

.ticket-form-card {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.ticket-form-header h4 {
    color: #1f1f1f;
}

.ticket-form-header p {
    font-size: 15px;
}

.ticket-form-card .form-label {
    color: #222;
    margin-bottom: 8px;
}

.ticket-form-card .form-control,
.ticket-form-card .form-select {
    min-height: 50px;
    border-radius: 12px;
    border: 1px solid #dcdfe4;
    box-shadow: none;
    padding: 12px 16px;
    font-size: 15px;
}

.ticket-form-card textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.ticket-form-card .form-control:focus,
.ticket-form-card .form-select:focus {
    border-color: #71306c;
    box-shadow: 0 0 0 0.2rem rgba(111, 66, 193, 0.12);
}

.submit-ticket-btn {
    background: #71306c;
    border-color: #71306c;
    min-height: 48px;
    border-radius: 12px;
    font-weight: 600;
}

.submit-ticket-btn:hover {
    background: #5c36a4;
    border-color: #5c36a4;
}
.priority-radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.priority-radio {
    flex: 1 1 calc(33.333% - 8px);
    min-width: 140px;
    margin: 0;
    padding: 12px 14px;
    border: 1px solid #dcdfe4;
    border-radius: 12px;
    background: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.priority-radio .form-check-input {
    margin: 0;
    float: none;
    flex-shrink: 0;
}

.priority-radio .form-check-label {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    color: #222;
    cursor: pointer;
}
.reset-btn {
    min-height: 48px;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    background-color: transparent;
    color: #71306c;
    border: 1px solid #71306c;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.submit-ticket-btn {
    min-height: 48px;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    background-color: #71306c;
    color: #fff;
    border: 1px solid #71306c;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.submit-ticket-btn:hover,
.submit-ticket-btn:focus,
.submit-ticket-btn:active {
    background-color: #5d2859 !important;
    border-color: #5d2859 !important;
    color: #fff !important;
    box-shadow: none;
}
.form-check-input:checked {
    background-color: #5d2859;
    border-color: #5d2859;
}
.attachment-upload-wrapper {
    width: 100%;
}

.attachment-input {
    min-height: 52px;
    border-radius: 12px;
    border: 1px solid #dcdfe4;
    padding: 12px 16px;
    font-size: 15px;
    box-shadow: none;
}

.attachment-input:focus {
    border-color: #71306c;
    box-shadow: 0 0 0 0.15rem rgba(113, 48, 108, 0.12);
}

.attachment-preview-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.attachment-preview-item {
    position: relative;
    border: 1px solid #e4e7ec;
    border-radius: 14px;
    background: #fff;
    overflow: hidden;
    padding: 10px;
    min-height: 130px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.attachment-thumb {
    width: 100%;
    height: 90px;
    border-radius: 10px;
    object-fit: cover;
    background: #f8f9fb;
    border: 1px solid #eef1f4;
}

.attachment-file-icon {
    width: 100%;
    height: 90px;
    border-radius: 10px;
    background: #f8f9fb;
    border: 1px dashed #d6dbe1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #71306c;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
}

.attachment-file-name {
    font-size: 13px;
    line-height: 1.4;
    color: #222;
    margin-top: 10px;
    word-break: break-word;
}

.attachment-file-size {
    font-size: 12px;
    color: #6c757d;
    margin-top: 4px;
}

.attachment-remove-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    border: none;
    border-radius: 50%;
    background: rgba(17, 17, 17, 0.75);
    color: #fff;
    font-size: 16px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s ease;
}

.attachment-remove-btn:hover {
    background: #71306c;
}

.link-list {
  width: 100%;
}

.link-list a {
  display: block;
  width: 100%;
  background: #fff;
  color: #71306c;
  text-decoration: none;
  padding: 16px 20px;
  margin-bottom: 12px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  font-size: 15px;
  font-weight: 500;
  word-break: break-all;
  transition: all 0.25s ease;
}

.link-list a:hover {
  color: #fff;
  background: #854879;
  border-color: #854879;
  box-shadow: 0 8px 20px rgba(133, 72, 121, 0.25);
}

@media (max-width: 575px) {
  .link-list a {
    padding: 14px 15px;
    font-size: 14px;
  }
}

@media (max-width: 991.98px) {
    .attachment-preview-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .priority-radio {
        flex: 1 1 calc(50% - 6px);
    }
     .attachment-preview-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 575.98px) {
    .priority-radio-group {
        flex-direction: column;
        gap: 10px;
    }

    .priority-radio {
        flex: 1 1 100%;
        width: 100%;
        min-width: 100%;
    }
       .reset-btn,
    .submit-ticket-btn {
        width: 100%;
    }
    .attachment-preview-grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .attachment-preview-item {
        min-height: auto;
    }

    .attachment-thumb,
    .attachment-file-icon {
        height: 140px;
    }
}
/* 
.dentisrty-links-data{
    max-height: 300px;
    overflow-y: auto;
} */
.hub-tabs {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  margin-top: 30px;
  margin-bottom: 30px;
  box-shadow: 0 10px 24px rgba(40, 18, 60, 0.04);
}

.hub-tabs::-webkit-scrollbar {
  height: 6px;
}

.hub-tabs::-webkit-scrollbar-thumb {
  background: #dac9e8;
  border-radius: 20px;
}

.tab-link {
  white-space: nowrap;
  border: 0;
  background: transparent;
  color: #5e5668;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 9px;
  text-decoration: none;
  transition: 0.2s ease;
}

.tab-link:hover,
.tab-link.active {
  background: var(--primary);
  color: #fff;
}

.section-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  margin-bottom: 28px;
  box-shadow: 0 14px 32px rgba(45, 25, 70, 0.045);
}
.dentisrty-image-div img{
  border-radius: 6px;
}
.guidance-item {
  border: 1px solid var(--border);
  border-radius: 13px;
  padding: 15px;
  margin-bottom: 12px;
  display: flex;
  gap: 14px;
  word-break: break-word;
  align-items: center;
}

.guidance-item h6 {
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 4px;
  color:#71306c;
}

.guidance-item p {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
}

.radio-player {
  background: linear-gradient(135deg, #4c007d, #b000e8);
  color: #fff;
  border-radius: 18px;
  padding: 24px;
  height: 100%;
}

.play-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 24px;
  display: grid;
  place-items: center;
}

.radio-list-item {
  border: 1px solid var(--border);
  border-radius: 13px;
  padding: 14px 16px;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.radio-list-item h6 {
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 4px;
}

.radio-list-item p {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
}

.pill-btn {
  border: 0;
  background: var(--primary-soft);
  color: var(--primary);
  padding: 6px 13px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}