@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

:root {
  --title-font: "Montserrat", sans-serif;
  --subtitle-font: "Manrope", sans-serif;
  --body-bg: #222128;
  --btn-bg: #9200da;
  --text-secondary: #999999;
  --bg-black: #1e2227;
  --green: #15E782;
  --red: #E50000;
}

body {
  background: var(--body-bg);
}
a {
  text-decoration: none;
}
.title {
  font-family: var(--title-font);
}
.subtitle {
  font-family: var(--subtitle-font);
}
.text-secondary {
  color: var(--text-secondary) !important;
}
.container-fluid {
  width: 95% !important;
  margin: auto !important;
}
.btn-dark{
  background: #444445 !important;
}
.btn-danger{
  background: var(--red) !important;
  border: none;
}

/* Pre Loader  */
#preloader {
  background: #000 url("../img/preloader.gif") no-repeat center center;
  background-size: 15%;
  height: 100vh;
  width: 100%;
  position: fixed;
  z-index: 100;
}

/* NavBar Code */
header .navbar-brand img {
  width: 85px;
  height: 45px;
}
header .btn-login {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: white;
  border-radius: 50px;
  padding: 0.3rem 1rem;
  background: transparent;
}
header .btn-login:hover {
  border-color: var(--green);
}
.home-page .owl-theme .owl-dots,
.home-page .owl-theme .owl-nav {
  display: none;
}
.nostalgia p {
  font-family: var(--title-font);
  font-weight: 500;
}
.nostalgia .movie-card{
  position: relative;
  border-radius: 12px;
}
.nostalgia .movie-card img{
  height: 390px;
}
.nostalgia .movie-card .text-overly{
  height: 30%;
  background: linear-gradient(#D9D9D903, #73737380);
  color: #fff;
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: end;
}
.nostalgia .movie-card .top-part{
  padding: 2px 15px;
  border-radius: 30px;
  background: rgba(115, 115, 115, 0.6);
  color: #fff;
  position: absolute;
  top: 8px;
  left: 4px;
}
.nostalgia .movie-card .text-overly p{
  font-size: 22px;
  font-weight: bold;
}


.faq-number {
  background: black;
  color: white;
  border-radius: 5px;
  padding: 6px 12px;
  margin-right: 15px;
  font-weight: bold;
  min-width: 40px;
  text-align: center;
}
.accordion-button:not(.collapsed) {
  background: transparent;
  color: white;
  box-shadow: none;
}
.accordion-button {
  background: transparent;
  color: white;
  font-weight: 500;
  box-shadow: none;
  padding-left: 0;
}
.accordion-button::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "";
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640'><path fill='white' d='M352 128C352 110.3 337.7 96 320 96C302.3 96 288 110.3 288 128L288 288L128 288C110.3 288 96 302.3 96 320C96 337.7 110.3 352 128 352L288 352L288 512C288 529.7 302.3 544 320 544C337.7 544 352 529.7 352 512L352 352L512 352C529.7 352 544 337.7 544 320C544 302.3 529.7 288 512 288L352 288L352 128z'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1rem;
  transform: none !important;
  color: white;
  margin-left: auto;
}
.accordion-button:not(.collapsed)::after {
  content: "";
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 640"><path fill="white" d="M96 320C96 302.3 110.3 288 128 288L512 288C529.7 288 544 302.3 544 320C544 337.7 529.7 352 512 352L128 352C110.3 352 96 337.7 96 320z"/></svg>');
}
.accordion-item {
  background: transparent;
  border: none;
  width: 85%;
  margin: 0 auto;
}
.accordion-item + .accordion-item {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  width: 85%;
  margin: 0 auto;
}
.accordion-body {
  color: rgba(255, 255, 255, 0.8);
  padding-top: 0;
  padding-left: 3.32rem;
}
.accordion-button:focus {
  border-color: none;
  box-shadow: none;
}
@media (max-width: 576px) {
  .accordion-item + .accordion-item {
    width: 100%;
    margin-left: 20px;
    margin-right: 20px;
  }
}

/* home page*/
.home {
  width: 100%;
  margin: auto;
}
.home .left {
  width: 100%;
}
.home .left img{
  width: 100%;
  margin-top: 50px;
}
.home .video {
  width: 100%;
  margin: auto;
}
.home .video video {
  width: 100%;
}
.creator {
  width: 50%;
  margin: auto;
}
.creator .contents p {
  margin-left: 18px;
  color: #efe7e7;
}

