
    :root {
      --color-gold-1: #d2b677;
      --color-gold-2: #c5ab6f;
      --color-dark: #101010;
      --color-grey: #4b4b4b;
      --text-1: #121212;
    }

    body {
      font-family: 'Inter', sans-serif;
      background-color: rgba(33, 33, 35, 255);
    }

    .bg-gold {
      background-color: var(--color-gold-1);
    }

    .text-gold {
      color: var(--color-gold-1);
    }

    .btn-gold {
      background-color: var(--color-gold-1);
      color: var(--text-1);
      border: none;
      padding: 0.1rem 2rem;
      font-weight: 700;
      border-radius: 36px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 20px;
    }

        .btn-gold-2 {
      background-color: var(--color-gold-2);
      color: var(--text-1);
      border: none;
      padding: 0.5rem 1rem;
      font-weight: 500;
      border-radius: 36px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .btn-gold:hover {
      background-color: var(--color-gold-1);
    }

    .hero-section {
      background-color: var(--color-dark);
      background-image: url('assets/Hero/Background-Hero.png');
      background-repeat: no-repeat;
      background-position: center center;
      background-size: cover;
      position: relative;
      overflow: hidden;
      padding-bottom: 80px;
    }

    .hero-title {
      font-size: 52px;
      font-weight: 700;
    }

    .Cryptogram-logo{
      width: 230px !important;
    }
    .hero-subtext {
    font-size: 18px;
    color: #fff;
    margin-top: 30px;
    max-width: 75%;
    font-weight: 400;
    }

    .crypto-icons img {
      width: 150px;
      margin-right: 35px;
    }

    .header-logo img {
      height: 70px;
    }
    .cryptogram-logo {
      width: 150px;
    }

    .hero-image-wrapper {
      position: absolute;
      right: 0;
      bottom: 35px;
      max-width: 60%;
      z-index: 0;
    }

@media (min-width: 1500px) {
    .hero-image-wrapper {
        position: absolute;
        right: 0px;
        bottom: 35px;
        max-width: 55%;
        z-index: 0;
    }
}


@media (min-width: 1800px) {
      .hero-image-wrapper {
        position: absolute;
        right: 220px;
        bottom: 35px;
        max-width: 35%;
        z-index: 0;
      }
}
    .hero-image-wrapper img {
      width: 100%;
      height: auto;
      transform: scale(1.25);
    }

    .hero-section .container {
      position: relative;
      z-index: 2;
    }
    
    /* Updated nav styles */
    .navbar-nav .nav-link {
      color: #ffffff;
      font-weight: 500;
      font-size: 20px;
    }
    
    .navbar-nav .nav-link.active {
      color: #d2b677 !important;
    }
    
    /* Wallet icon filter to make black png into white */
    .btn-gold img.wallet-icon {
      height: 18px;
    }
    .livecoinwatch-widget-5{
        padding: 30px 0px;
    }
        .network-section {
      background-color: rgba(12, 12, 12, 255);
      padding: 60px 0;
    }

    .network-box {
      background-color: #151515;
      border-radius: 16px;
      padding: 24px;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 20px;
    }

    .network-title {
      font-weight: 700;
      color: var(--color-gold-1);
      font-size: 40px;
      margin-bottom: 24px;
    }

    .token-label {
      color: #ffffff;
font-weight: 400;
font-family: "Inter";
      font-size: 24px;
    }

    .token-box {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 8px 0px;
      margin-top: 5px;
    }


    .token-box img {
      width: 30px;
      height: 30px;
    }
    .copy-token{
        background: #fff;
        border-radius: 36px;
        padding: 5px 15px 5px 5px;
        gap: 10px;
        display: flex;
    }

    .copy-token span{
        color: #121212;
        font-weight: 700;
        font-family: "Inter";
        font-size: 20px;
    }
    .copy-icon{
      cursor: pointer;
    }
    .copy-toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #d2b677;
  color: #121212;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 9999;
  pointer-events: none;
}
.copy-toast.show {
  opacity: 1;
  transform: translateY(-10px);
}


.what-we-offer-section {
    position: relative;
    background-color: #d2b677;
    z-index: 1;
    overflow: hidden;
    min-height: 95vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Color overlay */
.what-we-offer-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('Assets/WhatWeOffer/BEP20-Aguilar-OraCoin.png'); /* replace with actual overlay */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: -500px -300px;
  opacity: 1; /* adjust as needed */ 
  z-index: 3;
}

/* Optional image overlay */
.what-we-offer-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('Assets/Hero/Background-Hero.png'); /* replace with actual overlay */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.9; /* adjust as needed */
  z-index: 3;
}

/* Ensure content stays above overlays */
.what-we-offer-section > .container {
  position: relative;
  z-index: 4;
}


.offer-box {
  background-color: #000;
  padding: 25px 20px;
  border-radius: 12px;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  text-align: center;
  transition: transform 0.3s ease;
}

