:root {
    --primary: #50CB92;
    --secondary: #34AD54;
    --light: #EEF9FF;
    --dark: #000;
}

/* Animation css Start */

/* Blink Animation */
@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

body {
    background-color: #000;
}

h1, h2, h3, h4, h5, h6 {
    color: #fff !important;
}
.pricing-plan-section h1:nth-child(1){
    color: #091E3E !important;
}

/* Apply animation to all buttons */
.btn, .social-btn {
    animation: blink 1.5s infinite; /* 1.5s duration, infinite loop */
}

/* Styling for footer social buttons */
.social-btn {
    font-size: 20px;
    padding: 10px;
}

/* Animation css End */


/* color css start*/
.text-color {
    color: var(--primary) !important;
}

.main-bg-color {
    background: var(--dark) !important;
}

.sec-bg-color {
    background: var(--primary) !important;
}

.btn-primary:hover {
    color: #000;
    background-color: #60e8a9 !important;
    border-color: #60e8a9 !important;
}

.top-info-icon-bar {
    background-color: var(--dark);
}

.top-info-left-box {
    color: #FFFFFF;
}

.top-info-left-box small {
    font-size: 12px;
    transition: all 0.3s ease-in-out;
}

.top-info-left-box small:hover {
    color: var(--primary);
}

.btn-outline-light:hover {
    color: #000;
    background-color: var(--primary);
    border-color: var(--primary);
}

.carousel-caption {
    background: rgba(0, 0, 0, 0.8) !important;
}

@media screen and (max-width: 1006px){
    .top-info-left-box small {
        font-size: 11px;
    }
}

/* color css end*/


/* Nav bar CSS start */
.logo-img {
    width: 100px;
    height: 70px;
}

.logo-img-2 {
    width: 120px;
    height: 100px;
}

@media screen and (max-width: 1084px) {
    .navbar-dark .navbar-nav .nav-link {
        font-size: 15px !important;
    }
}
@media screen and (max-width: 991px) {
    .navbar-dark .navbar-nav .nav-link {
        color: #fff;
    }
    .navbar {
        background-color: var(--dark);
    }
}

/* Nav bar CSS End */


/* how-it-works start */
.how-it-works {
    background-color: #000;
    padding: 60px 0;

}

.how-it-works h2 {
    text-align: center;
    font-weight: bold;
    margin-bottom: 40px;
    color: #fff;
}

