/* Market Update title and widget side by side */
.market-update-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin: 2rem auto 2rem auto;
  flex-wrap: wrap;
}
.market-update-title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.market-snapshot-widget {
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 16px;
  max-width: 600px;
  font-family: Arial, sans-serif;
  background: #141414 !important;
  color: #fff;
  margin: 0 auto;
}
@media screen and (max-width: 700px) {
  .market-update-row {
    flex-direction: column;
    gap: 0.5rem;
  }
  .market-update-title-wrap, .market-snapshot-widget {
    justify-content: center;
    margin: 0 auto;
  }
}
/* Blue gradient for Market Snapshot title */
.market-snapshot-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 0.7rem;
  background: linear-gradient(to top, #1e5a8a 0%, #38b6ff 50%, #7cccfa 100%);
  background-size: 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  letter-spacing: 1.5px;
}

@media screen and (max-width: 700px) {
  .market-snapshot-title {
    font-size: 1.3rem;
    white-space: normal;
    word-break: break-word;
  }
}
#footer__logo .footer-logo-long {
  display: inline-block;
}
 #footer__logo .footer-logo-small {
  display: none;
}

@media screen and (max-width: 600px) {
  #footer__logo .footer-logo-long {
    display: none !important;
  }
  #footer__logo .footer-logo-small {
    display: inline-block !important;
    max-width: 120px;
    max-height: 28px;
    width: auto;
    height: auto;
    vertical-align: middle;
  }
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
}

body {
  background: #141414 !important;
}

/* What we offer bullet list styling */
.what-we-offer-list {
  display: inline-block;
  text-align: left;
  color: #fff;
  font-size: 1.2rem;
  margin: 0 auto 1rem auto;
  background: rgba(56,182,255,0.08);
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(56,182,255,0.12);
  padding: 1.2em 2em 1.2em 2em;
  list-style-type: disc;
}
.what-we-offer-list li {
  margin-bottom: 0.7em;
  padding-left: 0.2em;
  position: relative;
  transition: color 0.2s;
}
.what-we-offer-list li::marker {
  color: #38b6ff;
  font-size: 1.3em;
}
.what-we-offer-list li:hover {
  color: #38b6ff;
}

.navbar {
    background: #131313;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    position: sticky;
    top: 0;
    z-index: 999;
}

.navbar__container {
    display: flex;
    justify-content: space-between;
    height: 80px;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 50px;
}

#navbar__logo {
    height: 80px;
    width: auto;
    transform: translateY(-5px);

    display: flex;
    align-items: center;
    cursor:pointer;
    text-decoration: none;
    color: inherit;
}

#navbar__logo-mobile {
    height: 80px;
    width: auto;
    transform: translateY(-5px);

    display: none;
    align-items: center;
    cursor:pointer;
    text-decoration: none;
    color: inherit;

/* How to get Started section styling */
.how-to-start-section {
  max-width: 700px;
  margin: 2rem auto;
  background: linear-gradient(135deg, #141414 70%, #38b6ff 100%);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(56,182,255,0.12);
}
.how-to-start-title {
  color: #38b6ff;
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 800;
  letter-spacing: 1px;
}
.how-to-start-main {
  color: #fff;
  font-size: 1.7rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.how-to-start-detail {
  color: #cce8ff;
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
}
.how-to-start-note {
  color: #7cccfa;
  font-size: 1rem;
  margin-bottom: 1rem;
  font-style: italic;
}
}
.fa-gem {
    margin-right: 0.5rem;
}

.navbar__menu {
    display: flex;
    align-items: center;
    list-style: none;
    text-align: center;
}
.navbar__item {
    height: 80px;
}

.navbar__links {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 0 1rem;
    height: 100%;
}

.navbar__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
    width: 100%;
}

.button {

    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    padding: 10px 20px;
    height: 100%;
    width: 100%;
    border: none;
    outline: none;
    border-radius: 4px;
    background: #38b6ff;
    color: #fff;

}

.button:hover {
    background: #1e5a8a;
    transition: 0.3s ease-out;
}

.navbar__links:hover {
    color: #1e5a8a;
    transition: 0.3s ease-out;
}

