@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
  margin: 0;
  padding: 0;
}



ul {
  list-style: none;
}

body {
  background: #000 !important;
  font-family: "Inter", sans-serif;
}

.bg-vector {
  background-image: url("https://cosmicwebsolution.shop/visualdepot/assets/img/Vectorbg.png");
  background-repeat: no-repeat;
  background-position: top;
}


p {
  margin-top: 0;
  margin-bottom: 0;
}

/*navbar*/
/* ===== NAVBAR BASE ===== */
/* Navbar */
.custom-navbar {
  z-index: 1000;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.95) 0%, rgba(20, 20, 20, 0.95) 17%, rgba(80, 80, 80, 0.95) 35%, rgba(160, 160, 160, 0.95) 50%, rgba(80, 80, 80, 0.95) 60%, rgba(20, 20, 20, 0.95) 82%, rgba(0, 0, 0, 0.95) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);

}

/* Links */
.nav-link {
  color: #fff !important;
  margin-right: 25px;
  font-size: 16px;
}

.nav-link:hover {
  color: #fff !important;
}

/* Login */
.login-btn {
  border: solid 1px #fff;
  color: #fff;
  border-radius: 20px;
  padding: 6px 18px;
}

.login-btn:hover {
  border: solid 1px #fff;
  color: #fff;
  border-radius: 20px;
  padding: 6px 18px;
}



/* Hamburger */
.navbar-toggler {
  border: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: none;
  width: 26px;
  height: 2px;
  background: #fff;
  position: relative;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: "";
  position: absolute;
  width: 26px;
  height: 2px;
  background: #fff;
  left: 0;
}

.navbar-toggler-icon::before {
  top: -7px;
}

.navbar-toggler-icon::after {
  top: 7px;
}





/* Navbar Background */


/* Hero Section Padding */


.hero-section {
  padding-top: 120px;
  /* IMPORTANT: navbar height space */
}

/* Optional: navbar text colors */
.nav-link {
  color: #fff !important;
}

.nav-link:hover {
  color: #fff !important;
}



/* Overlay Navbar */
.overlay-nav {
  position: absolute;
  /* overlap hero */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}


/* Hero Background */


.hero-section {
  min-height: 520px;
  /* display: flex; */
  align-items: center;
  background:
    /* radial-gradient(circle at top,
      rgba(255, 255, 255, 0.18) 0%,
      rgba(0, 0, 0, 0.9) 55%), */
    url("https://cosmicwebsolution.shop/visualdepot/assets/img/bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
}

/* Content */
.hero-content h1 {
  color: #fff;
  font-size: 48px;
  font-weight: 700;
}

.hero-content h1 span {
  font-weight: 600;
}

.subtitle {
  color: #bfbfbf;
  margin-top: 10px;
  font-size: 20px;
}

/* Search Bar */
.search-box {
  margin: 30px auto 18px;
  max-width: 720px;
  background: #fff;
  border-radius: 30px;
  display: flex;
  align-items: center;
  padding: 6px;
}

.home-form input,
.home-form textarea,
.home-form select {
  background: #ffffff;
  color: #000;
}

.home-form input::placeholder,
.home-form textarea::placeholder {
  color: #666;
}


.search-left {
  display: flex;
  align-items: center;
  flex: 1;
  padding-left: 16px;
}

.search-left .type {
  font-size: 13px;
  font-weight: 600;
  color: #555;
  margin-right: 12px;
  position: relative;
}

.search-left .type::after {
  content: "";
  height: 18px;
  width: 1px;
  background: #ddd;
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
}

.search-left input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 14px;
  padding-left: 12px;
}



/* SEARCH BOX */
.search-box {
  max-width: 760px;
  margin: 30px auto 18px;
  background: #fff;
  border-radius: 40px;
  display: flex;
  align-items: center;
  padding: 6px;
  position: relative;
}

/* TYPE DROPDOWN */
.search-type {
  position: relative;
}

.type-btn {
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  font-size: 14px;
  color: #555;
  cursor: pointer;
}

.type-btn img {
  width: 16px;
  height: 16px;
}

.arrow {
  font-size: 12px;
}

/* Divider */
.search-type::after {
  content: "";
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 22px;
  background: #ddd;
}

/* DROPDOWN */
.type-dropdown {
  list-style: none;
  margin: 0;
  padding: 6px 0;
  position: absolute;
  top: 46px;
  left: 0;
  width: 150px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
  display: none;
  z-index: 50;
}

.type-dropdown {
  display: none;
}

.type-dropdown.show {
  display: block;
}


.type-dropdown li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  font-size: 13px;
  color: #333;
  text-decoration: none;
}

/* .type-dropdown li a:hover {
  background: #f5f5f5;
} */

.type-dropdown img {
  width: 16px;
  height: 16px;
}

/* INPUT */
.search-box input {
  flex: 1;
  border: none;
  outline: none;
  padding: 10px 16px;
  font-size: 14px;
}

/* SEARCH BUTTON */
.search-btn {
  background: #f5a623;
  border: none;
  width: 60px;
  height: 40px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-btn img {
  width: 16px;
  height: 16px;
}


/* Tabs */
.hero-tabs {
  margin-top: 14px;
}

.hero-tabs a {
  color: #bfbfbf;
  font-size: 12px;
  margin: 0 10px;
  text-decoration: underline;
  letter-spacing: 1px;
}

.hero-tabs a.active,
.hero-tabs a:hover {
  color: #fff;
  text-decoration: underline;
}


/* tab section */


.visual-collection-section {
  color: #fff;
}

/* .visual-title {
  font-size: 38px;
  font-weight: 600;
} */

.filter-bar {
  background: transparent;
}

/* Photos / Videos Toggle */
.filter-toggle .btn {
  border-radius: 25px;
  padding: 8px 18px;
  border: 1px solid #333;
  color: #aaa;
}

.filter-toggle .btn.active {
  background: linear-gradient(135deg, #ff9800, #ffc107);
  color: #000;
  border: none;
}

/* Filter Buttons */
.filter-btn {
  background: #111;
  border: 1px solid #333;
  color: #ddd;
  border-radius: 25px;
  padding: 8px 18px;
}

.filter-dropdown.active .filter-btn {
  border-color: #ff9800;
  color: #ff9800;
}

/* Dropdown menu */
.dropdown-menu {
  background: #111;
  border: 1px solid #333;
}

.dropdown-item {
  color: #ccc;
  font-size: 14px;
}

.dropdown-item:hover {
  background: #222;
  color: #fff;
}

/* Clear Filters */
.clear-filters {
  color: #ff3b3b;
  text-decoration: none;
  font-weight: 500;
}

.clear-filters:hover {
  text-decoration: underline;
}

.media-toggle {
  background: #111;
  border-radius: 30px;
  padding: 4px;
  border: 1px solid #333;
}

.media-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: transparent;
  border: none;
  border-radius: 25px;
  color: #999;
  cursor: pointer;
  transition: all 0.3s ease;
}

.media-btn svg path {
  stroke: #727272;
  transition: stroke 0.3s ease;
}

.media-btn.active {
  background: #F59E0B;
  ;
  color: #fff;
}

.media-btn.active svg path {
  stroke: #fff;
}

.media-btn:hover:not(.active) {
  color: #fff;
}

.media-btn:hover:not(.active) svg path {
  stroke: #fff;
}

.media-btn {
  display: flex;
  align-items: center;
  /* 🔥 vertical center */
  gap: 8px;
  padding: 10px 20px;
  /* 🔥 thoda extra top-bottom */
  line-height: 1;
  /* 🔥 SVG cut fix */
}

.media-btn .icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.frame-rate-dropdown {
  min-width: 200px;
  background: linear-gradient(180deg, #1a1f25, #12161c);
  border: 1px solid #2c3138;
  border-radius: 12px;
}

/* checkbox row */
.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 4px;
  font-size: 14px;
  color: #cfd3da;
  cursor: pointer;
}

/* hide default checkbox */
.check-item input {
  display: none;
}

/* custom checkbox */
.custom-check {
  width: 16px;
  height: 16px;
  border: 1.5px solid #3a3f46;
  border-radius: 4px;
  position: relative;
  background: transparent;
}

/* checked state */
.check-item input:checked+.custom-check {
  background: #ffb300;
  border-color: #ffb300;
}

.check-item input:checked+.custom-check::after {
  content: "✓";
  position: absolute;
  color: #000;
  font-size: 12px;
  left: 3px;
  top: -1px;
  font-weight: 700;
}

/* hover */
.check-item:hover {
  color: #fff;
}


/* masonary gallery */

/* ===== Masonry Wrapper ===== */
.visual-masonry {
  background: #000;
  height: 500px;
  overflow: hidden;
  overflow-y: scroll;
}

.visual-masonry {
  background: #000;
  height: 800px;
  overflow-y: auto;

  /* Firefox */
  scrollbar-width: thin;
  scrollbar-color: #444 #0a0a0a;
}

/* ===== Chrome, Edge, Safari ===== */
.visual-masonry::-webkit-scrollbar {
  width: 8px;
}

.visual-masonry::-webkit-scrollbar-track {
  background: #0a0a0a;
  border-radius: 10px;
}

.visual-masonry::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #555, #222);
  border-radius: 10px;
  border: 1px solid #111;
}

