/* Animated Countdown Boxes */
.countdown-box {
    border-radius: 12px;
    padding: 1.25rem 0.5rem;
    margin: 0.25rem;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: none;
}

.countdown-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.countdown-number {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}

.countdown-label {
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 0.5rem;
    letter-spacing: 0.5px;


@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.countdown-number {
  animation: pulse 1s infinite;
}
/* Button Animation */
.btn {
    transition: all 0.4s ease;
    background-size: 200% auto;
}

.btn:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 64, 61, 0.4) !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .countdown-number {
        font-size: 1.75rem;
    }
    .countdown-box {
        padding: 1rem 0.25rem;
    }
}

/* Payment Icons Hover Effect */
.payment-icon {
    transition: all 0.3s ease;
}

.payment-icon:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15)) !important;
}/* Token Sale Section */


.token-sale {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.token-sale .section-header {
    margin-bottom: 50px;
}

.countdown-container {
    max-width: 800px;
    margin: 0 auto;
}
/*
.countdown-box {
    background: #fffeee;
    border-radius: 10px;
    padding: 20px;
    margin: 10px;
    box-shadow: 0 4px 15px rgba(5, 0, 0, 5);
    text-align: center;
}

.countdown-number {
    font-size: 24.5rem;
    font-weight: 700;
    color: #4e54c8;
    margin-bottom: 5px;
}

.countdown-label {
    font-size: 20pt;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.payment-methods {
    margin-top: 40px;
}

.payment-methods p {
    color: #6c757d;
    font-weight: 500;
}

.payment-icon {
    width: 50px;
    height: auto;
    margin: 0 10px;
    transition: transform 0.3s ease;
}

.payment-icon:hover {
    transform: scale(1.1);
}
*/
.btn-lg {
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
}
:root {
  /* Your color palette as CSS variables */
  --rose-ebony: #6B403D;
  --outer-space: #3A4444;
  --black-bean: #31171B;
  --licorice: #1A131C;
  --bistre: #362C20;
  
  /* Default logo color */
  --logo-color: var(--bistre);
}

.logo-text {
  margin: 0;
  color: var(--logo-color);
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  transition: color 0.3s ease;
}

/* Color options via data attribute */
.logo-text[data-color="rose-ebony"] { --logo-color: var(--rose-ebony); }
.logo-text[data-color="outer-space"] { --logo-color: var(--outer-space); }
.logo-text[data-color="black-bean"] { --logo-color: var(--black-bean); }
.logo-text[data-color="licorice"] { --logo-color: var(--licorice); }
.logo-text[data-color="bistre"] { --logo-color: var(--bistre); }
/* Responsive adjustments */
@media (max-width: 768px) {
    .countdown-number {
        font-size: 2rem;
    }
    
    .countdown-label {
        font-size: 1.8rem;
    }
    
    .payment-icon {
        width: 40px;
        margin: 0 5px;
    }
}/********** Template CSS **********/
:root {
    --primary: #0000ff;
    --secondary: #cd763c;
    --light: #664e48;
    --dark: #151009;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 60px;
    z-index: 99;

/* Add to your CSS */
.logo-primary {
  --logo-color: #your-new-color; /* Define your color variable */
}

.logo-primary path {
  fill: var(--logo-color);
}

/* Or for PNG/JPG */
.logo-primary {
  filter: hue-rotate(220deg) saturate(1.2); /* Example blue to purple */
}

html {
    scroll-behavior: smooth;
}

h4,
h5,
h6,
.h4,
.h5,
.h6 {
    font-weight: 500 !important;
}
/* Button Base Styles (preserves original sizing/animation) */
.btn {
  transition: all 0.3s ease;
}

/* Primary Button - Using rose-ebony (#6B403D) */
.btn-primary {
  background-color: #6B403D;
  border-color: #6B403D;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #5a3634; /* 10% darker */
  border-color: #5a3634;
  transform: translateY(-2px); /* subtle lift */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Active state */
.btn-primary:active {
  transform: translateY(0);
  box-shadow: none;
}

/* Preserves original animation classes */
.animated.slideInDown {
  animation-duration: 0.5s;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand {
    height: 75px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: var(--dark);
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

.navbar .btn:hover {
    color: #FFFFFF !important;
    background: var(--primary) !important;
}


/*** Header ***/
.hero-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--secondary);
}


/*** Service ***/
.service-item {
    position: relative;
    overflow: hidden;
}

.service-item::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    top: -80px;
    right: -80px;
    border: 80px solid;
    transform: rotate(45deg);
    opacity: 1;
    transition: .5s;
}

.service-item.bg-white::after {
    border-color: transparent transparent var(--light) transparent;
}

.service-item.bg-light::after {
    border-color: transparent transparent #FFFFFF transparent;
}

.service-item:hover::after {
    opacity: 0;
}


/*** Roadmap ***/
.roadmap-carousel {
    position: relative;
}

.roadmap-carousel::before {
    position: absolute;
    content: "";
    height: 0;
    width: 100%;
    top: 20px;
    left: 0;
    border-top: 2px dashed var(--secondary);
}

.roadmap-carousel .roadmap-item .roadmap-point {
    position: absolute;
    width: 30px;
    height: 30px;
    top: 6px;
    left: 50%;
    margin-left: -15px;
    background: #FFFFFF;
    border: 2px solid var(--primary);
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.roadmap-carousel .roadmap-item .roadmap-point span {
    display: block;
    width: 18px;
    height: 18px;
    background: var(--primary);
}

.roadmap-carousel .roadmap-item {
    position: relative;
    padding-top: 150px;
    text-align: center;
}

.roadmap-carousel .roadmap-item::before {
    position: absolute;
    content: "";
    width: 0;
    height: 115px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-right: 2px dashed var(--secondary);
}

.roadmap-carousel .roadmap-item::after {
    position: absolute;
    content: "";
    width: 14px;
    height: 14px;
    top: 111px;
    left: 50%;
    margin-left: -7px;
    transform: rotate(45deg);
    background: var(--primary);
}

.roadmap-carousel .owl-nav {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.roadmap-carousel .owl-nav .owl-prev,
.roadmap-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-size: 22px;
    color: var(--light);
    background: var(--primary);
    transition: .5s;
}

.roadmap-carousel .owl-nav .owl-prev:hover,
.roadmap-carousel .owl-nav .owl-next:hover {
    color: var(--primary);
    background: var(--dark);
}


/*** FAQs ***/
.accordion .accordion-item {
    border: none;
    margin-bottom: 15px;
}

.accordion .accordion-button {
    background: var(--light);
    border-radius: 2px;
}

.accordion .accordion-button:not(.collapsed) {
    color: #FFFFFF;
    background: var(--primary);
    box-shadow: none;
}

.accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion .accordion-body {
    padding: 15px 0 0 0;
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--secondary);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--secondary);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .btn.btn-square {
    color: var(--primary);
    border: 1px solid var(--primary);
}

.footer .btn.btn-square:hover {
    color: #FFFFFF;
    background: var(--primary);
}

.footer .copyright {
    padding: 25px 0;
    border-top: 1px solid rgba(17, 17, 17, .1);
}

.footer .copyright a {
    color: var(--primary);
}

.footer .copyright a:hover {
    color: var(--dark);
}