/* Logo switching for smaller screens */
@media screen and (max-width: 768px) {
    #navbar__logo {
        display: none;
    }
    
    #navbar__logo-mobile {
        display: flex;
        padding-left: 25px;
    }
}

@media screen and (max-width: 960px) {
    .navbar__container {
        display: flex;
        justify-content: space-between;
        height: 80px;
        z-index: 1;
        width: 100%;
        max-width: 1300px;
        padding: 0;
    }
    .navbar__menu {
        display: grid;
        grid-template-columns: auto;
        margin: 0;
        width: 100%;
        position: absolute;
        top: -1000px;
        opacity: 0;
        transition: all 0.5s ease;
        height: 50vh;
        z-index: -1;
        background: #131313;
    }
    
    .navbar__menu.active {
        background: #131313;
        top: 140%;
        opacity: 1;
        transition: all 0.5s ease;
        z-index: 99;
        height: 50vh;
        font-size: 1.2rem;
    }

    .navbar__toggle .bar {
        width: 25px;
        height: 3px;
        margin: 5px auto;
        transition: all 0.3s ease-in-out;
        background: #fff;
    }
    
    .navbar__item {
        width: 100%;
    }

    .navbar__links {
        text-align: center;
        padding: 2rem;
        width: 100%;
        display: table;

    }

    #mobile-menu {
        position: absolute;
        top: 20%;
        right: 5%;
        transform: translate(5%, 20%);
    }

    .navbar__btn {

        padding-bottom: 2rem;

    }

    .button {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 80%;
        height: 80px;
        margin: 0;

    }

    .navbar__toggle .bar {

        display: block;
        cursor: pointer;

    }

    #mobile-menu.is-active .bar:nth-child(2) {
        opacity: 0;
    }

    #mobile-menu.is-active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

     #mobile-menu.is-active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }



}



/*HERO*/

.main {

background-color: #141414;

}

.main__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-self: center;
    margin: 0 auto;
    height: 90vh;
    background-color: #141414;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    padding: 0 50px;
}

.main__content {
    max-width: 600px;
    color: #fff;
}

