

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Nunito', sans-serif; /* Default font for Laravel */
}

.container{
    /*padding-top:3rem;*/
}

.py-4{
    padding-top:4.5rem !important;
}

.h5, h5{
    font-size:1.125rem !important;
    margin-bottom:0.5rem !important;
}

.dropdown-menu{
    left:auto;
    padding:0;
    min-width:8rem;
}


/* Header tag margin resets (h1-h6) */
h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

.navbar{
    /*padding:1rem 0 !important;*/
}

#navbarSupportedContent{
    margin-left:23rem;
}

.message {
    position: fixed;
    z-index: 100;
    bottom: 20px;
    left: 20px;
    background-color: #0088cc; /* Telegram blue */
    padding: 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
}

.message a {
    color: white;
    font-size: 24px;
    text-decoration: none;
}

.message i {
    font-size: 30px;
    display: flex;
    align-items: center;
}

.nav-flex{
    display: flex;
}

.nav-link{
    /* font-size: 1rem; */
    font-size: 16px;
    font-weight: 600;
}

.nav-link:hover{
    color: gold;
}

.navbar {
    padding: 0;
    position: fixed;
    /* top: -70px; Initially hidden above the viewport
    left: 0; */
    width: 100%;
    z-index: 1030;
    transition: top 0.4s ease-in-out; /* Smooth slide-in effect */
}

.navbar.show {
    top: 0; /* Slide down when class 'show' is added */
}

/* body {
    padding-top: 60px; Adjust to prevent content from being hidden behind navbar
} */

.log-span{ 
    display: flex;
    gap: .4rem;
    margin-top: .5rem;
}

.log-span span{
    align-self:center;
}

.log-span a{
    color: #0d6efd;
    padding:0;
}

.log-span a:hover{
    color: #0d6efd;
}





/******************* FOR TEMPORARY NAVBAR **********************/

.hero-container{
    height: 100vh;
    background: url(bitcoin.jpg) no-repeat center center;
    background-size: cover;
}

/* .temporary-navbar {
    width: 100%;
    background: #ffffff; White background
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); Soft shadow 
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
} */

.logo img {
    height: 60px; /* Adjust size as needed */
    border-radius: 50px;
}

.tem-nav-links ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.tem-nav-links ul li {
    display: inline-block;
}

.tem-nav-links ul li a {
    text-decoration: none;
    color: white; /* Dark text */
    font-size: 16px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.tem-nav-links ul li a:hover {
    /* color: #007bff; Blue hover effect */
    color: gold;
}

.hero-content{
    color: white;
}

.hero-content div{
    padding-top: 6rem;
    margin: 0 3rem;
    text-align: right;
}

.hero-content div h1{
    font-size: 4rem;
    padding-bottom: 1rem;
}

.typed-cursor{
    display: none;
}







/*********************** FOR JOIN **************************/

.join{
    padding: 4rem 0;
}

.join-h2{
    text-align: center;
    padding: 1rem 0;
}

.join-steps{
    padding: 2rem 0;
    margin: 0 2rem;
    display: flex;
    justify-content: space-around;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(48, 46, 77, 0.15);
}

.join-steps .line, .line2{
    position: absolute;
}

.join-steps .line{
    margin-top: 5rem;
    left: 28%;
}

.join-steps .line2{
    margin-top: 5rem;
    left: 62%;
}

.join-steps div{
    justify-self: center;
    padding: 2rem 3rem;
    text-align: center;
    width: 100%;
    /* background-color: white; */
    /* box-shadow: 0 0 20px rgba(48, 46, 77, 0.15); */
}

.join-steps div img{
    width: 100px;
}




/************* FOR ABOUT ************/


.tabContents{
    display: none;
}


.active-content{
    display: block;
}

.about {
    padding: 50px 10%;
    background: #f9f9f9;
}

.about-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 5rem;
    position: relative; /* Needed for absolute tabContents */
}

.about-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
}

.about-content {
    flex: 1;
    position: relative; /* Makes tab contents absolute inside it */
    min-height: 250px; /* Ensures stable height */
}

.about-text h1 {
    font-size: 28px;
    color: #333;
    margin-bottom: 10px;
}

.about-text h3 {
    font-size: 18px;
    color: #666;
    padding-bottom: 1rem;
    line-height: 1.6;
}

.tabTitle {
    margin-top: 20px;
}

