:root {
  --blue-haze: #cdcde1;
  --shark: #1d1d1e;
  --tango: #ed5812;
  --jumbo: #7b7b82;
  --gun-powder: #43435d;
  --waterloo-: #81829d;
  --abbey: #45474a;
  --blue-bell: #8c94c9;
  --corduroy: #545c5c;
  --cape-cod: #343c3c;

  --color-primary: #1b1b1f;
  --color-primry-dark: #282831;
  --color-accent: #444559;
  --color-control-normal: #45474a;
  --color-highlight: #81829d;
  --color-light: #cdcde1;
  --color-main: #ff6722;
  --color-light2: #c7c5d0;
  --color-light3: #e2dee3;
  --color-light4: #f1f3f4;
  --color-text1: #e5e1e6;
  --color-text2: #c2c0ca;
  --color-main2: #ff4300;
  --color-main3: #ff0400e9;
}

.bg1 {
  background-color: var(--color-primry-dark);
}

.bg2 {
  background-color: var(--color-primry);
}

.bg3 {
  background-color: var(--color-accent);
}
.bg4 {
  background-color: var(--shark);
}

.text1 {
  color: var(--color-text1);
}

.text2 {
  color: var(--color-text2);
}

.text3 {
  color: var(--color-light4);
}
.text5 {
  color: var(--color-main2);
}

.text6 {
  color: var(--color-main3);
}

/* General Carousel Styles */
#heroCarousel {
  height: 85vh;
  background-color: #000;
}

#heroCarousel .carousel-inner img {
  height: 85vh;
  object-fit: cover;
  filter: brightness(70%);
}

/* Caption Styles */
#heroCarousel .carousel-caption {
  bottom: 15%;
  text-align: left;
  padding-left: 2rem;
  padding-right: 2rem;
}

#heroCarousel .carousel-caption h5 {
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
  margin-bottom: 1rem;
  animation-duration: 1s;
}

#heroCarousel .carousel-caption p {
  font-size: 1.5rem;
  color: #ddd;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
  animation-duration: 1.5s;
}

/* Animation styles */
.animated-text .animate__animated {
  opacity: 0;
  transform: translateY(50px);
  animation-fill-mode: both;
}

.carousel-item.active .animate__animated {
  opacity: 1;
  transform: translateY(0);
  animation-name: fadeInUp;
  animation-duration: 1s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  #heroCarousel {
    height: 60vh;
  }

  #heroCarousel .carousel-inner img {
    height: 60vh;
  }

  #heroCarousel .carousel-caption {
    bottom: 10%;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  #heroCarousel .carousel-caption h5 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }

  #heroCarousel .carousel-caption p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  #heroCarousel {
    height: 50vh;
  }

  #heroCarousel .carousel-inner img {
    height: 50vh;
  }

  #heroCarousel .carousel-caption {
    bottom: 5%;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  #heroCarousel .carousel-caption h5 {
    font-size: 1.5rem;
  }

  #heroCarousel .carousel-caption p {
    font-size: 0.9rem;
  }
}

body {
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
  background-color: #1b1b1f !important;
  margin: 0px;
  padding: 0px;
}
.breadcrumb-item {
  font-size: 13px !important;
}

/* .container-fluid {
  padding: 0px !important;
} */

/* Sidebar */
#sidebar {
  height: calc(100vh - 56px); /* Adjust for the top bar height */
  top: 56px !important;
  position: fixed;
  left: 0;
  background: var(--color-primry-dark) !important;
  color: var(--color-light);
  transition: all 0.3s;
  overflow-y: auto;
  z-index: 1;
}

#sidebar.collapsed {
  width: auto;
}

#sidebar .nav-link {
  color: var(--color-text1);
  white-space: nowrap;
  margin: 4px 13px;
  border-radius: 2rem;
}

#sidebar .nav-link:hover {
  background-color: var(--color-accent);
}