.main__content h1 {
    font-size: 4.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    line-height: 1.2;
    background: linear-gradient(to top, #1e5a8a 0%, #38b6ff 50%, #7cccfa 100%);
    background-size: 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.main__content h1 .dollar-highlight {
    background-color: #54ffb8;
    background-image: linear-gradient(to top, #0d4f3c 0%, #1a5d4a 15%, #2d7a5f 30%, #4a9b7e 45%, #5bb88a 60%, #85d4a6 75%, #a8e6c8 90%, #c9f7e0 100%);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

.main__content h2 {
    max-width: 600px;
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    background-color: #54ffb8;
    background-image: linear-gradient(to top,#65ff57 0%, #f0ff6d 100% );
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

.main__content p {

    margin-top: 1rem;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;



}


.main__btn {

    font-size: 1rem;
    background-image: linear-gradient(to bottom, #1e5a8a 0%, #38b6ff 50%, #7cccfa 100%);
    padding: 14px 32px;
    border: none;
    border-radius: 4px;
    color: #fff;
    margin-top: 2rem;
    cursor: pointer;
    position: relative;
    transition: all 0.35s;;
    outline: none;

}

.main__btn a {
    position: relative;
    z-index: 2;
    color: #ffff;
    text-decoration: none;
    
}
.main__btn:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #85d4a6;
    transition: all 0.35s;
    border-radius: 4px;
}

.main__btn:hover:after {
    width: 100%;
    
    
}

.main__img--container {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    max-width: 100%;
    max-height: 100%;
}

#main__img {
    width: 100%;
    height: auto;
    max-width: 700px;
    max-height: 700px;
    object-fit: contain;
}

/*mobile responsive*/
@media screen and (max-width: 768px) {

    .main__container {
        display: grid;
        grid-template-columns: auto;
        align-items: center;
        justify-self: center;
        width: 100% ;
        margin: 0 auto; 
        height: 90vh;
    }

    .main__content {
        text-align: center;
        margin-bottom: 4rem;
    }

    .main__content h1 {
        font-size: 2.5rem;
        margin-top: 2rem;
    }

    .main__content h2 {
        font-size: 3rem;
        
    }

    .main__content p {
        font-size: 1rem;
        margin-top: 1.5rem;
    }

}

@media screen and (max-width: 480px) {

     .main__content h1 {
        font-size: 2rem;
        margin-top: 3rem;
    }

    .main__content h2 {
        font-size: 2rem;
        
    }

    .main__content p {
        font-size: 2rem;
        margin-top: 1.5rem;
    }

    .main__btn {
        padding: 12px 36px;
        margin: 2.5rem 0;
    }


}

/* SERVICES */

.services {
    background-color: #141414;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
    margin-bottom: 4rem;
}

.services h1 {

    background-color: #38b6ff;
    background-image: linear-gradient(to left, #1e5a8a 0%, #2867a3 25%, #38b6ff 60%, #7cccfa 100%);
    background-size: 100%;
    margin-bottom: 5rem;
    font-size: 2.5rem;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;

}

.services__container {

    display: flex;
    justify-content: center;
    flex-wrap: wrap;

}

.services__card {
  margin: 1rem;
  height: 525px;
  width: 400px;
  border-radius: 4px;
  background-size: cover;
  background-position: center;
  position: relative;
  color: #fff;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.services__card:nth-child(1) {
  background-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(17,17,17,0.6) 100%), url('images/img1.jpg');
}
.services__card:nth-child(2) {
  background-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(17,17,17,0.6) 100%), url('images/img3.jpg');
}
.services__card:nth-child(3) {
  background-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(17,17,17,0.6) 100%), url('images/team.jpg');
}
.services__card:nth-child(4) {
  background-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(17,17,17,0.6) 100%), url('images/img4.jpg');
}

.services h2 {

    position: absolute;
    top: 350px;
    left: 30px;
}

.services__card p {
  margin: 1rem 20px 0 20px;
  font-size: 1rem;
  position: static;
}
.services__card button {
  display: block;
  margin: 1rem 20px 1.5rem 20px;
  width: 80%;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  background: #38b6ff;
  font-size: 1rem;
  position: static;
}


.services__card:hover {

    transform: scale(1.075);
    transition: 0.2s ease-in;
    cursor: pointer;
}

.services__card button:hover {
    background: #1e5a8a;
    transition: 0.3s ease-out;
}

@media screen and (max-width: 960px) {
    
    .services {
        height: 1600px;

    }

    .services h1 {
        font-size: 2rem;
        margin-top: 12rem;
    }

}

@media screen and (max-width: 480px) {

  .services {
    height: auto;
    padding: 1rem;
  }

  .services h1 {
    text-align: center;
    font-size: 1.5rem;
  }

  .services h2 {
    position: static !important;
    margin-top: 0;
    margin-bottom: 0.5rem;
    width: auto;
    font-size: 1.2rem;
  }

  .services__card {
    width: 300px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1rem;
    margin-bottom: 1rem;
  }

  .services__card h2 {
    margin-bottom: 0.5rem;
    position: static;
    font-size: 1.1rem;
  }

  .services__card p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    position: static;
  }

  .services__card button {
    font-size: 1rem;
    width: 80%;
    align-self: center;
    margin-top: 0.5rem;
  }
}

/* footer css */
.footer__container {
    background-color: #141414;
    padding: 5rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#footer__logo {
    color: #fff;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    font-size: 2rem;
}

.footer__links {
    width: 100%;
    max-width: 1000px;
    display: flex;
    justify-content: center;
}

.footer__link--wrapper {
display: flex;
flex-direction: row;
justify-content: center;
align-items: flex-start;
width: 100%;
}

.footer__link--items {
flex: 1;
margin: 0 1rem;
text-align: left;
display: flex;
flex-direction: column;
align-items: flex-start;
}

.footer__link--items h2 {
    margin-bottom: 1rem;
}

.footer__link--items a {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 8px;
    text-align: left;
    width: 160px;
    box-sizing: border-box;
    font-size: 0.8rem;
}

.footer__link--items h2 {
    margin-bottom: 16px;
}

.footer__link--items > h2 {
    color: #fff;
}

.footer__link--items a {
    color: #fff;
    text-decoration: none;
    margin-bottom: 0.3rem;
    font-size: 0.8rem;
    font-weight: normal;
}

.footer__link--items a:hover {
    color: #e9e9e9;
    transition: 0.3s ease-out;
}

/* Social Media Section */
.social__icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    width: auto;
}