.visual-masonry::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #777, #333);
}


/* ===== Masonry Grid ===== */
.masonry-grid {
  column-count: 4;
  column-gap: 16px;
}

/* ===== Masonry Item ===== */
.masonry-item {
  position: relative;
  margin-bottom: 16px;
  break-inside: avoid;
  border-radius: 14px;
  overflow: hidden;
  background: #111;
}

/* ===== Images & Videos ===== */
.masonry-item img,
.masonry-item video {
  width: 100%;
  height: auto;
  /* 🔥 original aspect ratio */
  display: block;
  object-fit: cover;
}

/* ===== Video Fix ===== */
.masonry-item video {
  background: #000;
}

/* ===== Top Badge ===== */
.badge-top {
  position: absolute;
  top: 10px;
  left: 10px;

  color: #fff;
  font-size: 12px;
  font-weight: 500;

  padding: 6px 16px;
  border-radius: 999px;

  background: linear-gradient(90deg,
      rgba(0, 0, 0, 0.65) 0%,
      rgba(0, 0, 0, 0.65) 70%,
      rgba(245, 158, 11, 0.24) 100%);

  border: 1px solid rgba(245, 158, 11, 0.10);

  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  z-index: 2;
  pointer-events: none;
}


/* ===== Hover Effect (Optional but Premium) ===== */
.masonry-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.masonry-item:hover::after {
  opacity: 1;
}

/* featurebox */




.feature-box {
  padding: 20px;
}

.icon-box {
  width: 48px;
  height: 48px;
  background: #f5a623;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.feature-box h5 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 8px;
}

.feature-box p {
  color: #aaa;
  font-size: 14px;
  line-height: 1.6;
  max-width: 360px;
  margin: 0 auto;
}


/* categories */

.categories-section {
  border-top: 2px solid rgba(255, 255, 255, 0.08);
  border-bottom: 2px solid rgba(255, 255, 255, 0.08);
}

.categories-title {
  color: #fff;
  font-weight: 600;
  font-size: 32px;
}

.categories-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 19px 36px;
  margin: 0 auto;
}

.categories-list a {
  color: #cfcfcf;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  transition: all 0.3s ease;
}

.categories-list a:hover {
  color: #f5a623;
  border-color: #f5a623;
}

.categories-list .view-all {
  color: #fff;
  border-color: #fff;
}


/* @media (max-width: 576px){
  .categories-title{
    font-size: 26px;
  }
  .categories-list{
    gap: 14px 18px;
  }
} */


/* footer */



.vd-footer {
  color: #aaa;
  font-size: 14px;
  background-color: #1c1c1c;
  border-top: 1px solid #3b3b3b;
}

.vd-logo {
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
}

.vd-logo span {
  color: #f5a623;
}

.vd-desc {
  max-width: 420px;
  line-height: 1.6;
  margin-top: 12px;
}

.vd-footer h6 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 14px;
}

.vd-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vd-footer ul li {
  margin-bottom: 10px;
}

.vd-footer ul li a {
  color: #aaa;
  text-decoration: none;
  transition: color .3s ease;
}

.vd-footer ul li a:hover {
  color: #fff;
}

.support-email {
  color: #aaa;
  margin-top: 5px;
}

hr {
  border-color: rgb(255 255 255 / 54%);
}

.social-icons a {
  color: #aaa;
  margin-left: 14px;
  text-decoration: none;
  font-weight: 500;
}

.social-icons a:hover {
  color: #fff;
}

.copyright {
  font-size: 13px;
  color: #777;
}

/* Mobile */
/* @media (max-width: 768px){
  .vd-desc{
    max-width: 100%;
  }
  .social-icons a{
    margin: 0 8px;
  }
} */



/* pricing page */

.pricing {
  padding-top: 50px;
}

.pricing-section {
  color: #fff;
}

.badge {
  display: inline-block;
  padding: 10px 22px;
  font-size: 13px;
  color: #fff;
  border-radius: 999px;

  background:
    linear-gradient(#0f0f0f, #0f0f0f) padding-box,
    linear-gradient(90deg, #ffb000, #ff7a00) border-box;

  border: 1px solid transparent;

  box-shadow:
    0 0 20px rgba(255, 170, 0, 0.35),
    inset 0 0 12px rgba(255, 170, 0, 0.15);

  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}


.pricing-title {
  font-size: 48px;
  font-weight: 700;
}

.pricing-sub {
  max-width: 650px;
  margin: auto;
  opacity: .8;
  font-size: 16px;
}

/* .pricing-tabs .nav-link {
  background: #1f1f1f;
  color: #aaa;
  border-radius: 30px;
  padding: 10px 25px;
  margin: 0 6px;
}

.pricing-tabs .nav-link.active {
  background: linear-gradient(135deg, #ffb000, #ff7a00);
  color: #000;
} */

.pricing-card {
  background: #111;
  border-radius: 18px;
  padding: 30px;
  text-align: left;
  height: 100%;
}

/* .pricing-card.active {
  background: linear-gradient(180deg, #2b1a00, #140c00);
  box-shadow: 0 0 40px rgba(255, 170, 0, .35);
} */

.pricing-card.active {
  background: radial-gradient(120% 120% at 50% 0%,
      #6a4300 0%,
      #2b1a00 38%,
      #140c00 68%,
      #000 100%);

  border: 1px solid rgba(255, 180, 60, 0.35);

  /* box-shadow:
        inset 0 0 35px rgba(255, 180, 60, 0.15),
        0 0 40px rgba(255, 170, 0, 0.35); */
}

/* .pricing-card.active::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 3px 0 rgba(255, 190, 80, 0.55);
  pointer-events: none;
} */

.starter-btnactive {
  display: inline-block;
  width: 100%;
  padding: 12px 15px;
  text-align: center;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  border-radius: 50px;
  margin-top: 10px;
  margin-bottom: 30px;
  background: #F59E0B;
  border: 1px solid #fff;
  transition: all 0.3s ease;
}


.pricing-card h3 {
  font-size: 48px;
  margin: 30px 0;
}

.pricing-card h5 {
  font-size: 32px;

}

.pricing-card h6 {
  font-size: 20px;
  margin-bottom: 35px;
}

.hdimg {
  font-size: 15px;

}

.quality {
  margin-bottom: 30px;
}

.quality h5 {
  font-size: 32px !important;
  font-weight: 600;
  margin-top: 30px;
}

.pricing-card h3 span {
  font-size: 14px;
  opacity: .7;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.pricing-card ul li {
  margin-bottom: 10px;
  font-size: 14px;
  opacity: .85;
}

.pricing-tabs {
  background: #0f0f0f;
  padding: 6px;
  border-radius: 999px;
  display: inline-flex;
  box-shadow:
    inset 0 0 12px rgba(255, 255, 255, 0.06),
    0 0 25px rgba(0, 0, 0, 0.8);
}

.pricing-tabs .nav-item {
  margin: 0;
}

.pricing-tabs .nav-link {
  border-radius: 999px;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  background: transparent;
  border: none;
  transition: all 0.35s ease;
}

/* ACTIVE TAB */
.pricing-tabs .nav-link.active {
  background: #F59E0B;
  color: #fff;
  /* box-shadow:
    0 0 25px rgba(245, 158, 11, 0.55),
    inset 0 -2px 6px rgba(0, 0, 0, 0.25); */
}

/* Hover (inactive only) */
.pricing-tabs .nav-link:not(.active):hover {
  color: #F59E0B;
}

.starter-btn {
  display: inline-block;
  width: 100%;
  padding: 12px 15px;
  text-align: center;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  border-radius: 50px;
  margin-top: 10px;
  margin-bottom: 30px;

  /* dark gradient */
  background: linear-gradient(180deg,
      #2a2a2a 0%,
      #0f0f0f 100%);

  /* inner + outer glow */
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.15),
    0 8px 20px rgba(0, 0, 0, 0.6);

  border: 1px solid rgba(255, 255, 255, 0.049);
  transition: all 0.3s ease;
}

.starter-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.25),
    0 12px 30px rgba(0, 0, 0, 0.8);
}

.starter-btn:active {
  transform: translateY(0);
  box-shadow:
    inset 0 2px 4px rgba(0, 0, 0, 0.6);
}

.downloadevery {
  margin-top: 20px;
}

.downloadevery p {
  font-size: 16px;
  color: #8e8e8e;
}


/* categorypage */

/* .categories-section {
  background: radial-gradient(circle at top, #1c1407, #000);
} */

.category-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 250px;
  cursor: pointer;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .7), rgba(0, 0, 0, .1));
}