#sidebar .active {
  background-color: rgba(0, 0, 0, 0.4);
  color: var(--color-main2);
}

#sidebar .active i {
  color: var(--color-main2);
}
.active-2 {
  background-color: #343a40 !important;
}

#sidebar .active:hover {
  background-color: rgba(0, 0, 0, 0.5);
}

#sidebar .nav-link i {
  margin-right: 10px;
  font-size: 16px;
}
#sidebar .nav-link span {
  margin-right: 10px;
  font-size: 13px !important;
}

#sidebar.collapsed .nav-link {
  text-align: center;
  font-size: 9px;
  margin: 4px 4px;
  padding: 5px 3px !important;
}

#sidebar.collapsed .active {
  text-align: center;
  font-size: 10px;
  border-radius: 9px !important;
}

#sidebar.collapsed .nav-link:hover {
  background-color: #343a40;
  border-radius: 9px !important;
}

#sidebar.collapsed .active:hover {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 9px !important;
}
.default {
  border-radius: 0% !important;
}

#sidebar.collapsed .nav-link i {
  display: block;
  margin-right: 0;
  font-size: 16px;
}

#sidebar.collapsed .nav-link span {
  text-align: center;
  width: 100%;
  display: block;
  font-size: 10px !important;
}

/* Style for WebKit browsers (Chrome, Safari) */
#sidebar::-webkit-scrollbar {
  width: 1px; /* Width of the entire scrollbar */
}

#sidebar::-webkit-scrollbar-track {
  background: transparent; /* Transparent track */
}

#sidebar::-webkit-scrollbar-thumb {
  background-color: black; /* Black scroll thumb */
  border-radius: 0; /* No border radius for a sharp edge */
}

/* Style for Firefox */
#sidebar {
  scrollbar-width: thin; /* Makes the scrollbar thin */
  scrollbar-color: black transparent; /* Black thumb with transparent track */
}

/* Style for Internet Explorer and Edge */
#sidebar {
  -ms-overflow-style: -ms-autohiding-scrollbar;
}

/* Custom scrollbar styles for other browsers using pseudo-elements */
#sidebar {
  scrollbar-width: thin;
  scrollbar-color: black transparent;
}

/* Top bar */
#top-bar {
  position: fixed;
  top: 0;
  width: 100% !important;
  background-color: var(--color-primry-dark) !important;
  z-index: 2;
  transition: all 0.3s;
  padding: 8px 15px;
  box-sizing: border-box;
  overflow-x: hidden !important;
  border-bottom: 0.8px solid var(--color-accent);
}

/* Top bar */
#top-bar1 {
  position: fixed;
  top: 0;
  width: 100% !important;
  background-color: var(--color-primry-dark) !important;
  z-index: 2;
  transition: all 0.3s;
  padding: 8px 15px;
  box-sizing: border-box;
  overflow-x: hidden !important;
  border-bottom: 0.8px solid var(--color-accent);
}

#sidebarToggle {
  border: none;
  color: var(--color-light);
  background-color: rgba(0, 0, 0, 0.4);
}

#top-bar .navbar-brand {
  padding-left: 15px;
  transition: all 0.3s;
}
#top-bar1 .navbar-brand {
  padding-left: 15px;
  transition: all 0.3s;
}

/* Content area */
#content {
  /* margin-left: 250px; */
  margin-top: 56px;
  /* Original margin for content */
  transition: all 0.3s;
  /* Adjust for the height of the top bar */
}

#content.collapsed {
  margin-left: auto;
}

/* Bottom navigation */
#bottom-nav {
  display: none;
}
.text-sm {
  font-size: 14px;
}

.btn2 {
  border: 2px solid var(--color-main2);
  background-color: var(--color-main);
  color: var(--color-text1);
}

.btn2:hover {
  border: 2px solid var(--color-main2);
  background-color: transparent;
  color: var(--color-main);
}

@media (max-width: 992px) {
}