.creator .btn{
  margin-left: 200px;
}
.creator .btn a{
  padding: 10px 20px;
  border-radius: 5px;
  border: 1px solid red;
}

/* card */
.profile-card {
  width: 100%;
  height: auto;
}
.cover-photo {
  height: 120px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.profile-card .profile-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 4px solid #2b2b2b;
  position: absolute;
  bottom: -45px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  object-fit: cover;
}
.follow-btn {
  background-color: transparent;
  border: none;
  width: 100%;
}
.follow-btn a {
  padding: 8px 40px;
  background: red;
  color: #fff;
  border-radius: 6px;
  font-weight: bold;
}
.ai-tools p{
  margin-top: 10px;
}

/* -- Side Bar Coding -- */
.side-bar-container{
  width: 100% !important;
  margin: auto;
}
.sidebar-icon{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 14px;
  gap: 25px;
}
.sidebar-icon a{
  color: #fff;
  transition: .4s all ease;
}
.sidebar-icon a:hover{
  color: var(--red);
}
.sidebar-icon a i{
  font-size: 35px;
}
.sidebar-icon a.active{
  color: var(--red);
}

/* -- Navbar -- */
.navbar-top{
  position: relative;
}
.navbar-top .nav-link {
  color: #aaa !important;
  padding: 8px 15px;
  border-radius: 8px;
  transition: 0.3s;
}
.navbar-top .nav-item{
  margin-right: 20px;
}
.navbar-top .nav-item:last-child{
  margin-right: 0;
}
.navbar-top .nav-link.active,
.nav-link:hover {
  background: #1a1a1a;
  color: white !important;
}
.nav-center {
  background: #111;
  padding: 5px 20px;
  border-radius: 10px;
}
.icon-btn {
  color: white;
  font-size: 18px;
  margin-right: 15px;
  cursor: pointer;
}
.avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  object-fit: cover;
}
.navbar-top .icons {
  padding-left: -20px;
}
.navbar-top .icons i {
  color: #fff;
  margin-right: 30px;
}
.navbar-top #offcanvasNav{
  position: absolute;
  top: 10px;
  right: 8px;
}
.offcanvas-body a{
  color: #fff;
}
.offcanvas-body a.active{
  color: var(--red);
}
.image-genaration .leftside #modelnumber{
  width: 230px;
  background-color: transparent;
  color: #fff;
}
.image-genaration .leftside #modelnumber option,
.image-genaration .leftside .form-select{
  background-color: var(--body-bg) !important;
  color: #fff;
}
.leftside .uprage-icon i{
  font-size: 35px;
}

/* Image .image-genaration code  */

