@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
  }
  /* Dashboard and Wallet Fonts */
  @media (min-width: 768px) {  /* For Desktop */
    .font10 {
      font-size: 18px;
  }
  .font18 {
      font-size: 24px;
  }
}
@media (max-width: 768px) {  /* For Mobile */
    .font10 {
      font-size: 10px;
  }
  .font18 {
      font-size: 18px;
  }
}
 /* Dashboard and Wallet Fonts */

 /* Header Ticker
/* Add this CSS in your stylesheet or within a style tag */
.ticker-container {
    overflow: hidden;
    white-space: nowrap;
    background-color: #2d0389; 
    border-bottom: 2px solid #3a03b3; 
}

.ticker {
    display: inline-block;
    padding-right: 100%; /* Move the text outside the container to create the sliding effect */
    animation: marquee 30s linear infinite; /* Adjust the animation duration as needed */
    color: white; /* Set text color to white */
}

@keyframes marquee {
    0% {
        transform: translateX(30%);
    }

    100% {
        transform: translateX(-30%);
    }
}
 /* Header Ticker */


.gradient-custom {
    /* fallback for old browsers */
    background: #6a11cb;
    
    /* Chrome 10-25, Safari 5.1-6 */
    background: -webkit-linear-gradient(to right, rgba(106, 17, 203, 1), rgba(37, 117, 252, 1));
    
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    background: linear-gradient(to right, rgba(106, 17, 203, 1), rgba(37, 117, 252, 1))
    }

.whatsapp-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.whatsapp-icon img {
  width: 40px;
  height: 40px;


  transition: transform 0.3s ease;
}

.whatsapp-icon img:hover {
  transform: scale(1.1);
}

    
    
@media (min-width: 768px) {
.vh-100 {
    height: 120%!important;
}



.pending-container {
    padding: 200px 20px;
}
}
.vh-100-new {
    height: 110%!important
}
.vh-140-new {
    height: 140%!important
}
.vh-120-new {
    height: 120%!important
}
@media (max-width: 768px) {
.pending-container {
    padding: 60px 20px;
}
.vh-130-new {
    height: 130%!important
}

.vh-80 {
    height: 90%!important
}

}


.padding-40-up-down {
    padding: 40px 20px;
}

.padding-20 {
    padding: 20px 20px;
}

.padding-40-20 {
    padding: 40px 20px;
}

.padding-0-20 {
    padding: 0px 20px;
}

.padding-0-20-20-20 {
    padding: 0px 20px 20px 20px;
}
.padding-0-0-20-0 {
    padding: 0px 0px 20px 0px;
}





.color-white {
    color: #ffffff!important;
}

.color-light-purple {
    color: #e6d0ff!important;
}


.breadcrumb-bar {
    background-image: url('../.././assets/img/site/breadcrumbs.jpg'); /* Replace with your image path */
    background-size: cover; /* Ensure the image covers the entire area */
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Prevent repeating the image */
    padding: 20px 0; /* Vertical padding for spacing */
    color: #f6efff; /* Ensures text remains visible */
}


.breadcrumb-title {
    margin-bottom: 20px; /* Space between title and breadcrumbs */
}

.page-breadcrumb {
    display: flex;
    justify-content: center; /* Center the breadcrumb navigation */
}

.page-breadcrumb .breadcrumb {
    background: none; /* Remove background from breadcrumb */
    padding: 0;
    margin: 0;
    list-style: none; /* Remove default list styling */
}

.page-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    padding: 0 8px; /* Spacing between breadcrumb items */
    color: #e6d0ff; /* Adjust separator color */
}

/* Dashboard Box background color */
.rounded-box {
    position: relative;
    background-image: url('../.././assets/img/site/dashboard-bg.jpg'); /* Using asset() for correct URL */
    background-size: cover; /* Ensure the image covers the entire box */
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Prevent repeating the image */
    border-radius: 10px;
    padding: 20px;
    height: 200px; /* Adjust height as needed */
}

.upper-left, .upper-right, .center-heading, .lower-left, .lower-right {
    position: absolute;
    color: #ffffff; /* Text color */
}