@media (max-width: 768px) {
  .text-sm {
    font-size: 10px;
  }
  #sidebar {
    display: none;
    width: 0px !important;
  }

  #sidebar.collapsed {
    display: none;
    width: 0px !important;
  }

  #sidebarToggle {
    display: none !important;
  }

  #top-bar {
    left: 0px !important;
    width: 100% !important;
    padding-left: 0;
  }
  #top-bar1 {
    left: 0px !important;
    width: 100% !important;
    padding-left: 0;
  }

  #content {
    margin: 0px !important;
    padding: 0px !important;
  }

  #content.collapsed {
    margin: 0px !important;
  }

  #bottom-nav {
    display: flex;
    justify-content: space-around;
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: var(--color-primry-dark) !important;
    border-top: 1.2px solid rgba(0, 0, 0, 0.5) !important;
    z-index: 3;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }

  #bottom-nav .nav-link {
    color: var(--color-text1);
    text-align: center;
    padding: 10px 0;
    flex-grow: 1;
  }

  #bottom-nav .nav-link i {
    font-size: 15px;
  }

  #bottom-nav .nav-link span {
    display: block;
    font-size: 10px;
  }

  #bottom-nav .nav-link:hover {
    color: #fff;
  }

  #bottom-nav .nav-link.active {
    color: var(--color-main);
  }
}

/* Search Box Styling */
.search-box {
  border-radius: 2rem;
  border: none !important;
  box-shadow: none !important;
  padding: 8px 20px;
}

#button-search {
  border-radius: 0 2rem 2rem 0;
  border: none;
  background-color: #151517;
  color: #70777e;
}

#button-search:hover {
  color: #fff;
}

@media (max-width: 768px) {
  /* .container-fluid {
    padding-left: 0px !important ;
    padding-right: 0px !important ;
  } */
  #search-div {
    display: none;
  }
  .breadcrumb-item {
    font-size: 10px !important;
  }

  #mobile-menu-div {
    display: inline-flex !important;
  }
  #mobile-menu-div1 {
    display: inline-flex !important;
  }

  .slider {
    margin: 0px !important;
    padding: 0px !important;
  }

  .card1 {
    margin: 0px !important;
  }

  #top-bar {
    background-color: transparent !important;
    /* Semi-transparent background */
    transition: background-color 0.3s, top 0.3s !important;
    border-bottom: none !important;
  }

  #top-bar.semi-transparent {
    background-color: rgba(0, 0, 0, 0.8) !important;
    /* Semi-transparent background */
  }

  #top-bar.hidden {
    top: -100px !important;
    /* Hide the navbar */
  }
}

.slider {
  width: 100%;
  margin-bottom: 30px;

  /* Space between cards */
}

/* jfkjgkfjdg */

.card-container1 {
  overflow: hidden;
}

.slider1 {
  width: 100%;
  margin-bottom: 20px;
  overflow: hidden;
}

/* Scrolling Wrapper */
.scrolling-wrapper {
  display: flex;
  overflow-x: auto;
  gap: 10px;
  scroll-behavior: smooth;
  padding-bottom: 15px;
  /* Space for custom scrollbar if needed */
}

/* Individual Card */
.card11 {
  min-width: 300px;
  /* Minimum width to ensure responsiveness */
  max-width: 390px;
  /* Maximum width for larger screens */
  flex-shrink: 0;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.card-img1 {
  height: 190px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}

.card-content1 {
  color: var(--color-text1);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));

  padding: 5px 0px 5px 9px;
  width: 100%;
  box-sizing: border-box;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
}

.card-title1 {
  font-size: 1rem !important;
  display: flex;
  align-items: center;
  margin: 5px 2px;
  color: var(--color-text2);
}

