@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
  list-style: none;
}

:root {
  --success-1: rgb(83, 165, 117);
  --success-2: rgb(46, 139, 84);
  --error-1: rgb(187, 93, 93);
  --error-2: rgb(141, 59, 59);
  --fgreen-color: #03a66d;
  --fred-color: #fa5252;
  --offwhite-color: #eaf6f3;
  --blue-main: #7284da;
  --blue-main-ligher: #ebedfa;
  --black-color: #000;
  --black-secondary-color: #181a20;
  --white-main: #ffff;
  --gray: #8d8787;
  --lighter-gray: #f2f5ff;
  --text-gray: #bb9fa5;
  --join-community-gray: #e2e7f7;

  --shadow-color: rgba(0, 0, 0, 0.2);
}
h1 {
  font-size: 40px;
  line-height: 64px;
  color: var(--black-color);
}

h2 {
  font-size: 30px;
  font-weight: 700;
  color: var(--black-color);
}

h3 {
  font-size: 20px;
  font-weight: 500;
}

h4 {
  font-size: 17px;
}

h6 {
  font-weight: 700;
  font-size: 12px;
  color: black;
}

p {
  font-size: 15px;
  color: black;
}

/* NEW FEATURES END*/

h1 {
  font-size: 40px;
  line-height: 48px;
}
h5 {
  font-size: 40px;
  line-height: 48px;
}

body {
  background: var(--white-main);
}

.submit-btn{
  width: 100%;
  padding: 10px;
  background-color: var(--fgreen-color);
  border: none;
  font-size: 16px;
  color: white;
  font-weight: 500;
  cursor: pointer;
  border-radius: 8px;
}

 

.mobileNavBar{
  display: none;
}

@media screen and (max-width:768px){
  .mobileNavBar{
    display: block;
    width: 100%;
    padding: 13px 8%;
    background-color: var(--black-color);
    position: sticky;
    z-index: 100;
    top: 0;
  }
  .mobileNavBar .navMobileMain{
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgb(224, 224, 224);
  }
  .mobileNavBar .navMobileMain a img{
    width: 130px;
  }
  .mobileNavBar .navMobileMain .navMobileMain-right{
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .mobileNavBar .navMobileMain .navMobileMain-right a i{
    font-size: 20px;
    color: white;
  } 
  .mobileNavBar .navMobileMain i{
    font-size: 20px;
  }
  .mobileNavBar .optionNav{
    display: none; 
    position: absolute;
    background-color: #181a20;
    right: 8px;
    width: 250px; 
    top: 100%;
    transition: .3s ease;
  }
  .mobileNavBar .optionNav ul li a{ 
    color: rgb(224, 224, 224);
    padding: 15px 20px;
    border-bottom: 2px solid rgb(224, 224, 224);
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .mobileNavBar .optionNav ul li a i{
    color: var(--fgreen-color);
  }
  .mobileNavBar .navMenu{
    display: none; 
    background-color: #181a20;
    position: absolute;
    left: 0px;
    width: 100%;
    height: 100dvh;
    transition: .3s ease; 
    top: 100%;
    background-color: rgba(0, 0, 0, 0.5);
  }
  .mobileNavBar .navMenu ul{
    width: 280px;
    padding: 20px 30px;
    background-color: #181a20;
    height: 100dvh;
  }
  .mobileNavBar .navMenu ul li a{ 
    color: rgb(224, 224, 224);
    padding: 15px 0;
    border-bottom: 1.5px solid rgb(224, 224, 224);
    align-items: center;
    display: flex;
    gap: 10px;
  }
  .mobileNavBar .navMenu ul li a i{
    color: var(--fgreen-color);
    
  }
  
}


.success{
  padding: 10px;
  width: 100%; 
  text-align: left;
  background-color:var(--success-1);
  outline: 2px solid var(--success-2);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  margin: 10px 0;
  display: none;
  animation: fade 6s ease;
  position: fixed;
  top: 20%;
  right: 8%;
  width: 300px;
  z-index: 1001;
}
.error{
  padding: 10px;
  width: 100%; 
  text-align: left;
  background-color:var(--error-1);
  outline: 2px solid var(--error-2);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  margin: 10px 0;
  display: none;
  animation: fade 6s ease;
  position: fixed;
  top: 20%;
  right: 8%;
  width: 300px;
  z-index: 1001;
}
.alert p{
  color: white;
  font-size: 15px; 
  display: flex;
  align-items: center;
  gap: 10px;
}
.alert p i{
  color: white;
  font-size: 25px; 
}


@keyframes fade {
  0%{
      opacity: 100%;
  }
  50%{
      opacity: 100%;
  }
  80%{
      opacity: 100%;
  }
  100%{
      opacity: 0;
  }
}





















/* DESKTOP BEGINS HERE */

.desktop {
  width: 100%;
  padding: 1rem 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  z-index: 1000;
  background-color: var(--white-main);
}

.desktop .logo {
  width: 130px;
  cursor: pointer;
}

.desktop ul {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.desktop ul li a {
  font-size: 15px;
  font-weight: 500;
  color: var(--black-color);
  transition: 0.5s ease;
}
.desktop ul li a:hover {
  color: var(--blue-main);
}

.desktop .nav-button .nav-log {
  transition: 0.5s ease;
}
.desktop .nav-button .nav-log:hover {
  color: var(--blue-main);
}
.desktop .nav-button .nav-sign {
  background-color: var(--black-color);
  padding: 8px 15px;
  color: var(--white-main);
  border-radius: 30px;
  margin-left: 1rem;
  transition: 0.5s ease;
}
.desktop .nav-button .nav-sign:hover {
  background-color: var(--blue-main);
}

/* DESKTOP ENDS HERE */

/* DESTOP DISPLAY NONE ON MOBILE */
@media (max-width: 998px) {
  .desktop {
    display: none;
  }
}

/* MOBILE DISPLAY NONE ON DESKTOP MODE */
@media (min-width: 1024px) {
  .mobile {
    display: none;
  }
}

/* MOBILE VIEW PORT */
@media (max-width: 998px) {
  .mobile {
    width: 100%;
    padding: 1rem 8%;
    background-color: var(--white-main);
    position: fixed;
    z-index: 1000;
    top: 0;
  }
  .mobile .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .mobile .nav-container .nav-mobile-logo {
    width: 103px;
  }

  /* MOBILE MENU STYLES */
  .mobile .menu-icon,
  .mobile .close-icon {
    font-size: 24px;
    cursor: pointer;
  }
  .mobile .close-icon {
    display: none;
  }

  .mobile .mobile-menu {
    min-height: 100%;
    display: none;
    flex-direction: column;
    background: var(--white-main);
    position: absolute;
    left: 0;
    width: 100%;
    /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);  */
    padding: 1rem 8%;
  }

  .mobile .nav-sign-up-button .nav-log {
    border: 1px solid;
    cursor: pointer;
    padding: 0.5rem 2rem;
    border-radius: 30px;
    font-weight: 500;
    font-size: 15px;
  }
  .mobile .nav-sign-up-button .nav-sign {
    border: 1px solid;
    cursor: pointer;
    padding: 0.5rem 2rem;
    border-radius: 30px;
    font-weight: 500;
    font-size: 15px;
    background-color: var(--black-color);
    color: var(--white-main);
  }

  .mobile .mobile-menu li {
    list-style: none;
    margin: 5px 0;
  }
  .mobile .mobile-menu li a {
    text-decoration: none;
    color: var(--black-color);
    font-size: 15px;
    font-weight: 500;
    display: block;
    margin: 5px 0;
    transition: 0.3s;
  }
  .mobile .mobile-menu li a:hover {
    background: var(--offwhite-color);
    border-radius: 5px;
  }

  /* Show menu when active */

  .mobile-menu.active {
    display: flex;
  }

  /* Show close icon and hide menu icon when menu is open */
  .menu-icon.hidden {
    display: none;
  }

  .close-icon.active {
    display: inline-block;
  }

  /* sign up mobile view */
  .mobile .nav-sign-up-button {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .mobile .mobile-menu .line {
    margin: 2rem 0;
    border: 1px solid #f3f1f1;
  }

  .mobile .mobile-menu .nav-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .mobile .mobile-menu .nav-footer i {
    font-size: 27px;
    margin-right: 0.9rem;
    font-size: 15px;
    font-weight: 500;
  }
}

/* nav mobile ends */

.hero-section {
  width: 100%;
  background-color: var(--offwhite-color);
  background-image: url(/assets/icons/coversvg.svg);
  background-size: cover;
  background-position: left;
  background-repeat: no-repeat;
  padding: 8%;
  padding-top: 120px;
}

.hero-section .hero-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}

.hero-section .hero-container .hero-folder h1 {
  width: 400px;
}
.hero-section .hero-container .hero-folder h1 span {
  width: 560px;
  color: var(--blue-main);
}
.hero-section .hero-container .hero-folder p {
  margin-bottom: 2rem;
}

.hero-section .hero-container .hero-anchor-tag {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem; /* Spacing between input and button */
  border: 1px solid var(--blue-main);
  padding: 10px 15px;
  border-radius: 30px;
}

.hero-section .hero-container .hero-anchor-tag input {
  padding: 10px 0;
  border-radius: 15px;
  border: none;
  background-color: unset;
  outline: none;
  font-size: 16px;
  transition: 0.3s ease-in-out;
  width: 300px; /* Adjust width */
}

.hero-section .hero-container .hero-anchor-tag input:focus {
  border-color: var(--blue-main);
}

.hero-section .hero-container .hero-anchor-tag a {
  display: inline-block;
  text-align: center;
  cursor: pointer;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 500;
  font-size: 15px;
  background-color: var(--black-color);
  color: var(--white-main);
  border: none; /* Removed border for a clean look */
  transition: 0.3s ease-in-out;
  text-decoration: none;
}

.hero-section .hero-container .hero-anchor-tag a:hover {
  background-color: var(--blue-main);
}

.hero-section .hero-container .hero-anchor-tag a i {
  margin-left: 6px;
}

/* hero second split */
.hero-section .hero-container .hero-folder2 {
  background: rgba(255, 255, 255, 0.3); /* Transparent white background */
  border-radius: 15px; /* Rounded corners */
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  max-width: 250px; /* Restrict width */
  backdrop-filter: blur(2px); /* Adds a slight blur effect */
  border: 1px solid var(--white-main);
}

.hero-section .hero-container .hero-folder2 p {
  font-size: 15px;
  font-weight: 500;
  color: var(--black-color);
  margin-bottom: 10px;
}

.hero-section .hero-container .hero-folder2 img {
  width: 150px; /* Adjust QR size */
  margin-bottom: 10px;
}

.hero-section .hero-container .hero-folder2 a {
  display: inline-block;
  text-decoration: none;
  color: var(--black-color);
  font-weight: 600;
  font-size: 14px;
  padding: 8px 15px;
  border-radius: 30px;
  transition: 0.3s ease;
  z-index: 500;
}

@media (max-width: 990px) {
  .hero-section {
    width: 100%;
    background-color: var(--offwhite-color);
    background-image: url(/assets/icons/coversvg.svg);
    background-size: cover;
    background-position: left;
    background-repeat: no-repeat;
    padding: 8%;
    padding-top: 120px;
  }
  .hero-section .hero-container .hero-folder h1 {
    width: 100%;
  }

  .hero-section .hero-container .hero-anchor-tag {
    border: none;
  }

  .hero-section .hero-container .hero-folder2 {
    display: none;
  }

  .hero-section .hero-container .hero-anchor-tag input {
    border: 1px solid var(--gray);
    padding: 10px;
  }
}

/* -----  section 2 --------  */
.home2 {
  width: 100%;
  padding: 8%;
  background-color: var();
}

.home2 .home2-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.home2 .home2-container .home2-folder {
  border-right: 2px solid rgba(0, 0, 0, 0.1); /* Right border for each folder */
  padding-right: 3rem;
}

.home2 .home2-container .home2-folder:last-child {
  border-right: none; /* Remove the right border on the last item */
}
.home2 .home2-container .home2-folder p {
  color: var(--text-gray);
}

.home2 .home2-container-2 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 5rem;
}
.home2 .home2-container-2 a {
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  color: var(--blue-main);
}

@media (max-width: 998px) {
  .home2 {
    padding: 15% 8%;
  }
  .home2 .home2-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
  }
  .home2 .home2-container .home2-folder {
    width: calc(50% - 1rem);
    border-right: unset;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column; /* Aligns children (h2 and p) vertically */
    align-items: flex-start; /* Aligns content to the top */
  }

  .home2 .home2-container .home2-folder h2 {
    font-size: 1.2rem;
  }

  .home2 .home2-container .home2-folder p {
    width: 3rem;
  }

  .home2 .home2-container-2 h2 {
    font-size: 1.2rem;
  }

  .home2 .home2-container-2 {
    margin-top: 2rem;
  }
  .home2 .home2-container-2 a {
    margin-top: 0.5rem;
  }
}