.tabLinks {
    padding: 10px 20px;
    margin-right: 10px;
    border: none;
    background: #007bff;
    color: #fff;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

.tabLinks:hover, .tabLinks.active {
    background: #0056b3;
}

/* Ensure all tabContents take up same space */
.tabContents {
    position: absolute;
    top: 0px; /* Adjust based on layout */
    left: -10px;
    width: 50vw;
    min-height: 100px; /* Keeps height stable */
    display: none;
    transition: opacity 0.3s ease-in-out;
}

.tabContents.active-content {
    display: block;
    opacity: 1;
}

.tabContents h4 {
    font-size: 20px;
    color: #444;
    /* background: #fff; */
    padding: 15px;
    border-radius: 5px;
    /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
}

.tabParent-con {
    position: relative; /* Keeps it in place */
    min-height: 150px; /* Adjust to accommodate content */
    max-height: 350px; /* Prevent excessive expansion */
    overflow: hidden; /* Prevents unwanted movement */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Keeps content centered */
}







/*************************** FOR PLANS *****************************/

.plan-container{
    background: rgba(2, 0, 36, 1);
    padding: 5rem 0;
}

.plan-package{
    display: flex;
    flex-wrap: wrap;
    /* justify-content: space-around; */
    margin: 0 3rem;
    gap: 20px;
}

.plan-pack-content{
    flex: 0 0 23.7%;
    text-align: center;
    padding: 3rem 1rem;
    height: auto;
    color: white;
    border: 2px solid #fff;
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(2, 0, 36, 1) 0%, rgba(47, 45, 45, 1) 35%);
}

.plan-h1{
    text-align: center;
    padding-bottom: 2rem;
    color: white;
}

.pack-head h1{
    font-size: 1.3rem;
}

.pack-head h5{
    color: #18FFFF;
}

.pack-head span{
    display: inline-block;
    width: 30%;
    height: 2px;
    background-color: #18FFFF;
    color: #18FFFF;
}

.pack-body{
    padding-top: 1rem;
    padding-bottom: 3rem;
}

.pack-link{
    padding-top: 2rem;
}

.pack-link > a{
    text-decoration: none;
    padding: .5rem 1rem;
    border-radius: 10px;
    font-weight: 600;
    background-color: white;
    color: black;
}

.pack-final{
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    padding-top: 2rem;
}

.pack-final.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.pack-final select{
    width: 100%;
    padding: 5px 10px;
}

.payment-method{
    border: none;
    border-bottom: 1px solid aqua;
    border-radius: 5px;
}

.payment-method:focus{
    outline: none;
}






/* FOR PERFORMANCE */

.perform{
    padding: 5rem 0;
    background-color: white;
}

.perform-container{
    display: flex;
    flex-wrap: wrap;
}

.perform-left{
    flex: 0 0 70%;
    align-items: center;
    justify-self: center;
}