@media screen and (min-width: 769px) {
  .card-container1 {
    position: relative;
    width: 100%;
  }

  .card-title1 {
    font-size: 0.9rem !important;
  }

  .scrolling-wrapper {
    display: flex;
    overflow-x: auto;
    /* Enable horizontal scrolling */
    scroll-behavior: smooth;
    gap: 20px;
  }

  /* Adjust the scrollbar */
  .scrolling-wrapper::-webkit-scrollbar {
    height: 4px;
    /* Set scrollbar height */
    width: 200px !important;
  }

  .scrolling-wrapper::-webkit-scrollbar-thumb {
    background: #888;
    /* Scrollbar color */
    border-radius: 10px;
    width: 200px !important;
    margin: 0 auto;
  }

  .scrolling-wrapper::-webkit-scrollbar-thumb:hover {
    background: #555;
    /* Darker color on hover */
  }

  .scrolling-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
    /* Track color */
  }
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
  .card11 {
    min-width: 240px;
    max-width: 290px;
  }

  .card-img1 {
    height: 140px;
  }

  .card-title1 {
    font-size: 0.8rem !important;
  }

  .scrolling-wrapper::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar in Chrome, Safari, and Opera */
  }

  .scrolling-wrapper {
    -ms-overflow-style: none;
    /* Hide scrollbar in Internet Explorer and Edge */
    scrollbar-width: none;
    /* Hide scrollbar in Firefox */
  }
}

@media screen and (max-width: 480px) {
  .card11 {
    min-width: 180px;
    max-width: 210px;
  }

  .card-img1 {
    height: 120px;
  }

  .card-title1 {
    font-size: 0.7rem !important;
  }
}

.video-duration {
  position: absolute;
  bottom: 5px;
  right: 0px;
  background-color: rgba(0, 0, 0, 0.5);
  color: var(--color-text2);
  padding-right: 6px;
  font-size: 0.7rem;
  transform: skew(-10deg);
  /* Apply skew to create the slanted effect */
  transform-origin: bottom right;
}

.video-duration i {
  margin-top: 0px !important;
  background-color: var(--color-main2);
  padding: 2px 4px;
}

.btn-primary1 {
  border-radius: 0px !important;
  background-color: var(--color-main);
  padding: 6px 10px 6px 0px;
}

.btn-primary1 i {
  background-color: var(--color-main2);
  padding: 8px 14px;
}

.btn-primary1 span {
  padding: 8px 14px 8px 10px;
}

.btn-gradient {
  width: 35%;
  position: relative;
  display: inline-block;
  left: -20px;
  background: var(--color-main3);
  border-top-right-radius: 60px;
  padding: 8px 24px 8px 16px;
  box-shadow: 2px 0px 0px 0px rgba(78, 72, 72, 0.3);

  overflow: hidden;
}

.icon-btn button {
  float: left;
  margin: 10px;
}