.category-title {
  position: absolute;
  left: 16px;
  bottom: 14px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  z-index: 2;
}

.category-card:hover img {
  transform: scale(1.05);
  transition: 0.4s ease;
}

/* profile header sidebar */


/* Sidebar */
.sidebar {
  width: 280px;
  min-height: 100vh;
  border-right: 1px solid rgb(255 255 255 / 23%);
}

/* Logo */
.sidebar-logo {
  padding: 30px 25px;
}

.sidebar-logo img {
  max-width: 170px;
}

/* Menu */
.sidebar-menu {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.sidebar-menu li {
  margin-bottom: 8px;
}

.sidebar-menu a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 25px;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  position: relative;
  transition: all 0.3s ease;
}

/* SVG Icons (IMPORTANT) */
.sidebar-menu svg {
  width: 24px;
  height: 24px;
  color: inherit;
  flex-shrink: 0;
}

/* ===== ACTIVE + HOVER (SAME DESIGN) ===== */
.sidebar-menu li.active a,
.sidebar-menu li a:hover {
  background: linear-gradient(90deg,
      rgba(255, 180, 0, 0.25),
      rgba(255, 180, 0, 0.05));
  color: #ffb400;
}

/* Left Border (Active + Hover) */
.sidebar-menu li.active a::before,
.sidebar-menu li a:hover::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: #ffb400;
}

/* ===== LOGOUT (RED SAME AS IMAGE) ===== */
.sidebar-menu li.logout a {
  color: #ff3b3b;
}

.sidebar-menu li.logout a:hover {
  background: transparent;
  color: #ff3b3b;
}

.sidebar-menu li.logout a::before {
  display: none;
}

.sidebar-menu li.logout svg {
  color: #ff3b3b;
}


/* subscription area */

.subscription-area {
  flex: 1;
  padding: 30px;
}

/* Titles */
.page-title {
  text-align: center;
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #fff;
}

.page-subtitle {
  text-align: center;
  color: #fff;
  margin-bottom: 50px;
}

/* Layout */
.subscription-wrapper {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: center;
}