.icon-box {
    text-align: center;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.icon-box:hover {
    transform: translateY(-10px);
}

.icon-box i {
    font-size: 60px;
    margin-bottom: 15px;
    color: var(--primary);
}

.icon-box h4 {
    font-weight: bold;
    margin-bottom: 10px;
}

.icon-box p {
    color: #555;
}

/* how-it-works end */


/* CSS for terms & Condition Page */
.termsbody {
    background-color: #f9f9f9;
}

.terms-section {
    padding: 60px 0px;
}

.terms-section h2 {
    text-align: center;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 40px;
    font-size: 2.5rem;
}

.terms-content {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
}

.terms-content ul {
    list-style-type: disc;
    padding-left: 20px;
}

.terms-content h4 {
    font-weight: bold;
    color: var(--primary);
    margin-top: 30px;
}

.terms-content p {
    margin-bottom: 15px;
}

.footer {
    background-color: var(--primary);
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 30px;
}

@media screen and (max-width: 768px) {
    .terms-section h2 {
        font-size: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .terms-section {
        padding: 60px 20px;
    }
}


/* Rewards Page CSS Start */
.rewards-section {
    padding: 80px 0;
}

.rewards-section h2 {
    font-size: 3rem;
    font-weight: 600;
    text-align: center;
    color: var(--primary);
    margin-bottom: 50px;
}

.reward-batch {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.reward-batch:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.reward-batch h4 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.reward-batch ul {
    list-style-type: none;
    padding-left: 0;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.reward-batch ul li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.reward-batch ul li i {
    color: var(--primary);
    margin-right: 15px;
    font-size: 1.4rem;
}

.reward-batch img {
    width: 100%;
    max-width: 350px;
    /* border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); */
}

.btn-subscribe {
    display: block;
    width: 100%;
    margin-top: 20px;
    padding: 12px;
    font-size: 1.1rem;
    color: white;
    background-color: var(--primary);
    border-radius: 25px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.btn-subscribe:hover {
    background-color: #60e8a9;
    color: #000;
}

.footer {
    background-color: var(--primary);
    color: #ffffff;
    text-align: center;
    padding: 20px;
    margin-top: 80px;
}

@media (max-width: 768px) {
    .rewards-section h2 {
        font-size: 2.5rem;
    }

    .reward-batch h4 {
        font-size: 1.5rem;
    }

    .reward-batch ul li {
        font-size: 1rem;
    }
}

/* Rewards Page CSS End */


/* FAQ's Page CSS End */

.faqs-section {
    padding: 60px 0;
}

.faqs-section .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='%23ffffff'%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");
}

.faqs-section .faqs-section-title {
    color: #091E3E;
}

.faqs-section h2 {
    text-align: center;
    font-weight: bold;
    margin-bottom: 0px;
    color: var(--primary);
}

.accordion-button {
    background-color: var(--primary);
    color: #6a1b9a;
    font-weight: bold;
    border: none;
    outline: none;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button.collapsed {
    color: #333;
}

.accordion-item {
    border: none;
    margin-bottom: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.accordion-body {
    color: #555;
}

.faqs-section .accordion-button:not(.collapsed) {
    background-color: var(--primary) !important;
    color: #fff;
}

/* FAQ's Page CSS End */

/* Coin Structure Section CSS Start */

/* #coin-creation {
    background-color: #f8f9fa;
} */

.card-header {
    background-color: #50CB92;
    /* Matching header color */
    transition: background-color 0.3s ease;
    /* Adding transition effect */
}

.card-header:hover {
    background-color: #34AD54;
    /* Darker shade on hover */
}

.card-header i {
    margin-right: 10px;
}

.card-body ul {
    list-style-type: none;
    padding-left: 0;
}

.card-body ul li {
    margin-bottom: 10px;
}

.card {
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    #coin-creation {
        padding: 30px 10px;
    }
}

/* Coin Structure Section CSS End */



/* Subscriptions Page CSS Start */

/* Colors */
:root {
    --primary-color: #50CB92;
    --secondary-color: #34AD54;
    --light-color: #eef9ff;
    --dark-color: #000;
    --silver-btn: #f1f1f1;
    --gold-btn: #ffcc00;
    --diamond-btn: #4d4d4d;
}

#pricing-details .info-box {
    background-color: #ffffff;
    border-left: 5px solid var(--primary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 20px;
    border-radius: 8px;
    min-height: 360px;
}


#pricing-details .info-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

#pricing-details .info-icon {
    color: var(--primary-color);
}

.info-box h5 {
    font-size: 1.25rem;
    color: var(--dark-color);
}

#pricing-details .info-box p,
.info-box ul li {
    font-size: 1rem;
    color: #555;
}

#pricing-details .info-box ul li {
    padding: 5px 0;
    font-weight: 500;
}

#pricing-details .btn {
    padding: 12px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    transition: background-color 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    #pricing-details .info-box {
        padding: 15px;
    }

}

/* Subscriptions Page CSS End */


/* Navbar Css End*/
/* Logo border and Y-axis rotate animation */
.logo {
    display: inline-block;
    animation: rotateYAnimation 15s linear infinite; /* Slower speed and animation for Y-axis rotation */
  }
  
  /* Define the Y-axis rotate animation */
  @keyframes rotateYAnimation {
    0% {
      transform: rotateY(0deg); /* Start from 0 degrees */
    }
    100% {
      transform: rotateY(360deg); /* End at 360 degrees (complete Y-axis rotation) */
    }
  }
  

  /* Bike Animation */

  @keyframes moveLeftToRight {
    0% {
      transform: translateX(-100%);
      opacity: 1;
    }
    100% {
      transform: translateX(100%);
      opacity: 1;
    }
  }
  
  .bike-animation {
    position: relative;
    display: inline-block;
    opacity: 0;
  }
  
  .bike-animation-1 {
    animation: moveLeftToRight 8s linear 0s infinite;
    animation-fill-mode: forwards;
  }
  
  .bike-animation-2 {
    animation: moveLeftToRight 8s linear 8s infinite;
    animation-fill-mode: forwards;
  }
  
  .bike-animation-3 {
    animation: moveLeftToRight 8s linear 16s infinite;
    animation-fill-mode: forwards;
  }
  



.top-main-nav
{
    padding-left: 3rem;
    padding-right: 3rem;
}
.mcm-text {
    font-size: 18px;
    margin-left: 20px;
}

@media (max-width: 991px) {
    .logo-img {
        border: 1px solid var(--primary);
        border-radius: 5px;
    }
    .navbar {
        border: 1px solid var(--primary);
    }
    .mcm-text {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
@media (max-width: 576px) {
    .top-main-nav {
        padding-left: 1rem;
        padding-right: 2rem;
    }
}

@media (max-width: 375px) {
    .top-main-nav {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .mcm-text {
        left: 55%;
    }
}

}
/* Navbar Css End*/


/* 3D Coin CSS Start */
.coin-container {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto;
    perspective: 1000px;
}
.coin {
    width: 100%;
    height: 100%;
    position: absolute;
    transform-style: preserve-3d;
    transition: transform 1s;
    display: flex;
    justify-content: center;
    align-items: center;
}
.coin img {
    width: 100%;
    height: 100%;
    position: absolute;
    backface-visibility: hidden;
}
.coin .front {
    transform: rotateY(0deg);
}
.coin .back {
    transform: rotateY(180deg);
}

.coin-area .form-range {
    width: 50% !important;
}

/* 3D Coin CSS End */