.prompt-input .form-control{
  background-color: transparent;
  color:#d6d9df;
  min-height:300px;
  resize:none;
  padding:14px 48px 14px 14px;
}
.prompt-input .form-control::placeholder{ color:#7b8593; }
.reload-btn{
  right:12px; bottom:12px; z-index:2;
  border:1px solid #343a43;
}
/* left ratio list */
.image-genaration .ratio-list{
  width:94px;
}
.image-genaration .ratio-item{
  cursor:pointer;
  user-select:none;
  display:flex; 
  align-items:center; 
  gap:.5rem;
  padding:.35rem .6rem; 
  margin:.35rem 0;
  background:var(--body-bg); 
  border:1px solid #2e333d;
  border-radius:10px; 
  color:#c9ced6; 
  font-size:.88rem;
  position:relative;
}
.image-genaration .ratio-item.active{
  background:var(--body-bg); border-color:#343a43;
  box-shadow:inset 3px 0 0 #e33434; /* red left strip */
}
.image-genaration .ratio-item input{ display:none; }
/* select-like dropdown buttons */
.image-genaration .select-like.btn{
  background:var(--body-bg); border:1px solid #2a2f37; color:#d7dbe2;
  min-width:128px; text-align:left;
}
.dropdown-menu-dark{
  --bs-dropdown-bg:#1b1f27; --bs-dropdown-link-color:#cfd3da;
  --bs-dropdown-link-active-bg:#2a303a; --bs-dropdown-link-hover-bg:#242a33;
  border:1px solid #2c313a; border-radius:12px; padding:.35rem;
  min-width:210px;
}
.dropdown-item{
  border-radius:8px; padding:.5rem .75rem;
}
/* footer row spacing */
.controls-row{ padding-top:14px; }
/* mobile tweaks */
@media (max-width: 576px){
  .ratio-list{ width:100%; display:flex; gap:.5rem; flex-wrap:wrap; }
  .ratio-item{ flex:1 0 calc(33.33% - .5rem); margin:.25rem 0; }
  .reload-btn{ bottom:10px; right:10px; }
}

.btn-upgrade{
  width: 185px;
  margin: 10px;
  padding: 10px 30px;
  text-align: center;
  text-transform: uppercase;
  transition: 0.5s;
  background-size: 200% auto;
  color: white;
  border-radius: 10px;
  display: block;
  border: 0px;
  font-weight: 700;
  box-shadow: 0px 0px 14px -7px #f09819;
  background-image: linear-gradient(45deg, #FF512F 0%, #F09819  51%, #FF512F  100%);
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}
.btn-upgrade:hover {
  background-position: right center;
  /* change the direction of the change here */
  color: #fff;
  text-decoration: none;
}
.btn-upgrade:active {
  transform: scale(0.95);
}

.item-card {
  position: relative;
}
.item-card .play-icon{
  color: #fff;
  font-size: 22px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.item-card .download-icon{
  position: absolute;
  bottom: 5px;
  right: 5px;
}
.item-card img{
  height: 200px !important;
}

/* .dropdown-menu */
.content-items .dropdown-menu {
  background-color: #3a3a3c !important;
  border-radius: 8px;
  padding: 8px 0;
}
.content-items .dropdown-item {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}
.content-items .dropdown-item:hover {
  background-color: #525252;
  color: #fff;
}
.content-items .dropdown-item.delete {
  color: red;
}
.content-items .dropdown-item.delete:hover {
  background-color: #661010;
  color: #fff;
}

.history-box {
  background: #2c2c2c;
  border-radius: 8px;
  padding: 10px;
  width: 100%;
  height: 370px;
  overflow: auto;
}
.history-box .history-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #444;
  padding-bottom: 5px;
  margin-bottom: 10px;
}
.history-box .list-group-item {
  background: transparent;
  color: #fff;
  border: none;
  padding: 8px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.history-box .list-group-item i {
  cursor: pointer;
}
.history-box .title {
  flex-grow: 1;
  margin-left: 8px;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Audio Box */
.audio-box {
  background: #2c2c34; 
  padding: 10px 15px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  width: 100%;
}
.audio-box .play-btn {
  background: #444;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.audio-box .waveform {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 3px;
  margin: 0 15px;
  height: 40px;
}
.audio-box .bar {
  width: 3px;
  background: #fff;
  border-radius: 3px;
  animation: bounce 1.2s infinite ease-in-out;
}
.audio-box .bar:nth-child(1) { height: 20px; animation-delay: 0s; }
.audio-box .bar:nth-child(2) { height: 30px; animation-delay: 0.1s; }
.audio-box .bar:nth-child(3) { height: 15px; animation-delay: 0.2s; }
.audio-box .bar:nth-child(4) { height: 25px; animation-delay: 0.3s; }
.audio-box .bar:nth-child(5) { height: 35px; animation-delay: 0.4s; }
.audio-box .bar:nth-child(6) { height: 20px; animation-delay: 0.5s; }
.audio-box .bar:nth-child(7) { height: 30px; animation-delay: 0.6s; }
.audio-box .bar:nth-child(8) { height: 15px; animation-delay: 0.7s; }
.audio-box .bar:nth-child(9) { height: 25px; animation-delay: 0.8s; }
.audio-box .bar:nth-child(10){ height: 35px; animation-delay: 0.9s; }

@keyframes bounce {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.3); }
}

.audio-box .download-btn {
  color: #fff;
  font-size: 18px;
  text-decoration: none;
}

.prompt-card #fileInput{
  background: transparent;
  color: #fff;
  border: none;
}
.prompt-card .prompt-audioText{
  position: relative;
}
.prompt-card .transcribe-btn {
  position: absolute;
  top: 10px;
  right: 10px;
}
.prompt-card .prompt-audioText .toolbar{
  position: absolute;
  bottom: 8px;
  right: 5px;
}
.prompt-card .toolbar i{
  font-size: 24px;
  margin-right: 15px;
  cursor: pointer;
}

/* // Feed Section // */
.feed .sidebar {
  background: #141414;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  float: left;
}
.feed .profile {
  text-align: left;
  margin-top: 20px;
}
.feed .profile img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  margin-right: 10px;
}
.feed .profile-info {
  display: flex;
  align-items: center;
}
.feed .profile-details small {
  font-size: 12px;
  color: #aaa;
}
.feed .btn-create {
  background: #2b2b2b;
  color: #fff;
  border: none;
  width: 100%;
  margin: 20px 0;
  padding: 10px;
  border-radius: 8px;
  text-align: center;
  transition: 0.3s;
}
.feed .btn-create:hover {
  background: #3b3b3b;
}
.feed .nav-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}
.feed .nav-links a:hover {
  color: var(--red);
}
.feed .footer-sidebar {
  background: #1b1b1b;
  padding: 12px;
  margin-top: 90px;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}