.upper-left {
    top: 10px;
    left: 10px;
}

.upper-right {
    top: 10px;
    right: 10px;
}

.center-heading {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Center the heading horizontally and vertically */
}

.lower-left {
    bottom: 10px;
    left: 10px;
}

.lower-right {
    bottom: 10px;
    right: 10px;
}

/* Under BOX small boxes */
.rowflex {
    display: flex; /* Use flexbox for layout */
    flex-wrap: wrap; /* Allow wrapping for smaller screens */
    gap: 10px; /* Space between boxes */
}

.block {
    background-color: #333; /* Background color for the blocks */
    border-radius: 8px; /* Slightly rounded corners */
    padding: 20px;
    color: #e6d0ff; /* Text color */
    text-align: center; /* Center text and icons */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1; /* Allow blocks to grow and shrink */
    min-width: 0; /* Prevent blocks from shrinking too much */
    font-size: 12px;
}

.icon {
    font-size: 50px; /* Adjust icon size as needed */
    margin-bottom: 15px; /* Space between icon and heading */
}

/* Responsive */

/* Header */
header {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 10px 0;
    background-color: #faf5ff;
    box-sizing: border-box; /* Ensure padding doesn't affect the width */

}

.vlogo {
    text-align: center; /* Center the image inside the container */
}

.vlogo img {
    max-width: 12%;
    height: auto;
    display: inline-block; /* Ensure it's treated as an inline element */
}
/* End Header */

/* Plan Page Designing */
.join-us-container {
    text-align: center;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.fee-title {
    color: #c10037;
    font-size: 2em;
    margin-bottom: 20px;
}

.intro-text {
    font-size: 1.2em;
    color: #333;
    margin-bottom: 10px;
}

.features-list {
    list-style-type: disc;
    padding-left: 20px;
    text-align: left;
}

.features-list li {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 8px;
}

.payment-info {
    text-align: left;
    margin-top: 20px;
}

.payment-info label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.payment-info input[type="text"],
.payment-info input[type="file"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

.payment-info input[type="file"] {
    padding: 3px;
}

/* End Plan Page Designing */

/* Wallet Page */

.transfer-btn {
    margin-top: 10px; /* Space between paragraph and button */
    padding: 10px 20px; /* Adjust button padding */
    background-color: #007bff; /* Bootstrap primary color */
    color: #fff; /* Text color */
    border: none; /* Remove default border */
    border-radius: 5px; /* Rounded corners */
    cursor: pointer; /* Pointer cursor on hover */
    transition: background-color 0.3s ease; /* Smooth color transition */
}

@media (max-width: 768px) {
    .transfer-btn {
        padding: 8px 16px; /* Smaller padding for small screens */
        font-size: 14px; /* Adjust font size if needed */
    }
}

@media (max-width: 480px) {
    .transfer-btn {
        padding: 6px 12px; /* Even smaller padding for extra small screens */
        font-size: 12px; /* Further reduce font size if needed */
    }
}


.table {
    border-radius: 10px;
    overflow: hidden; /* Ensures the border-radius applies properly */
}
@media (max-width: 768px) {
    .table-responsive tr {

        justify-content: space-between; /* Space out the items */
        border-bottom: 1px solid #ddd; /* Optional: Add a border for separation */
    }

    .table-responsive td {
        flex: 1; /* Make each cell take up equal space */
        text-align: left; /* Align text to the left */
        padding: 10px; /* Add some padding for spacing */
    }

    .table-responsive td:last-child {
        text-align: right; /* Align the last item (Status) to the right */
    }
}
/* Task / Daily Work Table Responsive */
@media (max-width: 768px) {
    .table-responsive-task tr {

        justify-content: space-between; /* Space out the items */
        border-bottom: 1px solid #ddd; /* Optional: Add a border for separation */
    }

    .table-responsive-task td {
        flex: 1; /* Make each cell take up equal space */

        padding-bottom: 10px; /* Add some padding for spacing */

    }
}

/* END Task / Daily Work Table Responsive */


.transfer-btn:hover {
    background-color: #0056b3; /* Darker shade for hover effect */
}

/* End Wallet Page */