.btn-pink {
  font-size: 14px;
  padding: 0px 14px 0px 0px;
  color: #fff;
  background-color: var(--color-main2);
  border: none;
  justify-content: center;
  align-items: center;
  display: flex;
  width: 200px;
  border-radius: 0px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.btn-pink:hover {
  background-color: var(--color-main);
}

.btn-gradient i {
  position: relative;
  z-index: 2;
  color: var(--color-text1);
  font-size: 1.2rem;
}

.editor-toolbar {
  background-color: #222;
  padding: 10px;
  border-bottom: 1px solid #444;
  margin-bottom: 10px;
}

.editor-toolbar button,
.editor-toolbar .btn {
  background: none;
  border: none;
  color: #ddd;
  font-size: 1.2em;
}

.editor-toolbar button.active,
.editor-toolbar .btn.active {
  color: #ff4433;
  /* Change this to the color you want for active buttons */
}

.editor-toolbar button:hover,
.editor-toolbar .btn:hover {
  color: #fff;
}

.editor-container {
  border: 1px solid #444;
  background-color: #333;
  color: #ddd;
  min-height: 200px;
  padding: 10px;
  resize: vertical;
  overflow: auto;
}

.editor-container:focus {
  outline: none;
}

.tab-scrollable {
  overflow-x: auto;
  white-space: nowrap;
  border: 1.5px solid #3d3d3d;
  background-color: var(--color-primry-dark);
  border-radius: none;
}

.tab-scrollable .nav-tabs {
  border: none;
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  align-items: center;
  justify-content: space-around;
}

.tab-scrollable .nav-tabs .nav-item {
  width: 100%;
  text-align: center;
}

.tab-scrollable .nav-tabs .nav-item .nav-link {
  border-radius: 0px;
  border: none;
  font-size: smaller;
  color: #c1c1c1;
}

.tab-scrollable .nav-tabs .nav-item .nav-link.active {
  background-color: var(--color-primary);
  color: var(--color-main);
}

.text-small {
  font-size: smaller !important;
}

.card-bg2 {
  background-color: #46464f;
}

.video-card {
  display: flex;
  border: 0.4px solid #000;

  overflow: hidden;
}

.video-thumbnail {
  position: relative;
  cursor: pointer;
  padding: 0px !important;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1rem;
  color: white;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 15px;
  position: relative;
}

.btn-edit:hover,
.btn-delete:hover {
  opacity: 0.5;
}

#player {
  position: relative;
  padding-top: 56.25%;
  /* 16:9 aspect ratio */
}

#player iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.image-container .hover-zoom {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.image-container .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.image-container:hover .hover-zoom {
  transform: scale(1.1);
  filter: brightness(0.7);
}

.image-container:hover .overlay {
  opacity: 1;
}

.image-link {
  display: block;
  position: relative;
  height: 100%;
  width: 100%;
  text-decoration: none;
  color: inherit;
}

.overlay button {
  background-color: #fff;
  border: none;
  color: #333;
  padding: 5px 10px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.overlay button:hover {
  background-color: #f1c40f;
}

.card1 {
  position: relative;

  overflow: hidden;
  color: #fff;
  /* box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1); */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15), 0 0 0 rgba(255, 255, 255, 0.1);
  /* Box shadow for depth */
  height: 350px;
  /* Increased height for all cards */
  margin: 0 10px;
  /* Space between cards */
  border: none !important;
  border-radius: 0px !important;
}

.card1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  /* Smooth transition on hover */
}

.card1-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
  /* Gradient overlay */
  opacity: 1;
  /* Always visible */
}

.card1-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  opacity: 1;
  background: none;
  /* Transparent background for content */
}

.card1-title {
  font-size: 1.2rem;
  /* Smaller title */
  margin-bottom: 10px;
  z-index: 1;
  color: var(--color-text1);
  /* Ensure title is above overlay */
}

.card1-text {
  font-size: 0.9rem;
  /* Smaller text */
  margin-bottom: 15px;
  color: var(--color-light4);
}

.btn-primary {
  background-color: var(--color-main);
  border-radius: 0px;
  border: none !important;
  align-items: center;
  /* Larger button padding for premium look */
  transition: background-color 0.3s ease;
}

.btn-primary i {
  margin-right: 8px;
}

.btn-primary:hover {
  background-color: #e68600;
  /* Darker hover color */
}

/* Custom prev/next buttons */
.slider1 {
  width: 100%;
  margin-bottom: 30px;
  overflow: hidden;
}