/* home 3 section */

/* home 3 section ends*/

/* ---- HOME 4 SECTION */
.home4 {
  width: 100%;
  padding: 8%;
}

.home4 .home4-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.home4 .home4-container img {
  width: 20rem;
}

.home4 .home4-container .home4-folder h3 {
  margin-bottom: 0.5rem;
}

.home4 .home4-container .home4-folder p {
  margin-bottom: 10px;
  color: var(--text-gray);
}

.home4 .home4-container .home4-folder .home4-folder-inside {
  margin-top: 3rem;
  background-color: var(--lighter-gray);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 2rem 3rem;
  border-radius: 15px;
  border: 2px solid var(--blue-main-ligher);
}

.home4 .home4-container .home4-folder .home4-folder-inside a {
  background-color: var(--black-color);
  color: var(--white-main);
  padding: 10px 20px; /* Ensures proper button size */
  border-radius: 30px;
  text-align: center;
  margin-left: 2rem;
  margin-right: 0.5rem;
}

.home4 .home4-container .home4-folder .home4-folder-inside a i {
  margin-left: 0.5rem;
}

@media (max-width: 998px) {
  .home4 {
    padding: 15% 8%;
  }
  .home4 .home4-container img {
    width: 100%;
  }

  .home4 .home4-container .home4-folder h2 {
    font-size: 1.2rem;
  }
  .home4 .home4-container .home4-folder .home4-folder-inside {
    padding: 1rem 1rem;
  }
  .home4
    .home4-container
    .home4-folder
    .home4-folder-inside
    .home4-folder-inside-content
    h3 {
    font-size: 15px;
  }

  .home4 .home4-container .home4-folder .home4-folder-inside a {
    font-size: 15px;
    font-weight: 300;
    margin-top: 1rem;
    text-align: center;
    margin-left: unset;
  }
}

/*------  home5 begins ----------*/
.home5 {
  width: 100%;
  padding: 8%;
  background-image: linear-gradient(white, var(--lighter-gray));
}
.home5 .home5-container h1 {
  font-weight: 600;
  text-align: center;
  margin-bottom: 5rem;
}
.home5 .home5-container .home5-container-inside {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}
.home5 .home5-container .home5-container-inside .home5-folder {
  width: 48%;
  padding: 3rem 2rem;
  background-color: var(--white-main);
  border-radius: 10px;
  position: relative;
}