.feed .footer-sidebar small {
  font-size: 12px;
  color: #aaa;
}
.feed .btn-upgrade {
  background: linear-gradient(to right, #ff9800, #e91e63);
  font-size: 12px;
}
.feed .btn-upgrade:hover {
  opacity: 0.8;
}

.feed .post-heading{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.feed .post-card {
  background: #1b1b1b;
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid #b6b4b4;
}
.feed .post-header {
  display: flex;
  align-items: start;
  gap: 20px;
}
.feed .post-user {
  display: flex;
  align-items: center;
  gap: 10px;
}
.feed .post-user img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
}
.feed .post-user small {
  color: #aaa;
  font-size: 12px;
}
.feed .post-image img {
  width: 100%;
  margin: 15px 0;
}
.feed .post-image p{
  text-align: justify;
  font-size: 14px;
}
.feed .post-actions {
  display: flex;
  padding: 10px 0;
  margin-bottom: 10px;
  justify-content: right;
  gap: 15px;
  float: right;
}
.feed .btn-intarect {
  background: #2b2b2b;
  border: none;
  padding: 6px 14px;
  border-radius: 20px;
  color: #fff;
  font-size: 12px;
}
.feed .comment-box {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  width: 400px;
}
.feed .comment-box input {
  flex: 1;
  padding: 8px;
  border-radius: 30px;
  border: none;
  background: #2b2b2b;
  color: #fff;
  float: left;
}
.feed .comment-box input:focus{
  outline: none;
  outline: 1px solid var(--green);
}
.feed .btn-follow {
  background: #2b2b2b;
  border: none;
  padding: 4px 10px;
  border-radius: 20px;
  color: #fff;
  font-size: 12px;
}

.main-feed .post-card {
  background: #1b1b1b;
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid #b6b4b4;
  }
.main-feed .post-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main-feed .post-image img {
  width: 100%;
  height: 360px;
}
.main-feed .post-actions {
  float: none;
  margin-bottom: 0px;
}

.main-feed .comment-box {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 30px;
  margin-bottom: 20px;
  width: 100% !important;
}
.main-feed .comment-box input {
  flex: 1;
  padding: 8px;
  border-radius: 30px;
  border: none;
  background: #2b2b2b;
  color: #fff;
}
.main-feed .recommend-box {
background: #1b1b1b;
border-radius: 12px;
padding: 15px;
}
.main-feed .recommend-user {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}
.main-feed .recommend-user img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
}
.main-feed .recommend-info {
  flex: 1;
}
.main-feed .recommend-info small {
  font-size: 12px;
  color: #aaa;
}