.custom-button {
  position: relative;
  padding-left: 45px;
  /* Adjust padding for icon spacing */
  color: white;
  padding: 12px 30px;
  border-radius: 2px;
  font-weight: bold;
  overflow: hidden;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
  border: none;
  background: linear-gradient(90deg, #ff0e0e 20%, #ef0505 15%, #ff630e 25%);
  box-shadow: 0 3px 0 rgba(255, 113, 36, 0.5);
  transition: background 5.9s ease;
}

.custom-button:hover {
  background: linear-gradient(90deg, #ff0e0e 90%, #ef0505 80%, #ff630e 100%);
}

.glowing-icon {
  position: absolute;
  background-color: none !important;
  left: 15px;
  /* Adjust position for icon placement */
  top: 50%;
  border-radius: 50%;
  padding: 0px 2px;
  transform: translateY(-50%);
  animation: wave 2.5s infinite linear;
}

@keyframes wave {
  0% {
    box-shadow: 0 0 0 rgba(255, 255, 255, 0.8), 0 0 0 rgba(255, 255, 255, 0.7),
      0 0 0 rgba(255, 255, 255, 0.6), 0 0 0 rgba(255, 255, 255, 0.5),
      0 0 0 rgba(255, 255, 255, 0.4), 0 0 0 rgba(255, 255, 255, 0.3),
      0 0 0 rgba(255, 255, 255, 0.2);
  }

  25% {
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8),
      0 0 20px rgba(255, 255, 255, 0.7), 0 0 30px rgba(255, 255, 255, 0.6),
      0 0 40px rgba(255, 255, 255, 0.5), 0 0 50px rgba(255, 255, 255, 0.4),
      0 0 60px rgba(255, 255, 255, 0.3), 0 0 70px rgba(255, 255, 255, 0.2);
  }

  50% {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.8),
      0 0 40px rgba(255, 255, 255, 0.7), 0 0 60px rgba(255, 255, 255, 0.6),
      0 0 80px rgba(255, 255, 255, 0.5), 0 0 100px rgba(255, 255, 255, 0.4),
      0 0 120px rgba(255, 255, 255, 0.3), 0 0 140px rgba(255, 255, 255, 0.2);
  }

  75% {
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.8),
      0 0 60px rgba(255, 255, 255, 0.7), 0 0 90px rgba(255, 255, 255, 0.6),
      0 0 120px rgba(255, 255, 255, 0.5), 0 0 150px rgba(255, 255, 255, 0.4),
      0 0 180px rgba(255, 255, 255, 0.3), 0 0 210px rgba(255, 255, 255, 0.2);
  }

  100% {
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.8),
      0 0 80px rgba(255, 255, 255, 0.7), 0 0 120px rgba(255, 255, 255, 0.6),
      0 0 160px rgba(255, 255, 255, 0.5), 0 0 200px rgba(255, 255, 255, 0.4),
      0 0 240px rgba(255, 255, 255, 0.3), 0 0 280px rgba(255, 255, 255, 0.2);
  }
}

.form-container {
  padding: 50px 15px;
  max-width: 540px !important;
}

.form-container p {
  color: #7d7d7d;
}

.form-container h6 {
  color: #8d8d8d;
  font-family: Arial, Helvetica, sans-serif;
  font-size: small;
  margin-bottom: 25px;
}

.form-container .card {
  background-color: #1f1f1f;
  border: none !important;
  margin-top: 25px;
}

.form-container input {
  border: none !important;
  font-size: small;
  background-color: #424242;
}

.form-container input:focus {
  border: none !important;
  box-shadow: none !important;
  background-color: #424242;
}