.home5
  .home5-container
  .home5-container-inside
  .home5-folder
  .home5-folder-text {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.home5
  .home5-container
  .home5-container-inside
  .home5-folder
  .home5-folder-text
  h3 {
  font-weight: 500;
}
.home5 .home5-container .home5-container-inside .home5-folder p {
  margin-top: 0.5rem;
  width: 70%;
  color: var(--text-gray);
}
.home5 .home5-container .home5-container-inside .home5-folder img {
  width: 7rem;
  position: absolute;
  right: 0;
  top: 55px;
}

@media (max-width: 998px) {
  .home5 {
    padding: 15% 8%;
  }
  .home5 .home5-container h1 {
    line-height: 30px;
    font-size: 1.2rem;
  }
  .home5 .home5-container .home5-container-inside .home5-folder {
    width: 100%;
    padding: 1rem 1rem;
  }

  .home5
    .home5-container
    .home5-container-inside
    .home5-folder
    .home5-folder-text
    h3 {
    font-size: 17px;
    font-weight: 400;
    margin-right: 1rem;
  }
  .home5
    .home5-container
    .home5-container-inside
    .home5-folder
    .home5-folder-text {
    justify-content: unset;
  }
  .home5 .home5-container .home5-container-inside {
    gap: 10px;
  }
  .home5 .home5-container .home5-container-inside .home5-folder p {
    width: 80%;
  }
  .home5 .home5-container .home5-container-inside .home5-folder img {
    width: 5rem;
  }
}

/* ---- home6  ------- */
.home6 {
  width: 100%;
  padding: 8%;
}
.home6 .home6-container .home6-container-in {
  text-align: center;
}
.home6 .home6-container .home6-container-in h1 {
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.home6 .home6-container a {
  background-color: var(--black-color);
  padding: 10px 20px;
  color: var(--white-main);
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  transition: 0.5s ease;
}
.home6 .home6-container a:hover {
  background-color: var(--blue-main);
}
.home6 .home6-container i {
  margin-left: 0.5rem;
}
.home6 .home6-container .home6-container-inside {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.home6 .home6-container .home6-container-inside .home6-folder {
  width: 30%;
}
.home6 .home6-container .home6-container-inside .home6-folder img {
  width: 7rem;
  margin-top: 3rem;
}
.home6 .home6-container .home6-container-inside .home6-folder h3 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.home6 .home6-container .home6-container-inside .home6-folder p {
  color: var(--text-gray);
}

@media (max-width: 994px) {
  /* ---- home6  ------- */
  .home6 {
    padding: 15% 8%;
  }
  .home6 .home6-container .home6-container-in {
    margin-bottom: 3rem;
  }
  .home6 .home6-container .home6-container-in h1 {
    font-size: 1.2rem;
    line-height: 30px;
  }

  .home6 .home6-container .home6-container-inside {
    gap: unset;
    text-align: unset;
    align-items: flex-start;
    gap: 2rem;
  }

  .home6 .home6-container .home6-container-inside .home6-folder img {
    width: 3.5rem;
  }
  .home6 .home6-container .home6-container-inside .home6-folder {
    display: flex;
    width: 100%;
    gap: 0.5rem;
  }
  .home6 .home6-container .home6-container-inside .home6-folder h3 {
    font-weight: 400;
    font-size: 17px;
  }
  .home6 .home6-container .home6-container-inside .home6-folder p {
    font-size: 15px;
  }
}

/* ---- home6 ends  ------- */

/* ---- home7  ------- */

.home7 {
  width: 100%;
  padding: 8% 8% 8% 0;
}
.home7 .home7-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.home7 .home7-container img {
  width: 35rem;
}
.home7 .home7-container .home7-container-inside h2 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.home7 .home7-container .home7-container-inside p {
  color: var(--text-gray);
}
.home7 .home7-container .home7-container-inside .home7-container-folder {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 3rem;
}
.home7 .home7-container .home7-container-inside .home7-container-folder img {
  width: 9rem;
}
.home7 .home7-container .home7-container-inside .home7-container-folder a {
  font-size: 20px;
  font-weight: 500;
  color: var(--black-color);
}
.home7 .home7-container .home7-container-inside .home7-container-folder i {
  font-size: 25px;
  margin-right: 0.5rem;
}

@media (max-width: 994px) {
  .home7 {
    padding: 15% 0;
  }
  .home7 .home7-container {
    flex-wrap: wrap-reverse;
  }
  .home7 .home7-container .home7-container-inside {
    padding: 8%;
  }
  .home7 .home7-container .home7-container-inside h2 {
    font-size: 1.2rem;
    font-weight: 600;
  }
  .home7 .home7-container img {
    width: 100%;
  }
  .home7 .home7-container .home7-container-inside .home7-container-folder a {
    font-size: 1.2rem;
    font-weight: 400;
    font-weight: 300;
  }
  .home7 .home7-container .home7-container-inside .home7-container-folder img {
    width: 4rem;
  }
  .home7 .home7-container .home7-container-inside .home7-container-folder i {
    font-size: 20px;
    margin-right: 0.5rem;
  }
}

/* ---- home8 ----*/
.home8 {
  width: 100%;
  padding: 8%;
}

.home8 .home8--contain h2 {
  font-weight: 600;
  margin-bottom: 2rem;
}
.home8 .home8--contain .home8-container {
  display: flex;
  align-items: top;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.home8 .home8-container h3 {
  font-weight: 600;
  margin-bottom: 1rem;
}
.home8 .home8-container p {
  font-weight: 300;
  color: var(--text-gray);
}
.home8 .home8-container .home8-folder {
  width: 49%;
  padding: 2rem 3rem;
  border-radius: 8px;
}
.home8 .home8-container .home8-folder-1 {
  background-color: var(--lighter-gray);
}
.home8 .home8-container .home8-folder-1 p {
  margin-bottom: 6rem;
}
.home8 .home8-container .home8-folder-2 {
  background-color: var(--join-community-gray);
}
.home8 .home8-container .home8-folder-2 p {
  margin-bottom: 2rem;
}
.home8 .home8-container .home8-folder-2 h4 {
  color: var(--text-gray);
  font-weight: 400;
  margin-bottom: 2rem;
}

.home8 .home8-container .home8-folder-2 i {
  font-size: 2rem;
  margin-right: 1rem;
}
.home8 .home8-container .home8-folder-2 .fa-twitter {
  color: #51b1f1;
}
.home8 .home8-container .home8-folder-2 .fa-youtube {
  color: red;
}
.home8 .home8-container .home8-folder-2 .fa-linkedin-in {
  color: #2d7be2;
}
.home8 .home8-container .home8-folder-2 .fa-facebook {
  color: #2d7be2;
}

@media (max-width: 998px) {
  .home8 {
    padding: 15% 8%;
  }
  .home8 .home8--contain h2 {
    font-size: 1.2rem;
    font-weight: 600;
  }
  .home8 .home8-container .home8-folder {
    padding: 2rem 1rem;
  }
  .home8 .home8-container h3 {
    font-size: 17px;
    font-weight: 400;
  }
  .home8 .home8-container .home8-folder-2 h4 {
    color: var(--text-gray);
    font-weight: 400;
    margin-bottom: unset;
  }
  .home8 .home8-container .home8-folder-2 i {
    font-size: 2rem;
    margin-right: 10px;
    margin-top: 2rem;
  }
}

/* ----- faq ----- */
.faq {
  width: 100%;
  padding: 8%;
}

/* Title Styling */
.faq .faq-container h2 {
  font-weight: 600;
  margin-bottom: 2rem;
}

/* Spacing between FAQ Items */
.faq .faq-container .faq-container-inside .faq-folder-in {
  margin-bottom: 10px;
  background-color: var(--lighter-gray);
  padding: 2rem;
  border-radius: 10px;
}

/* FAQ Question */
.faq .faq-container .faq-container-inside .faq-folder-in h3 {
  font-weight: 400;
  color: rgb(65, 63, 63);
  padding-bottom: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* FAQ Answer Text */
.faq .faq-container .faq-container-inside .faq-folder-in p {
  font-weight: 300;
  color: rgb(117, 114, 114);
  padding: 20px 0;
  border-top: 1.5px solid rgb(214, 211, 211);
  display: none;
  transition: .3s ease;
}

@media (max-width: 994px) {
  /* Spacing between FAQ Items */
  .faq .faq-container .faq-container-inside .faq-folder-in {
    padding: 1rem 1rem;
  }
  /* FAQ Question */
  .faq .faq-container .faq-container-inside .faq-folder-in h3 {
    font-size: 17px;
  }
}

/* ------- call to action ------- */

.call-action {
  width: 100%;
  min-height: 30%;
  padding: 4% 8%;
  background-color: var(--blue-main);
  text-align: center;
}
.call-action h2 {
  font-weight: 600;
  margin-bottom: 3rem;
}
.call-action a {
  background-color: var(--black-color);
  padding: 1rem 2rem;
  color: var(--white-main);
  border-radius: 30rem;
  font-size: 15px;
  cursor: pointer;
}

.call-action i {
  margin-left: 0.5rem;
}

@media (max-width: 998px) {
  .call-action h2 {
    line-height: 37px;
    margin-bottom: 2.5rem;
  }
  .call-action {
    padding: 15% 8%;
  }
  .call-action a {
    padding: 10px 20px;
    font-size: 17px;
    font-weight: 300;
  }
  .call-action i {
    margin-left: 5px;
  }
}

/* ----- FOOTER ------ */
/* -----  FOOTER ------ */

footer {
  width: 100%;
  padding: 8%;
  background-color: var(--main-color);
  background-image: url(image/footer-img.png);
  background-size: cover;
  background-repeat: no-repeat;
}
footer img {
  width: 170px;
  margin-bottom: 3rem;
}
footer .f-container {
  /* max-width: 1270px;
  margin: auto; */
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 5rem;
}
footer .f-container .f-content .home-links li {
  list-style: none;
}
footer .f-container .f-content .home-links li a {
  color: var(--gray);
  font-size: 15px;
}
footer .f-container .f-content h4 {
  font-weight: 500;
  margin-bottom: 1rem;
}

@media (max-width: 994px) {
  footer {
    padding: 15% 8%;
  }
  footer img {
    width: 180px;
    margin-bottom: 1rem;
  }
  footer .f-container {
    gap: 20px;
  }
  footer .f-container .f-content {
    margin-top: 2rem;
  }
}

/* ========== Login Section ========== */

.login {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.9);
  overflow-y: auto;
  padding: 8% 0;
}
.login form h2 {
  text-align: center;
  margin-bottom: 30px;
}
.login span {
  color: var(--fgreen-color);
}
.login form {
  margin-top: 2rem;
  padding: 3rem 2rem;
  width: 450px;
  background: var(--white-main);
  border-radius: 8px;
  box-shadow: 0px 8px 20px rgba(83, 82, 82, 0.5); /* Soft shadow */
  max-height: 90vh; /* Prevents form from overflowing */
  overflow-y: auto; /* Makes form scrollable if content is too long */
}
.login form input {
  width: 100%;
  margin-bottom: 25px;
  padding: 8px;
}

.login form .input-container input[type="email"],
.login form .input-container input[type="password"],
.login form .input-container input[type="code"] {
  border: none;
  border-bottom: 1px solid #e0e0e0;
  background: transparent;
  outline: none;
  color: var(--black-color);
  font-size: 15px;
}
.login form .form-submit a {
  font-size: 15px;
  color: var(--white-main);
  background-color: var(--fgreen-color);
  width: 100%;
  padding: 12px;
  display: block;
  text-align: center;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

/* ========== Submit Button ========== */
.login form .form-submit {
  margin-top: 1rem;
  width: 100%;
}

.login form .form-forgot-password {
  text-align: center;
  margin-top: 1rem;
}

.login form .form-forgot-password a {
  font-size: 15px;
  margin: 8px;
  color: blue;
}

@media (max-width: 998px) {
  .login {
    width: 100%;
    min-height: 100vh;
    padding: 8%;
  }

  .login form {
    margin-top: 2rem;
    padding: 2rem 1rem;
  }
  .login form h2 {
    font-size: 1.2rem;
  }
}

/* ========== register Section ========== */

.register {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.9); 
  padding: 8% 0;
  min-height: 100vh;
}

.register form h2 {
  font-weight: 700;
  margin-bottom: 1rem;
}
.register span {
  color: var(--fgreen-color);
}

.register form {
  margin-top: 2rem;
  padding: 3rem 2rem;
  width: 450px;
  background: var(--white-main);
  border-radius: 8px;
  box-shadow: 0px 8px 20px rgba(83, 82, 82, 0.5); /* Soft shadow */ 
}
.register form input {
  width: 100%;
  margin-bottom: 25px;
  padding: 8px;
}
.register form .input-container input[type="email"],
.register form .input-container input[type="number"],
.register form .input-container input[type="password"] {
  border: none;
  border-bottom: 1px solid #e0e0e0;
  background: transparent;
  outline: none;
  color: var(--black-color);
  font-size: 15px;
}
.register form .form-submit {
  margin: 1rem 0;
}

.register form .form-submit a {
  font-size: 15px;
  color: var(--white-main);
  background-color: var(--fgreen-color);
  width: 100%;
  padding: 12px;
  display: block;
  text-align: center;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

.register form .form-forgot-password {
  text-align: center;
  margin-top: 1rem;
}

.register form .form-forgot-password a {
  font-size: 15px;
  margin: 8px;
  color: blue;
}

@media (max-width: 998px) {
  .register {
    width: 100%;
    min-height: 100vh;
    padding: 8%;
  }

  .register form {
    margin-top: 2rem;
    padding: 2rem 1rem;
  }
  .register form h2 {
    font-size: 1.2rem;
  }
}

/*------- USER NAV ----------- */
.user-nav {
  width: 100%;
  padding: 13px 8%;
  background-color: var(--black-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.user-nav .sub-nav {
  display: flex;
  align-items: center;
}
.user-nav .sub-nav .logo {
  width: 150px;
  margin-right: 1rem;
}
.user-nav .sub-nav .dropdown {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
}
.user-nav .sub-nav .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  background-color: var(--black-color);
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  min-width: 250px;
  top: 100%;
  z-index: 1000;
  background-color: var(--black-secondary-color);
}
.user-nav .sub-nav .dropdown .dropdown-menu-1 {
  min-width: 100px;
}
.user-nav .sub-nav .dropdown .dropdown-menu-1 i {
  margin-right: 10px;
  color: var(--fgreen-color);
}
.user-nav .sub-nav .dropdown .dropdown-menu-2 {
  right: 0;
}
.user-nav .sub-nav .dropdown .dropdown-menu-2 a i {
  color: var(--fgreen-color);
  margin-right: 10px;
}
/* Display dropdown on hover */
.user-nav .sub-nav .dropdown li:hover .dropdown-menu {
  display: block;
}
.user-nav .sub-nav .dropdown .dropdown-menu li {
  padding: 10px;
}

.user-nav .sub-nav .dropdown li a {
  color: var(--white-main);
  font-size: 15px;
}
.notice-icon{
  position: relative;
}
.notice-icon p{
  position: absolute;
  background-color: red;
  top: 2px;
  right: -10px;
  border-radius: 50%;
  height: 15px;
  width: 15px;
  text-align: center;
  line-height: 15px;
  color: white;
  font-weight: 12px;
  font-weight: 600 !important;
}

/* Dashboard */
.dashboard {
  width: 100%;
  min-height: 100vh;
  display: flex; 
  background: rgb(247, 244, 244);
  overflow: hidden; 
  gap: 10px;
}

/* sidebar */
.dashboard .sidebar {
  height: 100vh; 
  width: 320px;
  border-right: 4px solid rgb(235, 233, 233);
  background-color: var(--white-main);
  overflow-y: auto; /* Enable scrolling if sidebar content overflows */
}

/* user iframe edit */
.dashboard .sidebar ul li .fa-user-1 {
  color: var(--fgreen-color);
}
.dashboard .sidebar ul {
  margin-top: 10px;
  background-color: var(--white-main);
}
.dashboard .sidebar ul li {
  padding: 12px 20px;
}
.dashboard .sidebar ul li:hover {
  background: rgb(252, 249, 249);
}
.dashboard .sidebar ul li i {
  margin-right: 1rem;
  font-size: 20px;
  color: rgb(150, 147, 147);
}
.dashboard .sidebar ul li a {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--black-color);
}

/* Main Content */
.dashboard .main-content {
  width: 100%; 
  overflow-y: auto; /* Enables scrolling */
  height: 100vh;
}
.dashboard .main-content .content {
  display: flex;
  flex-wrap: wrap;
  align-items: top;
  gap: 10px;
  background-color: var(--white-main);
  width: 100%;
  padding: 2rem 2rem;
}
.dashboard .main-content .content .circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--black-color);
}
.dashboard .main-content .content .circle h2 {
  font-size: 17px;
  font-weight: 300;
  text-transform: uppercase;
  text-align: center;
}
.dashboard .main-content .content .container .container-in {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.dashboard .main-content .content .container .container-in span {
  color: var(--gray);
}
.dashboard .main-content .verify p {
  border-radius: 3px;
  background-color: var(--fgreen-color);
  padding: 3px 5px;
  color: var(--white-main);
}

/* dashboard content2 */
.dashboard .main-content .content2 {
  display: flex; 
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  
}
.dashboard .main-content .content2 .container {
  padding: 1rem 2rem;
  background-color: var(--white-main);
  border-radius: 10px;
}

.dashboard .main-content .content2 .split-1 {
  width: 58%;
}
.dashboard .main-content .content2 .split-1 h3 {
  font-size: 17px;
  margin-bottom: 2rem;
}
.dashboard .main-content .content2 .split-1 .folder {
  display: flex;
  flex-wrap: wrap;
  align-items: last baseline;
  gap: 1rem;
}
.dashboard .main-content .content2 .split-1 .folder a {
  font-size: 15px;
  color: var(--fgreen-color);
}
.dashboard .main-content .content2 .split-1 .folder h1 {
  font-weight: 400;
  font-size: 30px;
}

.dashboard .main-content .content2 .split-2 {
  width: 40%;
}

.dashboard .main-content .content2 .split-2 h3 {
  font-size: 17px;
}
.dashboard .main-content .content2 .split-2 .folder {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.dashboard .main-content .content2 .split-2 .folder-margin {
  margin: 1rem 0;
  border-top: 1px solid #e7e3e3;
  border-bottom: 1px solid #e7e3e3;
  padding: 10px;
}
.dashboard .main-content .content2 .split-2 .folder a {
  font-size: 15px;
  color: var(--black-color);
}

/* dashboard content3 */
.dashboard .main-content .content3 .container {
  border-radius: 10px; 
  margin: 20px 0;
  background-color: var(--white-main);
}
.dashboard .main-content .content3 .container-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 1rem 2rem;
}

/* db footer */
.db-footer {
  width: 100%;
  background-color: var(--black-secondary-color);
  padding: 3rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  bottom: 0;
  margin-top: 2rem;
}
.db-footer .f-logo {
  color: var(--white-main);
  font-size: 30px;
}
.db-footer .f-container {
  text-align: right;
}
.db-footer .f-container a {
  color: var(--white-main);
  font-size: 15px;
}
.db-footer .f-container .f-about {
  margin-top: 1rem;
}
.db-footer .f-container .f-text {
  margin-right: 2rem;
}

/* db mobile view */

@media (max-width: 994px) {
  .user-nav {
    display: none;
  }
  .dashboard .sidebar {
    display: none;
  }
  /* Main Content */
  .dashboard .main-content {
    width: 100%;
    min-height: unset;
    margin-left: unset;
    margin-top: unset;
    overflow-y: auto; /* Enables scrolling */
    position: unset; 
  }
  .dashboard .main-content .content {
    width: 100%; 
  }

  /* dashboard content2 */
  .dashboard .main-content .content2 { 
    gap: 20px;  
  }
  .dashboard .main-content .content2 .split-1 {
    width: 100%;
  }
  .dashboard .main-content .content2 .split-2 {
    width: 100%;
  }
  .dashboard .main-content .content2 .container {
    padding: 8%;
  }
  .dashboard .main-content .content2 .split-2 .folder-margin {
    padding: 10px 0;
  }
  .dashboard .main-content .content2 .split-1 .folder h1 {
    font-size: 15px;
  }

  /* dashboard content3 */
  .dashboard .main-content .content3 .container-wrapper {
    gap: 10px; 
  } 
  .dashboard .main-content .content3 .container{
    padding: 8% 0;
  } 
  .dashboard .main-content .content3 .container-wrapper {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 10px 8%;
  }

  /* db footer */
  .db-footer {
    position: relative;
    bottom: 0;
    margin-top: 2rem;
    background-color: var(--black-secondary-color);
    padding: 2rem 8%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .db-footer .f-logo {
    font-size: 25px;
    margin-bottom: 1rem;
  }
  .db-footer .f-container {
    text-align: left;
  }
}

/* dash-withdrawal management section */

 
 .withdrawal-in{ 
  margin-top: 40px;
}
.dashboard .main-content .withdrawal-sec .withdrawal-in .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 1rem 0;
}

.dashboard .main-content .withdrawal-sec .withdrawal-in .container h2 {
  font-weight: 500;
  font-size: 30px;
}

.dashboard .main-content .withdrawal-sec .withdrawal-in .container a {
  color: var(--white-main);
  background-color: var(--fgreen-color);
  font-size: 15px;
  padding: 8px 12px;
  border-radius: 5px;
}
.dashboard .main-content .withdrawal-sec .withdrawal-in table {
  width: 100%;
  background-color: #f1ecec;
  border-spacing: unset;
}
.dashboard .main-content .withdrawal-sec .withdrawal-in table th {
  text-align: left;
  padding: 15px;
  font-weight: 400;
  font-size: 15px;
  color: var(--gray);
}

.dashboard .main-content .withdrawal-sec .withdrawal-in table td {
  font-size: 15px;
  font-weight: 300;
  text-align: left;
  padding: 15px;
  background-color: var(--white-main);
  border-bottom: 1px solid #e7e3e3;
}

/* Responsive Design */
@media (max-width: 768px) {
  .dashboard .main-content .withdrawal-sec .withdrawal-in table {
    display: block;
    overflow-x: auto; /* Scrollable table on small screens */
  }
  .dashboard .main-content .withdrawal-sec{ 
    padding: 0% 5% 0% 5%; 
  }

  .dashboard .main-content .withdrawal-sec .withdrawal-in table th,
  .dashboard .main-content .withdrawal-sec .withdrawal-in table td {
    padding: 0.8rem; /* Further reduce padding */
    font-size: 13px; /* Smaller text for mobile */
  }

  .dashboard .main-content .withdrawal-sec .withdrawal-in .container h2 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
  }
  .dashboard .main-content .withdrawal-sec .withdrawal-in .container {
    flex-direction: column;
    align-items: start;
  }
}

/* dashboard kyc section */
 

.dashboard .main-content .kyc-center h2 {
  font-weight: 600;
  margin: 2rem 0;
}
.dashboard .main-content .kyc-center .p-tag {
  padding: 2rem 1rem;
  background-color: white; 
  color: var(--fgreen-color);
  margin-bottom: 20px;
}
.dashboard .main-content .kyc-center .p-tag span{
  padding: 8px; 
  margin-left: 20px;
  border-radius: 8px;
  color: white; 
  background-color: #000;
}
.dashboard .main-content .kyc-center form label {
  font-weight: 300;
  font-size: 15px;
}
.dashboard .main-content .kyc-center form input {
  width: 40%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #e7e3e3;
  transition: all 0.3s ease-in-out;
  margin-bottom: 2rem;
}
/* When input is focused */
.dashboard .main-content .kyc-center form input:focus {
  border: 1px solid var(--fgreen-color);
  outline: none; /* Removes default browser outline */
}

/* When input has text inside */
.dashboard .main-content .kyc-center form input:not(:placeholder-shown) {
  border: 1px solid var(--fgreen-color);
  outline: none; /* Ensures consistency */
}
.dashboard .main-content .kyc-center form img {
  margin: 1rem 0;
  width: 70px;
}
.dashboard .main-content .kyc-center form a {
  font-size: 15px;
  background-color: var(--fgreen-color);
  padding: 10px 2rem;
  color: var(--white-main);
  border-radius: 8px;
}

@media (max-width: 994px) {
  .dashboard .main-content .kyc-center h2 {
    font-size: 1.2rem;
    margin: 20px 0;
  }
  .dashboard .main-content .kyc-center{
    padding: 8% 8% 0 ;
  }
  .dashboard .main-content .kyc-center .p-tag {
    padding: 1rem 1rem;
    margin-bottom: 20px;
  }
  .dashboard .main-content .kyc-center form input {
    width: 80%;
    padding: 10px;
    margin-bottom: 20px;
  }
  .dashboard .main-content .kyc-center form img {
    margin: 10px 0;
    width: 50px;
  }
  .dashboard .main-content .kyc-center form a {
    font-size: 15px;
    background-color: var(--fgreen-color);
    padding: 10px;
    color: var(--white-main);
    border-radius: 8px;
  }
}

/* referrals dashboard */
.dashboard .main-content .referral {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; 
  margin-top: 20px;
}
.dashboard .main-content .referral .ref-container-1 {
  width: 100%; 
  padding: 2rem 1rem;
  border-radius: 10px;
  background-color: var(--white-main);
}
.dashboard .main-content .referral .ref-container-1 table {
  width: 100%;
  border-spacing: 0 10px; /* Space between rows */
  border-collapse: separate; /* Allows border-spacing to work */
}
.dashboard .main-content .referral .ref-container-1 h3 {
  font-weight: 500;
  margin-bottom: 2rem;
}
.dashboard .main-content .referral .ref-container-1 table th {
  text-align: left;
  font-weight: 400;
  font-size: 14px;
  color: var(--gray);
}

.dashboard .main-content .referral .ref-container-1 table td {
  text-align: left;
  font-weight: 400;
  font-size: 14px;
  font-weight: 300;
}
.dashboard .main-content .referral .split2 {
  width: 100%;
  margin-top: 20px;
} 
.dashboard .main-content .referral .split2 input{
  width: 50%;
  padding: 10px;
} 
.dashboard .main-content .referral .split2 button {
  background: none;
  border: none;
  margin-top: 1rem;
  color: var(--fgreen-color);
  font-size: 15px;
  cursor: pointer;
}


@media (max-width: 994px) {
  .dashboard .main-content .referral {
    gap: 10px;
  }
  .dashboard .main-content .referral .ref-container-1 {
    width: 100%;
    padding: 8%;
  }
  .dashboard .main-content .referral .ref-container-1 h3 {
    font-weight: 400;
    margin-bottom: 1.2rem;
  }
  .dashboard .main-content .referral .ref-container-1 table {
    width: 100%;
    display: block;
    overflow-x: auto;
  }
  .dashboard .main-content .referral .ref-container-1 table th,
  .dashboard .main-content .referral .ref-container-1 table td {
    padding: 0.8rem; /* Further reduce padding */
    font-size: 13px;
    min-width: 120px;
  }
}

/* Login log */
.dashboard .main-content .login-log { 
  margin-top: 20px;
}
.dashboard .main-content .login-log .log-container {
  background-color: var(--white-main);
  padding: 30px; 
}
.dashboard .main-content .login-log h3 {
  margin-bottom: 2rem;
  font-weight: 500;
}
.dashboard .main-content .login-log table {
  text-align: left;
  width: 100%;
  border-spacing: 0 10px; /* Space between rows */
  border-collapse: separate; /* Allows border-spacing to work */
}
.dashboard .main-content .login-log table th {
  text-align: left;
  font-weight: 400;
  font-size: 14px;
  color: var(--gray);
}
.dashboard .main-content .login-log table td {
  text-align: left;
  font-weight: 400;
  font-size: 14px;
  font-weight: 300;
}
.dashboard .main-content .login-log table th,
.dashboard .main-content .login-log table td {
  padding: 0.5rem 0;
  border-top: 1px solid var(--join-community-gray);
}

@media (max-width: 994px) {
  .dashboard .main-content .login-log .log-container { 
    padding: 8%; 
  }
  .dashboard .main-content .login-log table {
    width: 100%;
    display: block;
    overflow-x: auto;
  }
  .dashboard .main-content .login-log table th,
  .dashboard .main-content .login-log table td {
    padding: 5px 10px;
    min-width: 120px; /* Set a minimum width for columns */
  }
}

/* notification dash */
.dashboard .main-content .notification-dash { 
  margin-top: 20px;
}
.dashboard .main-content .notification-dash .container {
  padding: 2rem;
  background-color: var(--white-main); 
}
.dashboard .main-content .notification-dash .container .container-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.dashboard
  .main-content
  .notification-dash
  .container
  .container-in
  .folder
  button {
  margin: 0 10px;
  background-color: unset;
  color: var(--fgreen-color);
  border: none;
}
.dashboard .main-content .notification-dash table {
  text-align: left;
  width: 100%;
  border-spacing: 0 10px; /* Space between rows */
}
.dashboard .main-content .notification-dash table {
  width: 100%;
  text-align: left;
  border-spacing: 0 10px; /* Space between rows */
}
.dashboard .main-content .notification-dash table th {
  font-weight: 400;
  font-size: 14px;
  color: var(--gray);
}
.dashboard .main-content .notification-dash table td {
  font-weight: 400;
  font-size: 14px;
  font-weight: 300;
  min-width: 150px;
}
.dashboard .main-content .notification-dash table th,
.dashboard .main-content .notification-dash table td {
  padding: 10px 5px;
  border-top: 1px solid var(--join-community-gray);
}
.dashboard .main-content .notification-dash table td .operation {
  display: flex;
  align-items: center; 
  gap: 10px;
}
.dashboard .main-content .notification-dash table td .operation .green {
  color: red;
  cursor: pointer;
  background-color: unset;
  border: none;
}
.dashboard .main-content .notification-dash table td .operation .danger { 
  background-color: unset;
  border: none; 
  cursor: pointer !important;
}

 .dashboard .main-content .notification-dash table td:nth-child(4) { 
  color: red;
  min-width: 80px; /* Adjust to desired width */
}

@media (max-width: 994px) {
  .dashboard .main-content .notification-dash .container {
    padding: 1rem 1rem;
    background-color: var(--white-main);
    border-radius: 10px;
  }
  .dashboard .main-content .notification-dash .container .container-in h3 {
    font-size: 17px;
    font-weight: 500;
  }

  .dashboard .main-content .notification-dash table {
    width: 100%;
    display: block;
    overflow-x: auto;
  }
 
  .dashboard .main-content .notification-dash table th,
  .dashboard .main-content .notification-dash table td {
    min-width: 170px;
    padding: 10px;
  }

  /* Reduce width of the first column */
  .dashboard .main-content .notification-dash table th:first-child,
  .dashboard .main-content .notification-dash table td:first-child {
    min-width: 120px; /* Reduce first column width */
  }
  .dashboard .main-content .notification-dash table th:first-child,
  .dashboard .main-content .notification-dash table td:first-child {
    min-width: 120px; /* Reduce first column width */
  }

  /* Increase width of the second column */
  .dashboard .main-content .notification-dash table th:nth-child(2),
  .dashboard .main-content .notification-dash table td:nth-child(2) {
    min-width: 250px; /* Adjust to desired width */
  }

  /* Increase width of the second column */
  .dashboard .main-content .notification-dash table th:nth-child(4),
  .dashboard .main-content .notification-dash table td:nth-child(4) { 
    min-width: 70px; /* Adjust to desired width */
  }

  /*  */
  .dashboard .main-content .notification-dash table td .operation {
    justify-content: unset; 
  }
}

/* transaction dashboard */ 
 



/* Trading */
.trade-body::-webkit-scrollbar{
  display: none;
}

.trade-container {
  display: flex;
  height: 100vh;
  background-color: var(--black-color);
  padding: 10px;
  overflow: hidden;
}

.trade-sidebar {
  width: 20%;
  background: #111111;
  color: white;
  padding: 10px;
  overflow-y: auto; 
  max-height: 100vh;
}
.trade-sidebar::-webkit-scrollbar {
display: none;
}

.trade-sidebar h3 { 
  padding: 10px;
  margin-bottom: 30px;
  color: var(--fgreen-color);
}

.asset-list {
  list-style: none;
  padding: 0;
}

.asset-item {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  border-bottom: 1px solid #333;
  cursor: pointer;
}

.asset-item:hover {
  background: #333;
}

.price-change {
  text-align: right;
}

.gain {
  color: #00ff00;
}

.loss {
  color: #ff4d4d;
}

.main-content {
  width: 80%;
  display: flex;
  flex-direction: column;
  padding: 20px;
  height: 100vh;
  overflow-y: auto;
  
}
.main-content::-webkit-scrollbar {
  display: none; 
}

.chart-container { 
  min-height: 80vh; 
}

 
.main-content .add-trade-amount{ 
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}
.main-content .add-trade-amount .buy-option{ 
  width: 400px;
}
.main-content .add-trade-amount .buy-option .head-text{ 
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px; 
}
.main-content .add-trade-amount .buy-option .head-text p{ 
  color: #686868;
}
.main-content .add-trade-amount .buy-option .limit-text p{ 
  font-size: 12px;
  color: var(--fgreen-color);
  padding: 8px;
  border: 1.7px solid var(--fgreen-color);
  width: fit-content;
  border-radius: 5px;
  margin-bottom: 10px;
}
.main-content .add-trade-amount .buy-option .buying-input{ 
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1.7px solid #686868;
  padding: 8px;
  border-radius: 5px; 
  margin: 10px 0;
}
.main-content .add-trade-amount .buy-option .buying-input select{ 
  padding: 0 5px;
  background-color: transparent;
  color: white;
  border: none;
}
.main-content .add-trade-amount .buy-option .buying-input select:focus{ 
  outline: none;
}
.main-content .add-trade-amount .buy-option .buying-input select option{ 
  padding: 0 5px;
  background-color: var(--black-color);
  color: white; 
}
.main-content .add-trade-amount .buy-option .buying-input label{  
  color: #686868; 
  font-size: 14px; 
}
.main-content .add-trade-amount .buy-option .buying-input input{  
  color: white;
  background-color: transparent;
  border: none;
  width: 270px;
}
.main-content .add-trade-amount .buy-option .buying-input input:focus{  
  outline: none;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}
.main-content .add-trade-amount .buy-option button{  
  border: none;
  background-color: var(--fgreen-color);
  width: 100%;
  padding: 10px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  color: white;
  border-radius: 8px;
}
.main-content .add-trade-amount .sell-option button{   
  background-color: var(--fred-color); 
}
.pairs-btn{
  display: none;
}
.trade-sidebar h3 i{ 
  display: none;
}
@media (max-width:768px){
  .trade-sidebar { 
    width: 70%;
    position: absolute;
    z-index: 1000;
    height: 100vh;
    display: none;
  }
  .trade-sidebar h3{ 
    position: sticky;
    top: -10px !important;
    background-color: var(--black-color);
  }
  .trade-sidebar h3 i{ 
    float: right;
    display: block;
  }
  .main-content {
    width: 100%; 
    padding: 3%;
  } 
  .pairs-btn{
    padding: 8px;
    border: none;
    border-radius: 100px;
    margin-bottom: 10px;
    display: block;
    background-color: gray;
    color: rgb(199, 199, 199); 
  }
  .main-content .add-trade-amount{ 
    padding: 8%;
  }
  .main-content .add-trade-amount .buy-option .buying-input label{   
    width: 117px;
  } 

  .main-content .add-trade-amount .buy-option{ 
    width: 100%;
  }
  .chart-container { 
    min-height: 50vh; 
  }
  
}


.wallet-form-container{   
  display: none;
  transition: .5s ease;
}
.wallet-ad{   
  width: 100%; 
  background: white !important; 
  display: block !important;
  padding: 20px;
  margin-bottom: 20px;

}
.wallet-ad h2{   
  font-weight: 400;
  font-size: 20px;
  color: var(--fgreen-color);
}
.wallet-ad .input-wrapper{   
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
  gap: 10px; 
}
.wallet-ad .input-wrapper .wallet-input-container{   
  display: flex;
  flex-direction: column;
  width: 20%;
}
.wallet-ad .input-wrapper .wallet-input-container label{   
  font-size: 15px;
  color: var(--black-secondary-color);
  margin-bottom: 5px;
}
.wallet-ad .input-wrapper .wallet-input-container select{   
  padding: 8px;
  font-size: 16px;
  border-radius: 8px;
}
.wallet-ad .input-wrapper .wallet-input-container input{   
  padding: 7px 8px;
  font-size: 16px;
  outline: none;
  border-radius: 8px;
  border: 1px solid black;
}
.wallet-ad .input-wrapper .wallet-input-container input::placeholder{     
  color: #a0a0a0;
}
.wallet-ad .input-wrapper .wallet-full{    
  width: 60%;
}
.wallet-ad .btn-container button{    
  padding: 10px 18px; 
  background-color: var(--fgreen-color);
  border: none;
  border-radius: 8px;
  font-size: 16px;
  color: white;
  cursor: pointer;
}
.wallet-ad .btn-container .cancel-btn{    
  padding: 10px 18px; 
  background-color:#dfdfdf; 
  color: var(--black-color);
}

.payment-method .amount-input-container{
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px; 
  width: 50%;
  padding: 10px 0; 
}
.payment-method .amount-input-container input{
  border: none; 
  padding: 10px 8px;
  font-size: 16px;
  outline: none;
  border-radius: 8px;
  border: 1px solid black;
  width: 100%;
}

 
.deposit-wallet .payment-method-container{   
  margin: 20px 0 30px 0;

}
.payment .payment_det{
  display: flex;
  align-items: center;
  gap: 15px ;
  margin-bottom: 20px;
}
.payment .payment_det{
  display: flex;
  align-items: center;
  gap: 15px ;
  margin-bottom: 20px;
}
.payment .payment_det img{
  width: 100px;
}
.payment .amount-input-container{
  position: relative;
  
}
.payment .amount-input-container .copy-btn{
  position: absolute;
  right: 10px;
  bottom: 20px;
  cursor: pointer;
}


/* Make the label act like a button */
.custom-checkbox {
  display: inline-block;
  cursor: pointer; 
  margin-right: 20px;
  user-select: none;
}

/* Hide the default checkbox */
.custom-checkbox input {
  display: none;
}

/* Style the box (acts as the new checkbox) */
.custom-checkbox .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
  border: 2px solid transparent; /* Default: no border */
  border-radius: 8px;
  transition: border 0.3s ease-in-out;
}

/* Image inside the checkbox */
.custom-checkbox img {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  object-fit: cover;
}

/* Text below the image */
.custom-checkbox .text {
  font-size: 16px;
  margin-top: 10px;
  font-weight: 400;
}

/* Show border when checkbox is checked */
.custom-checkbox input:checked + .box {
  border: 2px solid #28a745; /* Green border when selected */
  background-color: #f0fdf4; /* Light green background */
}




@media (max-width:768px){
  .wallet-ad h2{   
    font-size: 18px;
  }
  .wallet-ad .input-wrapper{   
    flex-direction: column;
  }
  .wallet-ad .input-wrapper .wallet-input-container{    
    width: 100% !important;
  }
  .wallet-ad .input-wrapper .wallet-input-container select option{    
    font-size: 14px !important; 
  }
  .payment-method .amount-input-container{ 
    width: 100%; 
  }
  .payment .payment_det img{
    width: 50px;
  }
  .payment .payment_det .payment_text h1{
    font-size: 25px;
    font-weight: 500;
  }
}


.kyc-form-container{
  background-color: white;
  padding: 20px;
  width: 100%; 
}
 
.kyc-form-container .kyc-form-wrapper{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
}
.kyc-form-container .kyc-form-wrapper .kyc-form-content{
  display: flex; 
  flex-direction: column;
  width: 200px;
}
.kyc-form-container .kyc-form-wrapper .kyc-form-content label{
  color: grey;
  margin-bottom: 5px;
  font-size: 14px;
}
.kyc-form-container .kyc-form-wrapper .kyc-form-content input{
  width: 100% !important;
  padding: 8px !important;
  border-radius: 5px !important;
  border: 1px solid var(--black-color) !important;
}
.kyc-form-container .kyc-form-wrapper .kyc-form-content input::placeholder{
  color: #c0c0c0!important;
}
.kyc-form-container .kyc-form-wrapper .kyc-form-content input[type="date"]{ 
  width: 100% !important;
  padding: 7px !important;
  border-radius: 5px !important;
}
.kyc-form-container .kyc-form-wrapper .kyc-form-content select{ 
  width: 100% !important;
  padding: 8px !important;
  border-radius: 5px !important;
}

.kyc-form-container .btn-container button{    
  padding: 10px 18px; 
  background-color: var(--fgreen-color);
  border: none;
  border-radius: 8px;
  font-size: 16px;
  color: white;
  cursor: pointer;
}

.password-page .input-wrapper .password-container{
  width: 50%;
}
.password-page .input-wrapper .password-container input{
  width: 100% !important;
}

.total-assets-bal{
  background-color: white;
  margin-top: 20px;
  padding: 30px;
}
.total-assets-bal .asset-head h1{
  font-size: 25px;
  font-weight: 500;
}
.total-assets-bal .asset-containers{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 40px;
  gap: 10px;
}
.total-assets-bal .asset-containers .asset-balance{
  width: calc((95% - 5px) / 3);
  margin-right: 10px;
  background-color: rgb(247, 247, 247);
  padding: 20px;
}
.total-assets-bal .asset-containers .asset-balance .bal-head{
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  align-items: center;
}
.total-assets-bal .asset-containers .asset-balance .bal-head p{
  font-size: 15px;
  color: var(--gray);
}
.total-assets-bal .asset-containers .asset-balance .bal-head h2{
  font-size: 18px;
  color: var(--gray);
  font-weight: 500;
}
.total-assets-bal .asset-containers .asset-balance .bal-head img{
  width: 70px;
  border-radius: 200px;
}
.total-assets-bal .asset-containers .asset-balance h3{
  font-size: 25px;
}

@media (max-width:768px){
  .total-assets-bal .asset-containers .asset-balance{
    width: 100%;
    margin-right: 0;
  } 
  .total-assets-bal .asset-containers .asset-balance .bal-head img{
    width: 50px;
  }
}

.deposit-wallet{
  display: block !important;
}

.deposit-amount-container{
  display: flex;
  flex-direction: column;
  width: 50%;
  margin-top: 30px;
}
.wallet-input-container{
  position: relative;
}
.wallet-input-container .copy-btn{
  position: absolute !important;
  right: 5px;
  padding: 5px; 
  border: none; 
  bottom: 5px;
  border-radius: 100px;
  cursor: pointer;
  font-size: 12px;
  color: white;
  background-color: black;
}


.withdrawal-form-container{
  margin-top: 20px;
}


.mobile-body{
  background-color: var(--black-secondary-color);
  padding: 0 13px 0 13px;
}

.only-mobile-nav{
  display: flex;
  align-items: center;
  justify-content: space-between; 
  padding: 13px 0;
}
.only-mobile-nav .m-left-col{ 
  gap: 5px;  
  flex-direction: column;
}
.only-mobile-nav .m-left-col .dashboard-lab{
  color: var(--gray);
}
.only-mobile-nav .m-left-col i{
  color: var(--fgreen-color);
  border: 2px solid var(--fgreen-color);
  border-radius: 100px;
  font-size: 15px;
  height: 30px;
  width: 30px;
  line-height: 15px;
  text-align: center;
  padding: 5px; 
  margin-right: 5px;
}
.only-mobile-nav .m-left-col a{
  color: white;
  font-size: 15px;
}
.only-mobile-nav .m-left-col label{
  color: white;
  font-size: 15px;
}

.only-mobile-nav .m-right-col img{
  width: 30px;
  height: 30px;
  border-radius: 100px;
  object-fit: cover;
}

.mobile-page-1{
  display: flex; 
  justify-content: space-between;
  margin-top: 20px; 
}
.mobile-page-1 .mobile-row-2{
  width: calc(50% - 8px);
  background-color: #1f2229;
  border-radius: 20px;
}
.mobile-page-1 .mobile-row-2 img{
  width: 100%;
}
.mobile-page-1 .mobile-row-2 .buy-crypto-visa{
  display: flex;
  align-items: center;
  padding: 20px;
  justify-content: space-between;
  gap: 10px; 
}
.mobile-page-1 .mobile-row-2 .buy-crypto-visa h2{
  font-size: 14px;
  color: white;
  font-weight: 400;
}
.mobile-page-1 .mobile-row-2 .buy-crypto-visa img{
  width: 50%;
}

.action-btns{
  display: flex;
  justify-content: space-between; 
  width: 98%;  
  transform: translate(-50%, -50%);
  left: 50%; 
  background-color: #1f2229;
  border-radius: 20px;
  padding: 10px;
  gap: 5px;
  position: fixed;
  bottom: -30px;
}
.action-btns a{
  text-align: center;
  color: white;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.action-btns a img{
  width: 40px;
  margin-bottom: 5px;
}

.crypto-assets{
  margin-top: 10px; 
  padding: 10px;
  background-color: #1f2229;
  border-radius: 20px;
  width: 100%; 
}

.tradingview-widget-container{
  width: 100%;
  height: 60vh;
  border-radius: 20px;
  background-color: #1f2229;
  margin-top: 10px; 
}
.crypto-assets-main{ 
  margin-bottom: 105px;
}


.trade-history{
  margin-top: 20px; 
  flex-wrap: wrap;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.trade-history .trade-history-container{
  width: 300px; 
  background-color: white;
  padding: 20px; 
}
.trade-history .trade-history-container .t-top-text{
  display: flex; 
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgb(189, 189, 189);
  padding: 8px 0;
}
.trade-history .trade-history-container .t-top-text h6{
  font-size: 15px;
}
.trade-history .trade-history-container .t-top-text .t-time{
  color: grey;
}
.trade-history .trade-history-container .t-top-text .t-type{
  font-weight: 600;
}
.trade-history .trade-history-container .t-top-text .t-active{
  color: green;
}
.trade-history .trade-history-container .t-top-text p{
  font-size: 13px;
  text-transform: capitalize;
} 

.progress-bar .progress{
  border-radius: 100px;
  padding: 2px 5px; 
  margin-top: 15px;
}
 
@media screen and (max-width: 768px){
  .trade-container{
    flex-direction: column;
  }  
  .trade-history{
    flex-direction: column;
  }
  .trade-history .trade-history-container{
    width: 100%; 
  }
  
}


.copy-trading-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-auto-flow: dense;
  grid-gap: 10px;
}

.copy-trading-container > *:only-child {
  grid-column: span 1; 
  width: 300px !important;
}
.copy-trading-container .copy-top-dt{
  background-color: white; 
  padding: 20px;
  border-radius: 20px;
}
.copy-trading-container .copy-top-dt .top-text{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.copy-trading-container .copy-top-dt .top-text img{
  width: 50px;
  padding: 10px;
  background-color: var(--blue-main-ligher);
  border-radius: 200px;
  height: 50px;
  object-fit: contain;
}
.copy-trading-container .copy-top-dt .top-text h2{
  font-size: 18px;
  font-weight: 500;
}
.copy-trading-container .copy-top-dt .mid-text{ 
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 10px 0;
}
.copy-trading-container .copy-top-dt .mid-text h1{
  font-size: 30px;
  color: var(--fgreen-color); 
}
.copy-trading-container .copy-top-dt .mid-text h1 span{
  font-weight: 500;
  font-size: 18px;
  color: var(--black-secondary-color);
  
}
.copy-trading-container .copy-top-dt .mid-text p{
  font-size: 18px;  
  font-weight: 500;
}
.copy-trading-container .copy-top-dt .mid-text p span{
  font-size: 18px;  
  font-weight: 300;
}
.copy-trading-container .copy-top-dt .mid-text .tradingview-widget-container{
  background-color: white;
}
.copy-trading-container .copy-top-dt .mid-text .tradingview-widget-container{
  background-color: white;
}
.copy-trading-container .copy-top-dt button{
  width: 100%;
  padding: 8px;
  background-color: var(--fgreen-color);
  border-radius: 100px;
  border: none;
  color: white;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
}


.copy-trade-content{
  position: relative !important;
}
.view-copy-trading-container{
  background-color: white;
  padding: 20px 30px;
  display: flex;
  gap: 30px; 
  align-items: start;  
}
.view-copy-trading-container button{
  position: absolute;
  top: 50px;
  right: 50px;
  background-color: var(--fgreen-color);
  padding: 15px 25px;
  border-radius: 100px;
  border: none;
  color: white;
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
}
.view-copy-trading-container .left-copy-container img{
  width: 150px;
  background-color: var(--blue-main-ligher);
  padding: 10px;
  height: 150px;
  border-radius: 100px;
  object-fit: contain;
}
.view-copy-trading-container .left-copy-container h1{
  font-size: 30px;
  font-weight: 500;
  margin-top: 20px;
}
.view-copy-trading-container .right-copy-container{
  display: flex; 
  flex-wrap: wrap; 
  gap: 10px;
}
.view-copy-trading-container .right-copy-container .copy-text{
  width: 300px; 
  background-color: rgb(242, 250, 243);
  padding: 10px 20px;
}
.view-copy-trading-container .right-copy-container .copy-text label{ 
  font-size: 15px;
}
.view-copy-trading-container .right-copy-container .copy-text h6{ 
  font-size: 25px;
  margin-top: 10px;
  font-weight: 500;
}

.white-bg{
  background-color: white !important;
  border-radius: 0;
  padding: 20px;
  width: 100% !important;
}

@media screen and (max-width: 768px){
  .view-copy-trading-container .right-copy-container .copy-text{
    width: 48%;  
  }
  .view-copy-trading-container button{
    position: absolute;
    top: 30px;
    right: 30px;
    background-color: var(--fgreen-color);
    padding: 15px 25px;
    border-radius: 100px;
    border: none;
    color: white;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
  }
  .white-bg{
    padding: 8%;
  }
  .view-copy-trading-container{
    flex-wrap: wrap;
  }
  .view-copy-trading-container .left-copy-container img{
    width: 120px; 
    height: 120px;
  }
  
  
}


.bot-form{
  text-align: center; 
}
.ai-bot-page{
  position: relative;
}

.bot-form img{
  width: 100%;
  border-radius: 10px;
  height: 190px;
  object-fit: cover;
}
.bot-form .bot_name{
  font-size: 18px;
  background-color: var(--black-secondary-color);
  color: white;
  width: fit-content;
  padding: 5px 10px;
  border-radius: 50px;
  margin: 5px auto; 
}
.bot-form .roi{
  font-size: 18px; 
  font-weight: 500; 
  margin-top: 10px;
  color: var(--fgreen-color);
}
.bot-form .minimum{
  font-size: 25px; 
  font-weight: 600; 
  margin-top: 0;
}
.bot-form .duration{
  font-size: 18px;  
  color: grey; 
}
.bot-form button{
  margin-top: 20px;  
}

 
.amount-container {
  position: absolute;
  top: 10px;
  background-color: rgba(0, 0, 0);
  width: 500px; 
  text-align: left;
  padding: 20px;
  left: 20%;
  display: none;
}
.amount-container h1{
  font-size: 25px;
  color: white;
  font-weight: 500;
  margin-bottom: 20px;
}
.amount-container .input-wrapper{
  display: flex;
  flex-direction: column;
} 
.amount-container .input-wrapper label{
  color: white;
  margin-bottom: 5px;
}
.amount-container .input-wrapper input{ 
  padding: 10px;
  font-size: 15px;
}
.amount-container .input-wrapper p{ 
  color: white;

  margin-top: 5px;
}
.amount-container .btn-container{ 
  display: flex;
  gap: 10px;
}

@media screen and (max-width:768px){
  .amount-container { 
    background-color: rgba(0, 0, 0);
    width: 100%;  
    left: 0;
  }
  .bot-form{ 
    width: unset;
  }
}

 