.social__icon--link {
    color: #fff;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social__media {


    max-width: 1000px;
    width: 100%;
}
.social__media--wrap {

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    width: 100%;
    max-width: 1000px;
    margin: 40px auto 0 auto;

}

.social__icons {

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.2rem;
    width: auto;
}

.social__logo {

color: #fff;
justify-self: flex-start;
margin-left: 20px;
cursor: pointer;
text-decoration: none;
font-size: 2rem;
display: flex;
align-items: center;
margin-bottom: 16px;
}

.social__icon--link:hover {
    color: #38b6ff;
}

.website__rights {
    color: #fff;
    margin-top: 2rem;
    font-size: 0.8rem;
    text-align: center;
}


@media screen and (max-width: 820px) {
    .footer__links {
        
        padding-top:2rem;
    }

    .website__rights {
        margin-bottom: 2rem;
    }

    .footer__link--wrapper {
        flex-direction: column;
        
    }
    .social__media--wrap {

        flex-direction: column;

    }
    .footer__link--items {
        margin-bottom: 2rem;
    }
    
}

@media screen and (max-width: 480px) {

    .footer__link--items {

        margin: 0;
        padding: 10px;
        width: 100%;

    }

}

/* Chart.js canvas tweaks for resources page */
#vooChart {
  background: #141414;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* Market Snapshot Widget background */
#market-snapshot {
  background: #141414 !important;
  color: #fff;
}

/* Ensure the chart container background matches the site */
.voo-chart-container {
  background: #141414;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  padding: 2rem 0;
}

button:hover, .main__btn:hover {
  cursor: pointer;
}

.what-we-offer-list {
  display: inline-block;
  text-align: left;
  color: #fff;
  font-size: 2rem;
  margin: 0 auto;
  background: transparent;
  padding-left: 1.5em;
}

/* Payment instructions section styling */
.payment-instructions-section {
  max-width: 700px;
  margin: 1.5rem auto 2.5rem auto;
  background: linear-gradient(135deg, #141414 70%, #38b6ff 100%);
  border-radius: 12px;
  padding: 2rem 2rem 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(56,182,255,0.12);
}
.payment-instructions-title {
  color: #38b6ff;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 800;
  letter-spacing: 1px;
}
.payment-instructions-main {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  font-weight: 500;
}
.payment-instructions-detail {
  color: #cce8ff;
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
}
.payment-instructions-btn {
  background: linear-gradient(90deg, #38b6ff 0%, #7cccfa 100%);
  color: #141414;
  font-size: 1.3rem;
  padding: 0.9em 2.2em;
  border-radius: 8px;
  text-decoration: none;
  margin-top: 1rem;
  display: inline-block;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(56,182,255,0.18);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.payment-instructions-btn:hover {
  background: linear-gradient(90deg, #1e5a8a 0%, #38b6ff 100%);
  color: #fff;
  transform: scale(1.05);
}

/* Documents section styling */
.documents-section {
  max-width: 700px;
  margin: 2rem auto 2.5rem auto;
  background: linear-gradient(135deg, #141414 70%, #38b6ff 100%);
  border-radius: 12px;
  padding: 2rem 2rem 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(56,182,255,0.12);
}
.documents-title {
  color: #38b6ff;
  font-size: 2.2rem;
  margin-bottom: 1rem;
  font-weight: 800;
  letter-spacing: 1px;
}
.documents-main {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
  font-weight: 500;
}
.documents-list {
  list-style-type: none;
  padding: 0;
  margin: 0 auto;
}
.documents-list li {
  margin-bottom: 1rem;
}
.documents-link {
  color: #38b6ff;
  font-size: 1.15rem;
  text-decoration: underline;
  background: rgba(56,182,255,0.08);
  padding: 0.5em 1.2em;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  font-weight: 600;
  display: inline-block;
}
.documents-link:hover {
  background: #38b6ff;
  color: #141414;
  text-decoration: none;
}