.custom-button1 {
  position: relative;
  padding-left: 45px;
  /* Adjust padding for icon spacing */
  color: white;
  padding: 12px 30px;
  border-radius: 2px;
  overflow: hidden;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
  border: none;
  background: linear-gradient(90deg, #ff0e0e 20%, #ef0505 15%, #ff630e 25%);
  box-shadow: 0 3px 0 rgba(255, 113, 36, 0.5);
  transition: background 5.9s ease;
}

.custom-button1:hover {
  background: linear-gradient(90deg, #ff0e0e 90%, #ef0505 80%, #ff630e 100%);
}

/* modal */
.modal-content {
  border-radius: 0% !important;
  background-color: #1f1f1f !important;
  border: 1.5px solid #3d3d3d !important;
}

.modal-header {
  border-bottom: 1px solid #3d3d3d;
}
.modal-footer {
  border-top: 1px solid #3d3d3d;
}

.text-primary {
  color: #ff7124 !important;
}
.separator {
  border-bottom: 1px solid rgba(0, 0, 0, 0.3) !important;
}

/* form */
label {
  font-size: smaller !important;
  margin-left: 4px;
  color: #9d9d9d !important;
}
.custom-form input,
select,
textarea {
  border: none !important;
  padding: 8px 10px;
  background-color: #424242 !important;
  border-radius: 0px !important;
}

.custom-form select,
textarea,
input:focus {
  border: none !important;
  box-shadow: none !important;
  background-color: #424242 !important;
}

.search-box:focus {
  border: none !important;
  background-color: #151517 !important;
  box-shadow: none !important;
}
.search-box:hover {
  border: none !important;
  background-color: #151517 !important;
  box-shadow: none !important;
}

/* card */
.card-bg {
  background-color: #292929;
}
.active-card {
  background-color: #4e4e4e;
}

.custom-table {
  background-color: transparent !important;
}

.table {
  background-color: transparent !important;
}

.gemini-gradient-text {
  /* Adjust as needed */
  font-weight: bold;
  /* Adjust as needed */
  background: linear-gradient(
    90deg,
    #ff7eb9,
    #ff65a3,
    #7afcff,
    #feff9c,
    #fff740
  );
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: geminiGradient 5s linear infinite;
}

@keyframes geminiGradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.card-bg1 {
  background-color: #23232a;
}

.custom-table-bg.table.table-dark,
.custom-table-bg.table.table-dark tbody,
.custom-table-bg.table.table-dark tbody tr,
.custom-table-bg.table.table-dark tbody tr td {
  background-color: #23232a !important;
}

.card-bg {
  background-color: #1f1f1f;
}

.text-main {
  color: #ff5722;
}

.hidden {
  display: none;
}

.step-indicator {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.step-indicator div {
  text-align: center;
  flex: 1;
}

.step-indicator .step-number {
  font-size: 1rem;
  border: 2px solid #ff5722;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  line-height: 30px;
  color: #fff;
  background-color: #ff5722;
  margin: auto;
}

.step-indicator .step-number.inactive {
  background-color: #e9ecef;
  border-color: #e9ecef;
  color: #6c757d;
}

.step-indicator .step-text {
  margin-top: 0.3rem;
}

.step-line {
  flex: 1;
  height: 1px;
  background-color: #ff5722;
  margin-top: 20px;
  margin-left: -40px;
  margin-right: -40px;
}

.step-line.inactive {
  background-color: #9d9d9d;
}

/* form */
label {
  font-size: smaller !important;
  margin-left: 4px;
  color: #9d9d9d !important;
}

.custom-form input,
select,
textarea {
  border: none !important;
  padding: 8px 10px;
  background-color: #46464f !important;
  border-radius: 0px !important;
  color: #c3c1cc !important;
}

.custom-form select,
textarea,
input:focus {
  border: none !important;
  box-shadow: none !important;
  background-color: #46464f !important;
  color: #c3c1cc;
}

.modal-content {
  background-color: #1b1b1f !important;
  border: none !important;
}

.btn-outline-main {
  border: 2px solid #ff5722;
  /* Fancode-like color */
  color: #ff5722;
  /* Fancode-like color */
  background: transparent;
  transition: all 0.3s ease;
}

.btn-outline-main:hover {
  background-color: #ff5722;
  /* Fancode-like color */
  color: #fff;
  border-color: #ff5722;
  /* Fancode-like color */
}

.btn-main {
  border: 2px solid #ff5722;
  background-color: #ff5722;
  color: #fff;
}

.btn-main:hover {
  background-color: transparent;
  /* Fancode-like color */
  color: #ff5722;
  border-color: #ff5722;
  /* Fancode-like color */
}

.default {
  border-radius: 0px;
}

.btn-main:disabled {
  background-color: #ff5722;
  opacity: 0.4;
  color: #fff;
  border-color: #ff5722;
}