.offer-box:hover {
  transform: translateY(-5px);
}
.roadmap-section {
  background-color: rgba(12, 12, 12, 255);
  background-image: url('assets/Roadmap/Roadmap-BG_2.png'); /* Update with your path */
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 100% 100%;
  padding-top: 80px;
  padding-bottom: 120px;
}

.our-roadmap{
  padding-bottom: 2rem;
}

.roadmap-box {
border-radius: 20px;
filter: drop-shadow(0.939px 1.766px 34px rgba(0,0,0,0.43));
    background-image: linear-gradient(182deg, rgb(40 37 29 / 100%) 0%, #121212 100%);
      padding: 24px;
  color: #fff;
  margin-bottom: 24px;
  transition: transform 0.3s ease;
  min-height: 215px;
  max-width: 600px;
}

.roadmap-box:hover {
  transform: translateY(-4px);
}

.roadmap-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-gold-1);
  margin-bottom: 12px;
}

.roadmap-box P{
    font-size: 16px;
}
.btn-disabled {
  display: inline-block;
  background-color: var(--color-grey);
  border-radius: 36px;
  padding: 0.5rem 1rem;
color: #999999;
font-weight: 700;
  cursor: not-allowed;
  font-size: 16px;
}

.foundation-section {
  background-color: var(--color-dark);
}

.foundation-wrapper {
  display: flex;
  background-color: #fff;
  overflow: hidden;
  flex-wrap: wrap;
  --bs-gutter-x: 0px !important;
}

/* Left side */
.foundation-left {
  background-color: var(--color-dark);
  color: white;
  flex: 1;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.foundation-logo-text{
    margin-left: 13%;;
}

.foundation-logo-text h3 {
  font-size: 28px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-icons {
  margin-top: 15px;
  display: flex;
  gap: 15px;
}

.social-icons img {
  width: 35px;
  height: 35px;
  filter: brightness(0) invert(1);
}

/* Right side */
.foundation-right {
  background-color: var(--color-gold-1);
  color: var(--text-1);
  flex: 1;
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.foundation-right .text-small {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}

.foundation-right p{
    font-size: 28px;
    margin-bottom: 10px;
}

.foundation-right h4 {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 16px;
}

/* Smaller button variant */
.btn-gold.small {
  font-size: 14px;
  padding: 6px 16px;
  border-radius: 30px;
}

.what-we-offer{
font-size: 42px;
line-height: 61px;
color: #ffffff;
font-weight: 700;
font-family: "Inter";
}
.what-we-offer-icons{
    width: 90px;
    height: 90px;
}
.offer-box p{
    width: 60%;
    font-size: 16px;
}
.offer-box h5{
    font-size: 28px;
}
.left-column{
    padding-top: 80px;
    position: relative;
    left: 6%;
}
.right-column{
  position: relative;
  right: 6%;
}
.roadmap-wrapper::after{

        position: absolute;
        content: "";
        height: 650px;
        width: 5px;
        background-color: var(--color-gold-1);
        border-radius: 2px;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
        margin-top: 45px;
    }
.apply-now{
    border-radius: 45px;
    filter: drop-shadow(3.756px 7.064px 77.5px rgba(0,0,0,0.17));
    background-color: #ffffff;
    padding: 0.5rem 2rem;
    width: 185px;
    border: none !important;
    font-weight: bold;
    font-size: 22px;
    margin-top: 10px;
}
a:hover{
  color: inherit;
}

@media (max-width:520px) {
  
.hero-title{
  font-size: 32px;
}

.hero-subtext{
  font-size: 14px;
  max-width: 100%;
}

.hero-image-wrapper{
  position: relative;
  max-width: 100%;
  bottom: 0px;
}
.crypto-icons img{
  width: 100px;
  margin-right: 0px !important;
}
.Cryptogram-logo{
  width: 150px !important;
}

.hero-section{
  padding-bottom: 35px !important;
}
.network-title{
  font-size: 32px !important;
}
.token-label{
  font-size: 18px !important;
}
.offer-box{
  width: 80%;
    margin: auto;
    min-height: 260px;
    margin-bottom: 20px;
}
.roadmap-box{
  max-width: 90%;
  margin: auto;
  margin-bottom: 20px !important;
  margin-top: 20px !important;
}
.right-column{
  right: 0%;
  padding-bottom: 0px;
  margin-top: -20px !important;
}
.left-column{
  left: 0%;
  padding-top: 0px;
}
.roadmap-wrapper::after{
  display: none;
}
.our-roadmap{
  padding-bottom: 0rem;
}
.roadmap-wrapper .col-lg-2{
  display: none !important;
}
.foundation-wrapper{
  flex-direction: column-reverse;
}
.navbar-toggler{
  background-color: #d2b677;
}
.foundation-right{
  padding: 30px !important;
}
}