.left-top-con .left-icon , .left-bottom-con .left-icon{
    background: linear-gradient(180deg, #034fab 0%, #064aa8 4.58%, #202a95 44.13%, #30178a 77.34%, #361086 100%);
    padding: 1.3rem 1.5rem;
    border-radius: 50px;
}

.left-top-con .left-icon i, .left-bottom-con .left-icon i{
    color: white;
    font-size: 3rem;
}

.left-top-con div p, .left-bottom-con div p{
    width: 70%;
}

.perform-right{
    flex: 0 0 30%;
}

.perform-right h1{
    font-weight: bold;
}

.perform-right p{
    width: 70%;
}

.left-top{
    padding-bottom: 4rem;
}

.left-top, .left-bottom{
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.left-top .left-top-con, .left-bottom-con{
    display: flex;
    gap: 1rem;
    align-items: center;
}





/******************** FOR PAYMENT *******************/
.payment{
    padding: 3rem 0;
}

.payment-h1{
    text-align: center;
    padding-bottom: 3rem;
}

.payment-h1 h1{
    font-weight: bold;
}

.payment-h1 p{
    color: #0bb6b6;
    font-weight: 700;
}

.payment-options{
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.payment-options div{
    color: #139b9b;
    font-weight: bold;
    text-align: center;
    flex: 0 0 20%;
    padding: 2rem 0rem;
    font-size: 2rem;
    background-color: #f1f1f1;
}










































/**************************** FOR DASHBOARD **************************/
.home-container{
    /* background-color: #1b1b3a; */
    color: white;
}


.navbar-expand-md .navbar-nav.ms-auto {
    margin-left: 0 !important;
}

.regel{
    padding-top: 4rem;
}

.log-message{
    padding: 0;
    height: 0;
}


.message-body{
    position: absolute;
    width: 50%;
    display: flex;
    justify-content: space-between;
    background-color: #30178a;
    padding: 4px 12px;
    border: 1px solid grey;
    border-radius: 7px;
    color: white;
}

.drop-nav{
    display: flex;
    flex-direction: row-reverse;
    gap: .6rem;
}

.home-dash{
    display: flex;
    align-items: center;
    color: #333;
    font-size: 16px;
    text-decoration: none;
}

.dropdown-toggle{
    display: flex !important;
    justify-content: right;
}

.dropdown-toggle::after{
    margin-top: 10px;
}

.home-other{
    display: flex;
    gap: 2rem;
}

.home-other a{
    padding: 0 !important;
    display: flex;
    align-items: center;
    color: #333;
    font-size: 16px;
    text-decoration: none;
}

.con-nav{
    padding: 0 !important;
}

/*************** FOR FOOTER *************/
.footer{
    padding-top: 3rem;
    background-color: #222;
    color: white;
}

.footer h5{
    text-align: center;
    background-color: #333;
    padding: 1rem 0;
}

.footer-container{
    margin: 0 2rem;
    display: flex;
    padding: 2rem 0;
    gap: 6rem;
    flex-wrap: wrap;
}

.first-section{
    flex: 0 0 30%;
}

.first-section p{
    font-size: 1rem;
}

.second-section{
    flex: 0 0 25%;
}

.second-section li{
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.second-section li a{
    text-decoration: none;
    font-size: 1rem;
    color: white;
    transition: all ease .7s;
}

.second-section li a:hover{
    color: #de9f17;
}

.second-section span{
    display: inline-block;
    width: 30%;
    height: 3px;
    background: linear-gradient(90deg, #de9f17 0%, #d19c15 33%, #fff58a 67%, #ffd147 100%);
    color: #18FFFF;
}

.third-section{
    flex: 0 0 25%;
}

.third-section li a{
    text-decoration: none;
    font-size: 1rem;
    color: white;
    transition: all ease .7s;
}

.third-section li a:hover{
    color: #de9f17;
}

.third-section span{
    display: inline-block;
    width: 30%;
    height: 3px;
    background: linear-gradient(90deg, #de9f17 0%, #d19c15 33%, #fff58a 67%, #ffd147 100%);
    color: #18FFFF;
}

.third-section li{
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}



/******************** FOR DASHBOARD HERO *****************/
.hero-head{
    display: flex;
    justify-content: space-between;
    margin: 0 2rem;
}

.head-pay{
    display: flex;
    gap: 1rem;
    padding-bottom: 1rem;
}

.head-pay a{
    align-self: center;
    text-decoration: none;
    padding: .5rem .8rem;
    color: white;
    border-radius: 7px;
    background-color: red;
}

.head-pay a:first-child{
    background-color: #007bff;
}

.hero-body{
    background-color: #12122cda;
    padding: 20px 0;
}

.dashboard-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px;
    flex-wrap: wrap;
}
.market{
    color: black;
    padding-top: 1rem;
}
.dashboard-container .card {
    background-color: #1b1b3a !important;
    color: white !important;
    border-radius: 10px;
    /* padding: 20px; */
    width: 280px;
    height: 30vh;
    /* text-align: center; */
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.card h6{
    font-weight: 600;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 20px;
}

.card h4{
    font-weight: bold;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
}

.graph-container {
    width: 100%;
    height: 100px;
    overflow: hidden;
    position: relative;
}
svg {
    position: absolute;
    top: 7;
    left: -2;
    width: 30vw;
    height: 100%;
}
.line {
    fill: none;
    stroke-width: 2;
}


.fill-area {
    opacity: 0.4; /* Adjust transparency for fade effect */
}


.terms-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.terms-container h2 {
    color: #d32f2f; /* Red color for emphasis */
    text-align: center;
    margin-bottom: 15px;
    font-size: 24px;
}

.terms-container p {
    text-align: justify;
    font-size: 16px;
    padding: 10px;
}

.highlight {
    color: #d32f2f;
    font-weight: bold;
}

.terms-container ul {
    padding-left: 20px;
}

.terms-container ul li {
    margin-bottom: 10px;
}

.plans-container {
    max-width: 900px;
    margin: 20px auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
    color: #333;
}

.plans-container h2 {
    text-align: center;
    color: #d32f2f;
    font-size: 24px;
    margin-bottom: 15px;
}

.deposit-plan {
    background: white;
    padding: 15px;
    margin: 15px 0;
    border-left: 5px solid #d32f2f;
    border-radius: 5px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.deposit-plan h3 {
    color: #d32f2f;
    font-size: 20px;
    margin-bottom: 10px;
}

.deposit-plan ul {
    list-style-type: none;
    padding: 0;
}

.deposit-plan ul li {
    padding: 5px 0;
    font-size: 16px;
}

.highlight {
    font-weight: bold;
    color: #d32f2f;
}

.deposit-form {
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 20px auto;
    background: #f9f9f9;
    border-radius: 8px;
    font-family: Arial, sans-serif;
    color: #333;
}

.deposit-form label {
    font-weight: bold;
}

.deposit-form select,
.deposit-form input {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.wallet-info {
    background: #f1f1f1;
    padding: 15px;
    border-radius: 5px;
    margin-top: 10px;
}

.submit-btn {
    background: #d32f2f;
    color: white;
    padding: 10px;
    border: none;
    width: 100%;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
}

.submit-btn:hover {
    background: #b71c1c;
}

.deposit-body {
    display: flex;
    align-items: center;
    justify-content: center;
    justify-content: space-around;
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
    color: #333;
}

.crypto-image {
    flex: 1;
    max-width: 400px;
    text-align: center;
}

.crypto-image img {
    width: 100%;
    border-radius: 8px;
}


.notification-header {
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: bold;
}

.notification-card {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.notification-info {
    flex: 1;
}

.keyword-tag {
    background: #007bff;
    color: #fff;
    padding: 3px 8px;
    border-radius: 5px;
    font-size: 14px;
}

.status-badge {
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
}

.status-badge.confirmed {
    background: #28a745;
    color: #fff;
}

.status-badge.pending {
    background: #dc3545;
    color: #fff;
}

.proof-image img {
    max-width: 120px;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.no-proof {
    color: #888;
    font-style: italic;
}

.confirmation-form {
    margin-top: 10px;
}

.confirm-btn {
    background: #28a745;
    color: #fff;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.confirm-btn:hover {
    background: #218838;
}


/* Modal styling */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.modal-content {
    max-width: 50%;
    max-height: 80%;
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.2);
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 30px;
    font-weight: bold;
    color: white;
    cursor: pointer;
}

.close-btn:hover {
    color: red;
}

/* Image styling */
.clickable-img {
    max-width: 120px;
    border-radius: 5px;
    border: 1px solid #ddd;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
}

.clickable-img:hover {
    transform: scale(1.1);
}

.confirmDiv{
    display: flex;
    flex-direction: column;
}

#google_translate_element {
    /* position: fixed; */
    top: 10px;
    right: 10px;
    z-index: 999;
}

.goog-te-banner-frame.skiptranslate {
    display: none !important;
    color: white;
}

.goog-logo-link, .goog-te-gadget span {
    display: none !important;
}

.goog-te-gadget span, .goog-te-gadget-simple span {
    display: none !important;
}

/* Hide Google Translate frame */
.goog-te-banner-frame {
    display: none !important;
}

.goog-te-gadget {
    font-size: 0px;
    color: white !important;
    height: 2vh !important;
}

.goog-te-combo{
    color: black;
}

/* Adjust spacing if necessary */
#google_translate_element select {
    padding: 5px;
    font-size: 14px;
}


.terms-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
    background-color: #f8f9fa;
}

.terms-container {
    max-width: 600px;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.terms-container p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    text-align: justify;
}

.terms-container p strong {
    font-size: 20px;
    color: #1d3557;
    display: block;
    margin-bottom: 15px;
}

.terms-container p span {
    display: block;
    margin-top: 15px;
    font-weight: bold;
    color: #e63946;
}




.settings-form {
    max-width: 600px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    font-family: Arial, sans-serif;
}

.settings-form label {
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
    color: #333;
}

.settings-form input,
.settings-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.settings-form input[type="file"] {
    border: none;
    padding: 5px;
}

.settings-form button {
    background: #007bff;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
}

.settings-form button:hover {
    background: #0056b3;
}

.settings-form p {
    font-size: 14px;
    margin-top: 10px;
    color: #555;
}

.settings-form img {
    max-width: 100px;
    border-radius: 5px;
    margin-top: 5px;
}




.admin-nav {
    background: #333;
    padding: 10px 20px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.nav-links li {
    margin: 0 10px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    padding: 8px 15px;
    display: block;
}

.hamburger {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

.ad{
    color: black !important;
}

.withdrawal-container {
    max-width: 500px;
    margin: 50px auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.withdrawal-form {
    padding: 20px;
}

.withdrawal-form .form-group {
    margin-bottom: 15px;
}

.withdrawal-form input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.withdrawal-form button {
    width: 100%;
    padding: 10px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.withdrawal-form button:hover {
    background: #0056b3;
}


/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #444;
        padding: 10px 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        text-align: center;
        padding: 10px 0;
    }

    .hamburger {
        display: block;
    }
}






/* Responsive for smaller screens */
@media (max-width: 767px) {
    .d-flex{
        flex-direction: column !important;
        gap: 10px;
    }

    .nav-flex{
        flex-direction: column;
    }

    /********* FOR HERO ************/

    .hero-content div{
        padding-top: 11rem;
    }

    .hero-container{
        background: url(bitcoin1.jpg) no-repeat center center;
    }

    /************* FOR ABOUT *************/

    .about-container{
        flex-direction: column;
        /* height: 150vh; */
    }

    .tabContents{
        /* top: 530px; */
        width: 100%;
    }

    .tabParent-con {
        min-height: 250px;
    }


    /* FOR PERFORM */
    .perform-left {
        flex: 0 0 100%;
    }

    .left-top{
        flex-direction: column;
        justify-content: center;
    }

    .left-top-con, .left-bottom-con{
        flex-direction: column;
    }

    .left-top-con div, .left-bottom-con div{
        text-align: center;
    }

    .left-top-con div p, .left-bottom-con div p{
        width: 100%;
    }

    .left-bottom{
        flex-direction: column;
        justify-content: center;
    }

    .perform-right {
        flex: 0 0 100%;
        margin-top: 1rem;
        padding: 0 2rem;
    }

    .perform-right p {
        width: 100%;
    }

    .payment-options div {
        flex: 0 0 80%;
    }

    /*************** FOR FOOTER ************/
    .first-section{
        flex: 0 0 100%;
    }

    .second-section{
        flex: 0 0 35%;
    }

    .third-section{
        flex: 0 0 30%;
    }


    /* .temporary-navbar {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 10px 20px;
    }

    .tem-nav-links ul {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }

    .tem-nav-links ul li {
        display: block;
        flex: 0 0 25%;
    } */


    /* FOR JOIN */
    .join-steps .line, .line2{
        display: none;
    }

    .join-steps{
        flex-direction: column;
    }




    /* FOR PLAN */
    .plan-package{
        margin: 0 1rem;
    }

    .plan-pack-content{
        flex: 0 0 100%;
        width: 100%;
    }

    .dashboard-container{
        gap: 1rem;
    }

    .dashboard-container .card {
        /* padding: 20px; */
        width: 400px;
        height: 22vh;
    }

    /* .graph-container {
        width: 100%;
        height: 100px;
        overflow: hidden;
        position: relative;
    } */
    svg {
        position: absolute;
        top: 16;
        left: -2;
        width: 100vw;
        height: 100%;
    }

    .home-other{
        flex-direction: column;
    }

    .drop-nav{
        flex-direction: column;
    }

    .chart-container {
        width: 100%;
        max-width: 800px; /* Adjust the max width */
        margin: auto;
        overflow-x: auto; /* Allows scrolling if needed */
    }


    .modal-content {
        max-width: 100%;
    }
    
    
.terms-section{
    flex-direction:column;
    padding:10px;
}

.terms-section img{
    margin-left:30px;
}

#navbarSupportedContent{
    margin-left:1rem;
    width:90%;
}

#google_translate_element{
    position:absolute;
    top:4rem;
    left:13rem;
}

.hero-content div h1{
    font-size:2.5rem;
}

.navbar-toggler{
    margin-left:14rem;
}
    
}