/* Chat Page */
.chat-pages .chat-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 15px;
}
.chat-pages .chat-messages {
  flex: 1;
  overflow-y: auto;
  margin-bottom: 10px;
}
.chat-pages .message {
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  position: relative;
}
.chat-pages .message .reply-icon{
  align-self: flex-end;
  margin: 5px;
}
.chat-pages .message.user {
  justify-content: flex-end;
}
.chat-pages .message.user .text {
  background: #2a2a2a;
}
.chat-pages .message .avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  margin-right: 10px;
}
.chat-pages .message.user .avatar {
  margin-left: 10px;
  margin-right: 0;
}
.chat-pages .text {
  background: #2a2a2a;
  padding: 15px;
  border-radius: 10px;
  max-width: 70%;
}
.chat-pages .chat-input {
  background: #2c2c34;
  height: 100px;
  border: 1px solid #444;
  border-radius: 6px;
  display: flex;
  align-items: center;
  padding: 6px 10px;
  gap: 10px;
  position: relative;
}
.chat-pages .chat-input input {
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  flex: 1;
  position: absolute;
  top: 20px;
  left: 20px;
}
.chat-pages .chat-input #button-chat{
  position: absolute;
  bottom: 10px;
  left: 10px;
}
.chat-pages .chat-input .btn-send{
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}
.chat-pages .chat-input input::placeholder {
  color: #aaa;
}
.chat-pages .chat-input .btn-attach,
.chat-pages .chat-input .btn-send {
  background: transparent;
  border: none;
  color: #ccc;
  font-size: 16px;
}
.chat-pages .chat-input .btn-send {
  font-size: 20px;
  color: #fff;
}
.chat-pages .chat-input .btn-attach:hover,
.chat-pages .chat-input .btn-send:hover {
  color: #fff;
}
.chat-pages .dropdown-toggle {
  background: #2c2c34;
  border: 1px solid #444;
  color: #ccc;
  font-size: 14px;
  padding: 4px 10px;
}
.chat-pages .dropdown-toggle:focus {
  box-shadow: none;
}
.chat-pages .dropdown-menu {
  background: #2c2c34;
  border: 1px solid #444;
}
.chat-pages .dropdown-item {
  color: #ccc;
}
.chat-pages .dropdown-item:hover {
  background: #444;
  color: #fff;
}

/* About Page */
.about-links {
  margin-left: -34px;
}
.about-links a{
  padding-left: 30px;
  color: #fff;
}
.about-us {
  background-color: #111;
  color: #bbb;
  font-size: 14px;
  padding-top: 40px;
}
.about-us .underline { 
  width: 13%;
  height: 3px;
  padding-top: 49px;
  display: inline-block;
  border-bottom: 2px solid #f4eeee;
  margin-left: -150px;
}
.about-page .custom-btn {
  background: #1a1a1a;
  border: none;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 500;
  margin-bottom: 30px;
}
.about-page .custom-btn:hover {
  background: #333;
}
.about-page .video-card {
  width: 100%;
  background: #111;
  border-radius: 12px;
  padding: 5px;
  text-align: center;
}
.about-page .video-thumbnail {
  position: relative;
  display: inline-block;
}
.about-page .video-thumbnail video {
  border-radius: 10px;
  max-width: 100%;
}
.about-page .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 40px;
  color: white;
  background: rgba(0,0,0,0.6);
  border-radius: 50%;
  padding: 10px 15px;
  cursor: pointer;
}
.about-page .stats {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 15px;
  font-size: 14px;
  color: #bbb;
}
.about-page .stats i {
  margin-right: 5px;
}

.about-page .our-team {
  background-color: #111;
  color: #bbb;
  font-size: 14px;
  padding-top: 40px;
}
.about-page .our-team .underline { 
  width: 13%;
  height: 3px;
  padding-top: 49px;
  display: inline-block;
  border-bottom: 2px solid #f4eeee;
  margin-left: -150px;
}

.about-page .our-team-member {
  width: 70%;
  margin: auto;
} 