/* Plan Card */
.plan-card {
  width: 420px;
  padding: 50px;
  border-radius: 18px;
  background: radial-gradient(120% 120% at 50% 0%,
      #6a4300 0%,
      #2b1a00 38%,
      #140c00 68%,
      #000 100%);

  border: solid 1px #754d08;

}

.plan-card h4 {
  margin: 0;
  font-size: 20px;
  color: #fff;
}

.plan-desc {
  font-size: 15px;
  color: #bbb;
  margin: 8px 0 40px;
}

.price {
  font-size: 48px;
  font-weight: 600;
  color: #fff;
}

.price span {
  font-size: 15px;
  color: #fff;
  font-weight: 400;
}

/* Button */
.plan-btn {
  width: 100%;
  margin-top: 40px;
  padding: 12px;
  border-radius: 30px;
  border: none;
  background: linear-gradient(90deg, #ffb400, #ff9900);
  font-weight: 600;
  cursor: pointer;
}

/* Stats */
.stats-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 38px 30px;
  border-radius: 28px;
  background: linear-gradient(135deg,
      #2a2a2a 0%,
      #0f0f0f 45%,
      #000000 100%);

  color: #fff;
  box-shadow:
    inset 0 0 40px rgba(255, 255, 255, 0.05),
    0 15px 40px rgba(0, 0, 0, 0.6);
  max-width: 520px;
}

.icon-circle {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-card p {
  font-size: 20px;
  color: #aaa;
  margin: 0;
}

.stat-card h3 {
  font-size: 48px;
  margin: 6px 0 0;
}

.stat-card h3 span {
  font-size: 13px;
  color: #888;
}

/* Footer text */
.plan-duration {
  text-align: center;
  margin-top: 40px;
  color: #bbb;
}

.plan-duration span {
  color: #888;
}


.dashboard-layout {
  display: flex;
  min-height: 100vh;
  background: #000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  ;
}

/* Sidebar fixed width */
.sidebar {
  width: 280px;
  flex-shrink: 0;
}

/* Right section */
/* .content-area {
  flex: 1;
  display: flex;
  justify-content: center;

  align-items: flex-start;
  
  padding: 30px 40px;
} */

.subscription-area {
  max-width: 100%;
  margin: 0 auto;
}

.dashboard-layout {
  display: flex;
  min-height: 100vh;
}

/* Sidebar */
.sidebar {
  width: 280px;
  flex-shrink: 0;
}

/* RIGHT SIDE FULL AREA */
.right-wrapper {
  flex: 1;
  justify-content: center;
  /* 🔥 ACTUAL CENTER */
}

/* Content section */
.content-area {
  width: 100%;
  max-width: 1200px;
  /* screenshot jaisa */
  padding: 30px 40px;
}

.jan {
  color: #fff;
}


/* contact page */

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  background: #242424;
  border: none;
  padding: 14px 16px;
  color: #fff;
  border-radius: 12px;
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #7a7a7a;
}

/* SUCCESS BOX */
.success-box {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.success-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid #f5b301;
  color: #f5b301;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 20px;
}

.success-box p {
  font-size: 18px;
  line-height: 1.4;
}


body {
  margin: 0;
  font-family: system-ui, sans-serif;
}

/* Background */
/* .contact-wrapper {
  min-height: 100vh;
  background: radial-gradient(circle at top, #3a2d0a 0%, #000 60%);
} */

/* Card */
.contact-box {
  width: 100%;
  max-width: 484px;
  padding: 20px 17px;
  border-radius: 28px;
  /* background: radial-gradient(140% 90% at 50% -30%, rgb(246 195 114 / 72%) 0%, rgba(255, 180, 60, 0.22) 28%, rgb(23 23 23 / 88%) 62%, rgb(18 18 18 / 88%) 100%); */
  background: radial-gradient(110% 127% at 50% -20%, rgb(246 195 114 / 78%) -60%, rgba(255, 180, 60, 0.22) 22%, rgb(21 21 21 / 75%) 63%, rgb(16 16 16 / 71%) 100%);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  /* box-shadow: 0 40px 90px rgba(0, 0, 0, .9), 0 0 80px rgba(255, 170, 0, .18), inset 0 1px 1px rgba(255, 255, 255, .08); */
  margin-top: 100px;
  margin-bottom: 50px;
}

/* Title */
.title {
  text-align: center;
  color: #fff;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 24px;
}

.subtitle {
  text-align: center;
  color: #bfbfbf;
  font-size: 20px;
  margin-bottom: 20px;
}

/* Labels */
label {
  display: block;
  color: #a5a5a5;
  font-size: 14px;
  margin-bottom: 8px;
}

/* Inputs */
/* input,
textarea,
select {
  width: 100%;
  background: #242424;
  border: none;
  padding: 14px 16px;
  color: #fff;
  border-radius: 12px;
  outline: none;
} */

input::placeholder,
textarea::placeholder {
  color: #7a7a7a;
}

/* Phone field */
.phone-field {
  display: flex;
  gap: 10px;
}

.phone-field select {
  max-width: 80px;
  appearance: none;
  text-align: center;
}

/* Button */
.submit-btn {
  margin-top: 10px;
  width: 100%;
  padding: 9px;
  border-radius: 40px;
  border: none;
  font-weight: 600;
  background: linear-gradient(90deg, #f59e0b, #ffb703);
}

.submit-btn:hover {
  filter: brightness(1.05);
}



/* login page */



.login-row {
  display: flex;
}

/* LEFT IMAGE */
.left-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* RIGHT PANEL */
.login-panel {
  color: #fff;
  padding: 70px 60px;
  position: relative;
}

/* GRID BACKGROUND */
.login-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: .15;
}

.login-panel>* {
  position: relative;
  z-index: 2;
}

.form-control {
  background: #1C1C1C !important;
  border: none;
  color: #fff;
  height: 50px;
}

.form-control:focus {
  background: #1C1C1C !important;
  color: #fff;
  box-shadow: none;
  outline: 1px solid #f5a623;
}

.btn-login {
  background: #f5a623;
  color: #000;
  height: 52px;
  border-radius: 30px;
}

.google-btn {
  border: 1px solid #ffffff;
  color: #fff;
  height: 52px;
  border-radius: 30px;
}

.google-btn:hover {
  border: 1px solid #ffffff;
}

.divider {
  display: flex;
  align-items: center;
  color: #fff;
  margin: 30px 0;
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #fff;
}

.divider span {
  margin: 0 15px;
}

a {
  color: #f5a623;
  text-decoration: none;
}

.login-panel h1 {
  font-size: 48px;
}

.login-panel p {
  font-size: 16px;
  color: #a5a5a5 !important;
}

.form-control {
  background-color: #1C1C1C !important;
  border: none;
  color: #fff !important;
  height: 50px;
  border-radius: 8px;
}

/* Placeholder color */
.form-control::placeholder {
  color: #777;
}

/* Focus state */
.form-control:focus {
  background-color: #1C1C1C !important;
  color: #fff !important;
  box-shadow: none;
  outline: none;
}

/* Chrome autofill fix */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
  -webkit-text-fill-color: #fff !important;
  -webkit-box-shadow: 0 0 0 1000px #1C1C1C inset !important;
  transition: background-color 5000s ease-in-out 0s;
}

.login-panel .form-control {
  background: #1C1C1C;
  border: none;
  color: #fff;
  height: 50px;
}

/* placeholder */
/* .login-panel .form-control::placeholder {
  color: #777;
} */

/* focus */
/* .login-panel .form-control:focus {
  background: #1C1C1C;
  color: #fff;
  box-shadow: none;
} */







/* pricingpagenew */

.vd-pricing-section {
  color: #fff;
  font-family: Inter, sans-serif;
}

.vd-badge {
  display: inline-block;
  padding: 10px 22px;
  font-size: 13px;
  color: #fff;
  border-radius: 999px;

  background:
    linear-gradient(#0f0f0f, #0f0f0f) padding-box,
    linear-gradient(90deg, #ffb000, #ff7a00) border-box;

  border: 1px solid transparent;

  box-shadow:
    0 0 20px rgba(255, 170, 0, 0.35),
    inset 0 0 12px rgba(255, 170, 0, 0.15);

  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.vd-header {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
  overflow: visible;
  text-align: center;
}

.vd-title {
  display: block;
  width: 100%;
  max-width: 100%;
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
  font-size: 38px;
  line-height: 1.3;
  color: #fff;
}

.vd-desc1 {
  color: #aaa;
  margin: 10px auto 0;
  width: 580px;
}

.vd-tabs {
  display: inline-flex;
  background: #111;
  padding: 6px;
  border-radius: 30px;
}

.vd-tab {
  background: transparent;
  border: 0;
  color: #aaa;
  padding: 8px 18px;
  border-radius: 20px;
}

.vd-tab.active {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  color: #fff;
}

.vd-tab-content {
  display: none;
}

.vd-tab-content.active {
  display: block;
}

.vd-card {
  background: #111;
  border-radius: 20px;
  padding: 35px;
  text-align: left;
  height: 100%;
}

.vd-highlight {
  background: radial-gradient(120% 120% at 50% 0%,
      #6a4300 0%,
      #2b1a00 38%,
      #140c00 68%,
      #000 100%);

  border: 1px solid rgba(255, 180, 60, 0.35);
}

.vd-card h2,
.vd-card h3 {
  font-weight: 600;
  font-size: 48px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.vd-card h5 {
  font-size: 20px;
}

.vd-card h6 {
  font-size: 20px;
}

.vd-card p {
  font-size: 14px;
  color: #fff;
}

.vd-card span {
  color: #fff;
  font-size: 14px;
}

.vd-small {
  color: #aaa;
  font-size: 14px;
}

.vd-card ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.vd-card ul li {
  margin-bottom: 8px;
  font-size: 14px;
}

.vd-btn-fill {
  display: inline-block;
  width: 100%;
  padding: 12px 15px;
  text-align: center;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  border-radius: 50px;
  margin-top: 6px;
  margin-bottom: 30px;
  background: #F59E0B;
  border: 1px solid #fff;
  transition: all 0.3s ease;
}

.vd-btn-outline {
  display: inline-block;
  width: 100%;
  padding: 12px 15px;
  text-align: center;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  border-radius: 50px;
  margin-top: 6px;
  margin-bottom: 30px;

  /* dark gradient */
  background: linear-gradient(180deg,
      #2a2a2a 0%,
      #0f0f0f 100%);

  /* inner + outer glow */
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.15),
    0 8px 20px rgba(0, 0, 0, 0.6);

  border: 1px solid rgba(255, 255, 255, 0.049);
  transition: all 0.3s ease;
}

.willget p {
  font-size: 16px;
  color: #fff;
  margin-top: 30px;
}


.resbusi {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
}


/* Search Result Page */

/* Wrapper */
.biz-search-wrapper {
  max-width: 600px;
}

/* Search Box */
.biz-search-box {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 60px;
  padding: 5px 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}

/* Input */
.biz-search-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 5px 20px;
  font-size: 18px;
  border-radius: 50px;
  background: transparent;
  color: #000;
}

.biz-search-input::placeholder {
  color: #666;
}

.visual-title {
  font-size: 48px !important;
  font-weight: 600 !important;
  color: #fff;
}

/* Clear Button */
.biz-search-clear {
  background: none;
  border: none;
  font-size: 22px;
  color: #888;
  margin-right: 10px;
  cursor: pointer;
}

.biz-search-clear:hover {
  color: #000;
}

/* Search Button */
.biz-search-btn {
  background: #f5a623;
  border: none;
  width: 60px;
  height: 40px;
  border: none;
  border-radius: 30px;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.biz-search-btn:hover {
  transform: scale(1.05);
}

/* profile and billing page */


.vdx-account-wrap {

  min-height: 100vh;
  color: #fff;
}

.vdx-account-box {
  max-width: 760px;
}

.vdx-title {
  font-size: 48px;
  font-weight: 600;
}

.vdx-subtitle {
  font-size: 16px;
  color: #9a9a9a;
}

.vdx-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.vdx-card-head {
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 500;
}

.vdx-card-body {
  padding: 20px;
}

.vdx-label {
  font-size: 16px;
  color: #aaa;
  margin-bottom: 6px;
  display: block;
}

.vdx-input {
  width: 100%;
  background: #1b1b1b;
  border: none;
  border-radius: 10px;
  padding: 12px 14px;
  color: #fff;
}

.vdx-input::placeholder {
  color: #666;
}

.vdx-btn-main {
  background: #f5a623;
  border: none;
  color: #000;
  border-radius: 30px;
  padding: 12px 40px;
  font-weight: 500;
}

.vdx-btn-outline {
  background: transparent;
  border: 1px solid #555;
  color: #fff;
  border-radius: 10px;
  padding: 12px;
}

.vdx-link {
  color: #900000;
  font-size: 14px;
  text-decoration: none;
}

.vdx-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.vdx-arrow {
  width: 10px;
  height: 10px;
  border-right: 2px solid #aaa;
  border-bottom: 2px solid #aaa;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

/* Open state */
.vdx-card-head[aria-expanded="true"] .vdx-arrow {
  transform: rotate(-135deg);
}


.vdx-mobile-group {
  width: 100%;
}

.vdx-mobile-wrap {
  display: flex;
  gap: 12px;
}

.vdx-country-code {
  width: 80px;
  background: #1b1b1b;
  border: none;
  border-radius: 12px;
  padding: 12px;
  color: #fff;
  appearance: none;
  text-align: center;
}

.vdx-mobile-input {
  flex: 1;
  background: #1b1b1b;
  border: none;
  border-radius: 12px;
  padding: 12px 16px;
  color: #fff;
}

.vdx-country-code:focus,
.vdx-mobile-input:focus {
  outline: none;
}

.vdx-mobile-input::placeholder {
  color: #666;
}


.boxtitle {
  font-size: 24px;
  font-weight: 600;
}

#biladd {
  font-size: 20px;
  font-weight: 600;
  margin-top: 30px;
}

/* edit email popup */

/* Modal backdrop blur */
.vdx-email-modal.modal {

  background: rgba(0, 0, 0, 0.426);
}

/* Modal card */
.vdx-modal-card {
  background: linear-gradient(47deg, #0d0d0d, #393737);
  backdrop-filter: blur(8px);
  border-radius: 24px;
  border: none;
  padding: 24px;
  color: #fff;
}

/* Title */
.vdx-modal-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

/* Description */
.vdx-modal-text {
  font-size: 13px;
  color: #b5b5b5;
  line-height: 1.5;
}

/* single assets page */


.vdx-clip-section {
  padding: 50px 0;
  color: #fff;
}

.vdx-tag {
  color: #f5a623;
  font-size: 17px;
  font-weight: 600;
}

.vdx-title-singleassets {
  font-size: 40px;
  font-weight: 700;
  margin: 12px 0 20px;
}

.vdx-image-wrap img {
  width: 100%;
  border-radius: 14px;
}

/* RIGHT CARD */
.vdx-clip-card {
  background: #151515;
  padding: 22px;
  border-radius: 16px;
}

/* META */
.vdx-meta {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  color: #aaa;
  margin-bottom: 16px;
}

.vdx-meta strong {
  color: #fff;
  display: block;
}

/* CHECKLIST ROW */
.vdx-check-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  cursor: pointer;
  position: relative;
}

.vdx-check-row input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}


/* RADIO OUTSIDE */
.vdx-radio-out {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #666;
  position: relative;
  flex-shrink: 0;
  transition: 0.25s ease;
}

.vdx-check-row input:checked+.vdx-radio-out {
  border-color: #f5a623;
}

.vdx-check-row input:checked+.vdx-radio-out::after {
  content: "";
  width: 8px;
  height: 8px;
  background: #f5a623;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.vdx-card-title {
  font-size: 20px;
}

.animation p {
  font-size: 17px;
  font-weight: 500;
  color: #aaa;
}

/* BUTTON BOX */
.vdx-check-box {
  flex: 1;
  padding: 15px;
  border-radius: 16px;
  background: linear-gradient(180deg, #1b1b1b, #0f0f0f);
  display: flex;
  align-items: center;
  gap: 18px;
  transition: .3s;
}

/* ACTIVE GRADIENT */
/* .vdx-check-row.active .vdx-check-box {
  background: linear-gradient(135deg,
      rgba(245, 166, 35, 0.35),
      rgba(245, 166, 35, 0.05),
      #151515);
  box-shadow: 0 0 0 1px rgba(245, 166, 35, .45);
} */

.vdx-check-box {
  flex: 1;
  padding: 14px 16px;
  border-radius: 16px;
  background: #111;
  border: 1px solid transparent;
  transition: 0.25s ease;
}

/* ✅ FULL ACTIVE ROW */
.vdx-check-row input:checked~.vdx-check-box {
  border-color: #f5a623;
  background: linear-gradient(135deg,
      rgba(245, 166, 35, 0.35),
      rgba(245, 166, 35, 0.05),
      #151515);

}


/* TEXT */
.vdx-quality {
  font-size: 26px;
  font-weight: 700;
}

.vdx-desc {
  font-size: 14px;
  color: #ddd;
}

.vdx-desc strong {
  font-size: 18px;
  color: #fff;
}

/* BUTTONS */
.vdx-buy-btn {
  width: 100%;
  background: #f5a623;
  border: none;
  padding: 12px;
  border-radius: 30px;
  font-weight: 600;
  margin-top: 18px;
}

.vdx-subscribe-btn {
  width: 100%;
  background: transparent;
  border: 1px solid #f5a623;
  color: #f5a623;
  padding: 12px;
  border-radius: 30px;
  margin-top: 12px;
}

.vdx-release {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #222;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-align: center;
}

.vdx-viewsplans {
  margin-top: 20px !important;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  text-decoration: underline !important;
}

.vdx-model-release {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #22c55e;
  font-size: 17px;
  font-weight: 500;
  margin-top: 30px;
}

.vdx-check-circle {
  width: 18px;
  height: 18px;
  background: #22c55e;
  border-radius: 50%;
  position: relative;
}

.vdx-check-circle::after {
  content: "";
  width: 5px;
  height: 9px;
  border: 2px solid #000;
  border-top: none;
  border-left: none;
  position: absolute;
  top: 3px;
  left: 6px;
  transform: rotate(45deg);
}


.vd-media-section {
  background: radial-gradient(circle at top, #1c1c1c, #000);
  color: #fff;
}

.vd-title01 {
  font-weight: 600;
  font-size: 40px;
}

.vd-view-all {
  color: #f5b544;
  border: 1px solid #f5b544;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 13px;
  text-decoration: none;
}

.vd-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}

.vd-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.vd-card:hover img {
  transform: scale(1.08);
}

.vd-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 6px;
}

.vd-keywords span {
  display: inline-block;
  background: #1e1e1e;
  border: 1px solid #333;
  padding: 6px 12px;
  border-radius: 5px;
  font-size: 14px;
  margin: 4px;
  color: #ddd;
}


/* download page */

.vd-asset-wrapper {
  background: radial-gradient(circle at top, #1a1a1a, #000);
  color: #fff;
  min-height: 100vh;
}

/* Search */
.vd-search-box {
  display: flex;
  background: #111;
  border-radius: 30px;
  padding: 6px 10px;
  width: 320px;
}

.vd-search-box input {
  background: transparent;
  border: 0;
  color: #fff;
  flex: 1;
  outline: none;
}

.vd-search-box button {
  background: #ffb400;
  border: 0;
  border-radius: 30px;
  width: 60px;
  height: 40px;
  color: #000;
}

/* Sort */
.vd-sort select {
  background-color: #111;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 31px;
  padding: 11px 44px 11px 13px;
}


/* Table */
.vd-table-wrapperdash {
  background: #0c0c0c00;
  border-radius: 16px;
  padding: 20px !important;
}

.vd-table th {
  color: #ffb400;
  font-size: 13px;
  border: 0;
}

.vd-table td {
  color: #ddd;
  border-top: 1px solid #222;
}

.vd-table img {
  border-radius: 6px;
}

/* Download Icon */
.vd-download {
  color: #ffb400;
  cursor: pointer;
  font-size: 18px;
}

/* Pagination */
.vd-pagination button {
  background: linear-gradient(135deg, #ffb400, #ff8800);
  border: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  margin: 0 10px;
}



/* downloads */

.vd-content-wrapper {

  min-height: 100vh;
  color: #fff;

}



.vd-subtitle {
  font-size: 16px;
  color: #fff;
  margin-top: 20px;
}

.vd-search-box {
  background: #111;
  border-radius: 30px;
  overflow: hidden;
}

.vd-search-input {
  background: transparent;
  border: none;
  color: #fff;
  padding: 10px 15px;
}

.vd-search-input:focus {
  box-shadow: none;
}

/* .vd-search-btn {
  background: linear-gradient(135deg, #ffb300, #ff8f00);
  border: none;
  padding: 0px;
  color: #000;
} */

.vd-sort-select {
  background-color: #111;
  color: #fff;
  border: 1px solid #333;
  border-radius: 20px;
}

.vd-sort-select1 {
  /* appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none; */

  background-color: #111;
  color: #ffffff;
  font-size: 16px;
  padding: 10px 20px 10px 20px;
  border-radius: 40px;
  border: 1px solid #ffffff;
  cursor: pointer;
  outline: none;
}


.vd-table {
  color: #fff;
  margin: 0;
}

.vd-table thead th {
  color: #ffb300;
  font-size: 12px;
  text-transform: uppercase;
  border-bottom: 1px solid #222;
  text-align: center;
}

.vd-table tbody tr {
  border-bottom: 1px solid #1c1c1c;
}

.vd-thumb {
  width: 60px;
  height: 40px;
  object-fit: cover;
  border-radius: 6px;
}

.vd-download-btn {
  background: transparent;
  border: none;
  color: #ffb300;
  font-size: 18px;
}

.vd-pagination .vd-page-btn {
  background: linear-gradient(135deg, #ffb300, #ff8f00);
  border: none;
  border-radius: 30px;
  width: 60px;
  height: 40px;
}

.vd-page-number {
  background: #111;
  padding: 6px 14px;
  border-radius: 6px;
  color: #ffb300;
}

/* Bootstrap table variable override */
.vd-table {
  --bs-table-bg: transparent !important;
  --bs-table-accent-bg: transparent !important;
  --bs-table-striped-bg: transparent !important;
  --bs-table-active-bg: transparent !important;
  --bs-table-hover-bg: transparent !important;
  color: #d7d7d7;
}

/* SEARCH BOX WRAPPER */
.vd-search-box {
  max-width: 460px;
  width: 100%;
  height: 56px;
  background: linear-gradient(90deg,
      rgba(0, 0, 0, 0.95) 0%,
      rgba(30, 30, 30, 0.85) 45%,
      rgba(0, 0, 0, 0.95) 100%);
  border-radius: 40px;
  padding: 0 10px 0 22px;
  align-items: center;
  border: 1px solid #414141;

}

/* INPUT */
.vd-search-input {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  color: #e0e0e0;
  font-size: 16px;
}

.vd-search-input::placeholder {
  color: #9c9c9c;
}

/* SEARCH BUTTON */
.vd-search-btn {
  width: 56px;
  height: 40px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #ffb300, #ff8f00);
  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  flex-shrink: 0;
}

/* SVG ICON */
.vd-search-btn svg {
  stroke: #000;
}

/* HOVER EFFECT */
.vd-search-btn:hover {

  transform: scale(1.05);
  transition: 0.25s ease;
}

/* PAGINATION WRAPPER */
.vd-pagination {
  width: 100%;
  min-height: 90px;
  border-radius: 20px;

  gap: 24px;
}

/* LEFT / RIGHT BUTTON */
.vd-page-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #ffb300, #ff8f00);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 18px;

  cursor: pointer;
}

/* ICON */
.vd-page-btn i {
  font-weight: 700;
}

/* HOVER */
.vd-page-btn:hover {

  transform: scale(1.08);
  transition: 0.25s ease;
}

/* PAGE TEXT */
.vd-page-text {
  color: #bdbdbd;
  font-size: 16px;
}

/* PAGE NUMBER BOX */
.vd-page-number {
  padding: 6px 14px;
  border-radius: 8px;
  border: 1px solid #ffb300;
  color: #ffb300;
  font-weight: 600;
  font-size: 16px;
  min-width: 42px;
  text-align: center;
}

.vd-sort {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #fff;
  font-family: Arial, sans-serif;
}

/* LABEL */
.vd-sort label {
  font-size: 16px;
  color: #ffffff;
  width: 112px;
}

/* SELECT BOX */
.vd-sort-select {
  /* appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none; */

  background: linear-gradient(90deg,
      #000000 0%,
      #111111 50%,
      #000000 100%);
  color: #ffffff;
  font-size: 16px;
  padding: 16px 60px 16px 28px;
  border-radius: 40px;
  border: 2px solid #ffffff;
  cursor: pointer;
  outline: none;


  /* custom arrow */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 7.5L10 12.5L15 7.5' stroke='white' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 22px center;
}

/* HOVER */
.vd-sort-select:hover {
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.15);
}

/* OPTION */
.vd-sort-select option {
  background: #000;
  color: #fff;
}

/* MOBILE */


.asset-card {
  background: linear-gradient(135deg,
      #2a1f10 0%,
      #151515 35%,
      #0b0b0b 65%,
      #000000 100%);
  border-radius: 24px;
  color: #fff;
}

/* ICON CIRCLE */
.icon-wrap {
  width: 90px;
  height: 90px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* RED BADGE */
.download-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: #ff4d4f;
  color: #fff;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* TEXT */
.asset-text {
  font-size: 18px;
  color: #e5e5e5;
  line-height: 1.6;
}

/* BUTTON */
.browse-btn {
  background: linear-gradient(135deg,
      #ffb703,
      #ff9800);
  border-radius: 30px;
  font-weight: 600;
  color: #000;
  box-shadow: 0 8px 25px rgba(255, 165, 0, 0.5);
  border: none;
}

.browse-btn:hover {
  background: linear-gradient(135deg,
      #ffc533,
      #ffa726);
  color: #000;
}

/* TABLE RESET */
.vd-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 14px;
  /* row gap */
  color: #fff;
}

/* HEADER */
.vd-table thead th {
  color: #f5a300;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  padding: 12px;
  border: none;
}

/* ROW = CARD */
.vd-table tbody tr {
  background: linear-gradient(90deg,
      #0f0f10 0%,
      #1a1a1c 50%,
      #0f0f10 100%);
  border: solid 1px #272727 !important;
}

/* CELL */
.vd-table tbody td {
  padding: 13px 5px;
  vertical-align: middle;
  border: none;
  text-align: center;
  font-size: 14px;

}

/* ROUNDED CARD EFFECT */
/* .vd-table tbody tr td:first-child {
  border-radius: 14px 0 0 14px;
}

.vd-table tbody tr td:last-child {
  border-radius: 0 14px 14px 0;
} */

/* THUMBNAIL */
.vd-thumb {
  width: auto;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

/* DOWNLOAD ICON */
.vd-download {
  color: #f5a300;
  font-size: 18px;
  cursor: pointer;
}

.vd-download:hover {
  color: #ffc94d;
}

/* ROW HOVER */
.vd-table tbody tr:hover {
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0.12),
      rgba(255, 255, 255, 0.04));
}

/* HEADER BOTTOM BORDER */
.vd-table thead th {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 16px;
}

/* optional: th ke beech gap thoda clean lage */
.vd-table thead tr {
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.15);
}




/* favourite page */

.media-card {
  background-color: #000;

}

.media-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.media-thumb img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 8px;
}

.favorite {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, .6);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff4d4d;
  font-size: 16px;
}

.badge-group {
  bottom: 10px;
  left: 10px;
  display: flex;
  gap: 6px;
  margin: 10px 0px;
}

.badge-custom {
  background: #1c1c1c;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 4px;
  color: #fff;
}

.file-title {
  font-size: 16px;
  font-weight: 500;
  margin-top: 10px;
  color: #fff;
}

.meta {
  font-size: 13px;
  color: #aaa;
}

.favorite img {
  width: auto;
  height: auto;

}


/* saved drafts */

.vd-drafts-section {
  padding: 60px 0;
  color: #fff;
}

.vd-subtitle {
  font-size: 16px;
  opacity: .7;
}

/* SEARCH */
.vd-search-box {
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50px;
  padding: 6px 10px;
  width: 280px;
}

.vd-search-box input {
  flex: 1;
  background: transparent;
  border: 0;
  color: #fff;
  outline: none;
}

/* .vd-search-box button {
  background: #ffb703;
  border: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #000;
} */

/* SORT */
.vd-sort {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* .vd-sort select {
  background: #000;
  color: #fff;
  border: 1px solid #444;
} */

/* TABLE */
/* .vd-table-wrapper {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 10px;
} */

.vd-drafts-table {
  color: #fff;
  margin: 0;
}

.vd-drafts-table thead th {
  font-size: 12px;
  color: #ffb703;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.vd-drafts-table tbody tr {
  transition: .3s;
}

.vd-drafts-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.04);
}

.vd-drafts-table td {
  border-color: rgba(255, 255, 255, 0.05);
  vertical-align: middle;
  font-size: 13px;
}

/* ACTIONS */
.vd-actions i {
  cursor: pointer;
  margin-left: 10px;
  font-size: 16px;
}


/* upload assets */

.vd-assets-card {
  background-color: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 30px;

}

/* HEADER DROPDOWN */
.vd-assets-toggle {
  width: 100%;
  background: none;
  border: 0;
  color: #fff;
  font-size: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.vd-assets-toggle i {
  transition: transform .3s ease;
}

.vd-assets-toggle[aria-expanded="true"] i {
  transform: rotate(180deg);
}

/* BODY */
.vd-assets-body {
  margin-top: 20px;
}

.vd-assets-label {
  font-size: 14px;
  color: #bdbdbd;
  margin-bottom: 6px;
}

/* INPUTS */
.vd-assets-input,
.vd-assets-select,
.vd-assets-textarea {
  background-color: #1a1a1a;
  border: 0;
  border-radius: 8px;
  color: #fff;
}

.vd-assets-input:focus,
.vd-assets-select:focus,
.vd-assets-textarea:focus {
  background: #1a1a1a;
  box-shadow: none;
  color: #fff;
}

/* TAGS */
/* .vd-assets-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.vd-assets-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  background: #1a1a1a;
  padding: 8px;
  border-radius: 8px;
  cursor: text;
}

.vd-tag {
  background: #2b2b2b;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 13px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
}

.vd-tag i {
  cursor: pointer;
  font-size: 12px;
}

.vd-tag-input {
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 14px;
  min-width: 120px;
  flex: 1;
} */

/* TAGIFY DARK THEME */
/* FORCE TAGIFY DARK MODE – FULL OVERRIDE */

/* outer wrapper */
/* ============================= */
/* TAGIFY FULL DARK OVERRIDE     */
/* ============================= */

/* wrapper */
.tagify,
.tagify * {
  background-color: transparent !important;

}

/* main box */
.tagify {
  background: #0b0b0b00 !important;
  border: 1px solid #2a2a2a !important;
  border-radius: 10px;
  width: 100%;
}

/* tags container */
/* .tagify__tags {
  background: #0b0b0b;
  !important;
} */

/* EACH TAG (this was white) */
/* .tagify__tag {
  background: #1e1e1e !important;
  border: 1px solid #2f2f2f !important;
  border-radius: 6px !important;
} */

/* INNER TAG CONTENT (ACTUAL WHITE PART) */

/* tag text */
.tagify__tag-text {
  color: #ffffff !important;
}

/* remove button */
.tagify__tag__removeBtn {
  color: #bbbbbb !important;
}

/* input area */
.tagify__input,
.tagify__input:focus {
  background: #0b0b0b !important;
  color: #ffffff !important;
}

/* placeholder */
.tagify__input::before {
  color: #777777 !important;
}

.tagify__tag>div::before {
  content: "";
  position: absolute;
  border-radius: inherit;
  inset: var(--tag-bg-inset, 0);
  z-index: -1;
  pointer-events: none;
  transition: 120ms ease;
  animation: tags--bump .3s ease-out 1;
  box-shadow: none !important;
  background: #424242 !important;
}





/* UPLOAD */
.vd-assets-upload {
  border: 2px dashed #c98a2b;
  border-radius: 12px;
  padding: 40px 20px;
  text-align: center;
  background: rgba(0, 0, 0, .4);
}

.vd-assets-upload i {
  font-size: 30px;
  color: #c98a2b;
  margin-bottom: 10px;
}

.vd-assets-upload small {
  color: #aaa;
}

.vd-assets-upload {
  cursor: pointer;
}

.vd-save-btn {
  background-color: #F59E0B;
  color: #fff;
  padding: 10px 28px;
  border-radius: 30px;
  border: none;
  font-weight: 500;
  width: 50%;
}

.vd-save-btn:hover {
  background-color: #d48806;
  color: #fff;
}


/* admin-dashoard */
.vd-carddash canvas {
  width: 100% !important;
  height: 100% !important;
}


.vd-carddash {
  background:
    linear-gradient(115deg, #1c1c1c 0%, #050505 100%);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 20px;
  height: 100%;
}

.vd-stat {
  font-size: 32px;
  font-weight: 600;
  color: #fff;
}

.vd-label {
  font-size: 14px;
  color: #aaa;
}

.vd-icon {
  font-size: 24px;
  opacity: .8;
}

canvas {
  max-height: 280px;
}

.table-dark {
  --bs-table-bg: #0f0f0f;
}

.vd-carddash h6 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 20px;
}

.date-pill {
  background:
    linear-gradient(115deg, #1c1c1c 0%, #050505 100%);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  border-radius: 999px;
  font-size: 14px;

}

.calendar-icon {
  width: 60px;
  height: 40px;
  background: #f59e0b;
  color: #000;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.vd-table-wrapper {
  background: linear-gradient(145deg, #0c0c0c, #111);
  border-radius: 12px;
  padding: 14px 0px;
  color: #fff;
  font-family: Inter, sans-serif;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .05);
}

.vd-table-head {
  display: grid;
  grid-template-columns: 1.5fr 1fr .5fr 40px;
  color: #f59e0b;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 12px;
}

.vd-table-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr .5fr 40px;
  align-items: center;
  padding: 14px 12px;

  margin-top: 8px;
  background: linear-gradient(115deg, #1c1c1c 0%, #191919 100%);
  transition: all .25s ease;
  border: 1px solid #2e2e2e;
}





.vd-name {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 15px;
  color: #a5a5a5;
}

.vd-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #888;
}

.vd-icon.img::before {
  content: "🖼";
  font-size: 12px;
}

.vd-icon.video::before {
  content: "▶";
  font-size: 11px;
}

.vd-id {
  color: #bbb;
  font-size: 14px;
}

.vd-downloads {
  text-align: center;
  font-size: 15px;
  color: #bbb;
}

.vd-arrow {
  text-align: right;
  font-size: 22px;
  color: #fff;
}

.dashtext {
  font-size: 16px;
  color: #fff;
}


.vd-table-wrapperdash {
  background: #0b0b0b;
  border-radius: 12px;
  overflow: hidden;
}

.vd-table-head1 {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr 40px;
  padding: 14px 18px;
  font-size: 12px;
  letter-spacing: 1px;
  color: #F59E0B;
  background: #0f0f0f;
  top: 0;
  z-index: 5;
  font-weight: 600;
}

.vd-table-wrapperdash {
  max-height: 360px;
  overflow-y: auto;

  /* hide scrollbar */
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE / Edge */
}

.vd-table-wrapperdash::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari */
}

.vd-table tbody tr td {
  border-top: 1px solid #202020 !important;
}

/* user detail page */


.card-dark {
  background: linear-gradient(145deg, #0c0c0c, #111);
  border-radius: 18px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .05);
}

.text-gold {
  color: #F59E0B;
}

hr {
  border-color: rgba(255, 255, 255, .08);
}

.user-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.btn-outline-danger {
  border-radius: 30px;
}

.info-label {
  font-size: 16px;
  color: #888;
}

.invoice-item {
  background: rgba(255, 255, 255, .03);
  border-radius: 14px;
  padding: 14px 16px;
  transition: .3s;
  cursor: pointer;
}

.invoice-item:hover {
  background: rgba(245, 158, 11, .08);
}

.invoice-id {
  color: #F59E0B;
  font-size: 12px;
}

.invoice-date {
  font-size: 12px;
  color: #888;
}

.detailtxt {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  width: 253px;
}

.detailp {
  font-size: 16px;
  color: #888;
}

.invoiceher {
  width: 250%;
}

.invoice-scroll {
  max-height: 550px;
  /* height adjust kar sakte ho */
  overflow-y: auto;
  padding-right: 4px;

  /* Firefox */
  scrollbar-width: none;

  /* Smooth scroll */
  scroll-behavior: smooth;
}

/* Chrome, Edge, Safari */
.invoice-scroll::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.dwntxt {
  font-size: 24px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 30px;
}

/* privacypolicy */

.policy-title {
  font-size: 48px;
  font-weight: 700;
  text-align: center;
}

.last-updated {
  text-align: left;
  color: #fff;
  font-size: 18px;
  margin-bottom: 20px;
  margin-top: 30px;
}

/* Glass Card */
/* .policy-card {
  background: linear-gradient(90deg, #0f0f10 0%, #1a1a1c 50%, #0f0f10 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
} */

.policy-card {
  width: 100%;
  max-width: 760px;
  padding: 28px 32px;

  /* Rounded */
  border-radius: 24px;

  /* Gradient background */
  background: linear-gradient(329deg, rgb(198 198 198 / 14%), rgb(234 234 234 / 4%));


  /* Blur effect */
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  /* Border + shadow */


  /* Text */
  color: #ffffff;

  /* Zoom safe */
  box-sizing: border-box;
  margin-bottom: 15px;
}

.policy-card h4 {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 15px;
}

.policy-card p {
  font-size: 15px;
  line-height: 20px;
  color: #b9b9b9;
}

.privacycon {
  padding: 0px 300px;
}

.privacycon .despolicy {
  font-size: 15px;
  text-align: left;
  color: #d6d6d6;
}

#videoBox video {
  width: 100%;
  border-radius: 8px;
}


.vdx-video-wrap {
  position: relative;
  width: 100%;
  max-width: 900px;
  border-radius: 12px;
  overflow: hidden;
}

.vdx-video-wrap video {
  width: 100%;
  height: auto;
  display: block;
}

/* Center Play Button */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 60px;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* Top Right Buttons */
.video-actions {
  position: absolute;
  top: 15px;
  right: 15px;
  display: flex;
  gap: 10px;
}

.video-actions button {
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  cursor: pointer;
}


.vd-preview-btn {
  background: transparent;
  color: #f5a300;
  border: none;
  font-weight: 500;
}

/* .vd-preview-btn:hover {
  text-decoration: underline;
} */

.brand-text span {
  color: #f5a623;
}



/*.nav-link.active {*/
/*  color: #f5a623 !important;*/
/*}*/

.dropdown-menu {
  background-color: #1e1e1e !important;
}

.dropdown-item {
  color: #fff !important;
}

/* Hover dropdown */
.nav-item.dropdown:hover>.dropdown-menu {
  display: block;
  margin-top: 0;
}

/* Arrow rotation optional */
.nav-item.dropdown:hover .dropdown-toggle::after {
  transform: rotate(180deg);
  transition: 0.3s;
}


/* Common button base */
.vd-btn {
  border-radius: 30px;
  padding: 10px 28px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.25s ease;
  background: transparent;
}

/* PREVIEW (outlined yellow) */

/* REJECT (outlined dark) */
.vd-reject-btn {
  border: 1px solid #f5a300;
  color: #b5b5b5;
  width: 225px;
  border-radius: 30px;
}



/* PUBLISH (filled yellow) */
.vd-publish-btn {
  background: linear-gradient(135deg, #f5b301, #ffcc33);
  color: #111;
  border: none;
  font-weight: 600;
  box-shadow: 0 0 0 rgba(245, 179, 1, 0);
  width: 225px;
  border-radius: 30px;
}

/* .vd-publish-btn:hover {
  box-shadow: 0 0 12px rgba(245, 179, 1, 0.45);
  transform: translateY(-1px);
} */

/* .dropdown-item:focus,
.dropdown-item:hover {
  color: var(--bs-dropdown-link-hover-color);
  background-color: #f8f9fa00 !important;
} */

/* iconoverlay */

.vd-thumb-wrap {
  position: relative;
  border-radius: 6px;
  overflow: hidden;

}

/* black overlay */
.vd-thumb-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 28%);
  height: 40px;
  width: 60px;
  display: flex;
  margin: 0 auto;
}

/* icon container */


/* optional hover effect 🔥 */
/* .vd-thumb-wrap:hover::after {
  background: rgba(0, 0, 0, 0.6);
} */




/* userdetailpage */

.vd-header-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Back button on left */
.vd-back-btn {
  position: absolute;
  left: 0;
  padding: 10px 18px;
  border-radius: 24px;
  border: 1px solid #f5a623;
  color: #f5a623;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

/* hover effect */
.vd-back-btn:hover {
  background: #f5a623;
  color: #000;
}


.invoice-headings {
  display: flex;
  justify-content: space-between;
  padding: 0 14px;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #f5a623;
  /* golden */
  text-transform: uppercase;
}

.invoice-col-name {
  flex: 1;
}

.invoice-col-date {
  min-width: 90px;
  text-align: right;
}


.vd-thumb-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.vd-media-icon svg {
  width: 20px;
  height: 20px;
}

.vd-thumb {
  width: 60px;
  height: auto;
  border-radius: 4px;
}

/* invoice detail page */

.back-btn {
  position: absolute;
  left: 0;

  background: transparent;
  border: 1.5px solid #c89b3c;
  color: #c89b3c;
  padding: 10px 26px;
  border-radius: 999px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}

.back-btn:hover {
  background: #c89b3c;
  color: #000;
  box-shadow: 0 0 18px rgba(200, 155, 60, 0.35);
}

h1 {
  font-weight: 700;
  margin-bottom: 5px;
}

.subtitle {
  color: #aaa;
  margin-bottom: 30px;
}

.info-card1 {
  background: linear-gradient(90deg, #0f0f10 0%, #1a1a1c 50%, #0f0f10 100%);
  border-radius: 18px;
  padding: 22px 26px;
  margin-bottom: 18px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.6);
}

.info-title12 {
  font-size: 15px;
  color: #fff;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.info-label12 {
  font-size: 15px;
  color: #888;
}

.info-value12 {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #fff;
}

.highlight-card {
  background: linear-gradient(145deg, #2a1c00, #000);
  border: 1px solid rgba(200, 155, 60, 0.4);
}

.gold-text {
  color: #c89b3c;
}

.divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.05);
  margin: 10px 0;
}

.amount-value {
  font-size: 16px;
  font-weight: 600;
}

.license-box {
  font-size: 15px;
  color: #aaa;
  line-height: 1.6;
}

.notes-box {
  font-size: 15px;
  color: #aaa;
}

.page-wrapper1 {
  padding: 40px 200px !important;
}


.total-card {
  background: linear-gradient(120deg, #111, #000);
  border-radius: 26px;
  padding: 28px 34px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 15px 35px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
}

/* subtle shine effect */
.total-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg,
      transparent 30%,
      rgba(255, 255, 255, 0.04),
      transparent 70%);
  pointer-events: none;
}

.amount-label {
  font-size: 13px;
  color: #9a9a9a;
  margin-bottom: 6px;
}

.amount-value {
  font-size: 17px;
  font-weight: 600;
  color: #fff;
}

.amount-block {
  line-height: 1.4;
}

.hero-header {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 30px;
}


/* GRID CONTAINER */
.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(100px, auto);
  gap: 5px;
  /* grid-auto-flow: dense; */
}

/* IMAGE STYLE */
.grid-item {
  position: relative;
  overflow: hidden;
  /* border-radius:6px; */
}

.grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.4s ease;
}

.grid-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.4s ease;
}

.grid-item:hover video {
  transform: scale(1.05);
}

.grid-item:hover img {
  transform: scale(1.05);
}

/* Different Sizes (LIKE SCREENSHOT) */

.tall {
  grid-row: span 6;
  grid-column: span 3;
}


.wide {
  grid-row: span 2;
  grid-column: span 3;
}

.grid-item {
  position: relative;
  overflow: hidden;

}

.grid-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Badge container */
.video-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 6px;
  z-index: 2;
}