/* .dashboard */
.dashboard .sidebars{
  height: 40vh;
  background: #111;
  padding: 20px;
  border-radius: 0 10px 10px 0;
}
.dashboard .sidebar {
  width: 250px;
  height: auto;
  padding: 20px;
  border-radius: 0 10px 10px 0;
}
.dashboard .sidebar h5 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 25px;
}
.dashboard .sidebar .nav-link {
  color: #aaa;
  font-size: 15px;
  padding: 10px 15px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
}
.dashboard .sidebar .nav-link:hover,
.dashboard .sidebar .nav-link.active {
  background: #1a1a1a;
  color: #fff;
}
.dashboard .sidebar .nav-link i {
  font-size: 16px;
} 
.text-danger{
  color: var(--red) !important;
}
  /* Profile Card */
    .card-custom {
      background: #111;
      border-radius: 12px;
      padding: 20px;
      color: #fff;
    }
    .profile-header {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-bottom: 15px;
    }
    .profile-header img {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      object-fit: cover;
    }
    .profile-menu .nav-link {
      background: transparent;
      color: #ccc;
      padding: 10px 15px;
      border-radius: 8px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: 0.3s;
    }
    .profile-menu .nav-link:hover,
    .profile-menu .nav-link.active {
      background: #2a2a2a;
      color: #fff;
    }
    .settings-item {
      display: flex;
      justify-content: space-between;
      padding: 12px 15px;
      border-radius: 8px;
      background: #1a1a1a;
      margin-bottom: 10px;
    }
    .form-custom label {
      font-size: 14px;
      color: #bbb;
    }
    .form-custom input {
      background: transparent;
      border: none;
      border-bottom: 1px solid #444;
      color: #fff;
      border-radius: 0;
      padding: 8px 0;
    }
    .form-custom input:focus {
      border-color: #f00;
      box-shadow: none;
    }
    .btn-danger {
      border-radius: 6px;
      padding: 8px 20px;
      font-weight: 500;
    }

  .profile-header .edit-icon {  
      position: relative;
      top: 15px;
      right: 30px;
      background: #fff;
      border-radius: 50%;
      padding: 4px;
      font-size: 14px;
      color: #00d084;
      cursor: pointer;
    }
    .edit-icon:hover {
      background: #eee;
    }
    .close-btn {
      font-size: 15px;
      cursor: pointer;
      margin-top: -105px;
    }
    .right-edit {
      color: #00d084;
      cursor: pointer;
      margin-right: -52px;
      margin-top: 15px;
    }

/* .pricing page  */
.priceing-page .pricing-section {
  padding: 50px 20px;
  text-align: center;
}
.priceing-page .pricing-card {
  background: #1c1c1e;
  border-radius: 15px;
  padding: 15px;
  transition: 0.3s;
  height: 100%;
}
.priceing-page .pricing-card:hover {
  transform: translateY(-10px);
}
.priceing-page .price {
  font-size: 2.5rem;
  font-weight: bold;
}
.priceing-page .price span {
  font-size: 1rem;
  color: #a0a0a0;
}
.priceing-page .features {
  text-align: left;
  margin-top: 20px;
}
.priceing-page .features li {
  margin-bottom: 10px;
  list-style: none;
}
.priceing-page .features li::before {
  content: "✔ ";
  color: #a855f7;
}
.priceing-page .btn-plan {
  background-color: red;
  margin-top: 20px;
  border-radius: 10px;
  font-weight: 600;
}
.priceing-page .toggle-btn {
  background: #1c1c1e;
  border-radius: 50px;
  padding: 5px;
  display: inline-flex;
  gap: 10px;
}
.priceing-page .toggle-btn span {
  padding: 5px 15px;
  border-radius: 50px;
  cursor: pointer;
}
.priceing-page .toggle-btn span.active {
  background: #6d28d9;
  color: #fff;
}

.billing-card {
  border-radius: 12px;
  padding: 30px;
}
.billing-card h4 {
  color: var(--red);
  font-weight: bold;
}
.billing-card .form-control {
  background-color: #2a2a2c;
  border: none;
  color: #fff;
}
.billing-card .form-control:focus {
  background-color: #2a2a2c;
  color: #fff;
  box-shadow: none;
}
.billing-card .btn-confirm {
  background-color: var(--red);
  color: #fff;
  padding: 12px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 10px;
}
.billing-card .btn-confirm:hover {
  background-color: #b91c1c;
}

/* .dropdown-menu */
.priceing-page .dropdown-menu {
  background-color: #3a3a3c;
  border-radius: 8px;
  padding: 8px 0;
}
.priceing-page .dropdown-item {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}
.priceing-page .dropdown-item:hover {
  background-color: #525252;
  color: #fff;
}
.priceing-page .dropdown-item.delete {
  color: red;
}
.priceing-page .dropdown-item.delete:hover {
  background-color: #661010;
  color: #fff;
}
    /* review */
.review .card .icons i {
  margin-right: 10px;
}













/* -- Footer Part -- */
.footer {
  background-color: #111;
  color: #bbb;
  font-size: 14px;
}
.footer a {
  color: #bbb;
  text-decoration: none;
}
.footer a:hover {
  color: #fff;
}
.footer .social-icons a {
  font-size: 18px;
  margin-right: 15px;
  color: #bbb;
}
.footer .social-icons a:hover {
  color: #fff;
}
.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 15px;
  margin-top: 20px;
}