/* Individual badge */
.video-badge span {
  background: rgba(0, 0, 0, 0.75);
  color: white;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 6px;
  font-weight: 500;
  letter-spacing: 0.3px;
}



/* search result page */
.wide-lg {
  grid-row: span 1;
  grid-column: span 3;
}

.wide-sm {
  grid-row: span 1;
  grid-column: span 0;
}

.grid1 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(100px, auto);
  gap: 4px;
}

/* singleimagepage */

.grid-item .badgesingle span {
  background: rgba(0, 0, 0, 0.75);
  color: white;
  font-size: 13px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 6px;
  backdrop-filter: blur(4px);
}

.grid-item .badgesingle {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 6px;
  z-index: 3;
}

.grid-item:hover .video-actions1 {
  opacity: 1;
}

.grid-item:hover .video-actions1 button {
  opacity: 1;
}

.grid-item:hover .singlelabel {
  opacity: 1;
}

.grid-item .video-actions1 {
  position: absolute;
  top: 15px;
  right: 6px;
  display: flex;
  gap: 10px;
  opacity: 0;
}

.grid-item .video-actions1 button {
  background: rgb(73 73 73 / 67%);
  ;
  color: #fff;
  border: none;
  min-width: 30px;
  min-height: 30px;
  border-radius: 8px;
  cursor: pointer;
  opacity: 0;
}








.grid-item {
  position: relative;
  overflow: hidden;
}

/* ✅ WHITE OVERLAY */
.grid-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.50);
  /* white overlay */
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: 1;
}

.grid-item:hover::after {
  opacity: 1;
}

/* ✅ BADGES HIDE */
.grid-item .badgesingle {
  transition: opacity 0.25s ease;
  z-index: 3;
}

.grid-item:hover .badgesingle {
  opacity: 0;
}

/* ✅ BUTTONS SHOW */
.grid-item .video-actions1 {
  position: absolute;
  top: 15px;
  right: 6px;
  display: flex;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
}

.grid-item:hover .video-actions1 {
  opacity: 1;
}

/* ✅ BUTTON STYLE */
.grid-item .video-actions1 button {
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  min-width: 30px;
  min-height: 30px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ✅ SIMILAR LABEL */
.grid-item .singlelabel {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(0, 0, 0, 0.65);
  color: white;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  backdrop-filter: blur(6px);
  text-align: center;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.3s ease;
  z-index: 3;
}

.grid-item:hover .singlelabel {
  opacity: 1;
  transform: translateY(0);
}