body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #0e0e0e;
    color: white;
}

.hero {
    background: url('../image/Leonardo_Phoenix_09_A_futuristic_underground_crypto_mining_far_0.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.section-padding {
    padding: 60px 0;
}

.feature-icon {
    width: 64px;
    height: 64px;
}

.pricing-card {
    background: #1f1f1f;
    border: none;
    color: white;
}

.footer {
    background-color: #111;
    padding: 20px 0;
    text-align: center;
}



.pricing-table {
    /* box-shadow: 0px 0px 18px #ccc; */
    background-color: #1f1f1f;
    text-align: center;
    /* padding: 30px 0px; */
    border-radius: 5px;
    position: relative;

}

.pricing-table .head {
    border-bottom: 1px solid #eee;
    padding-bottom: 50px;
    transition: all 0.5s ease;
}

.pricing-table:hover .head {
    border-bottom: 1px solid #8E2DE2;

}

.pricing-table .head .title {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 700;
}

.pricing-table .content .price {
    background: linear-gradient(to right, #8E2DE2 0%, #4A00E0 100%);
    width: 90px;
    height: 90px;
    margin: auto;
    line-height: 90px;
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0px 0px 10px #ccc;
    margin-top: -50px;
    transition: all 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-table:hover .content .price {
    transform: scale(1.2);

}

.pricing-table .content .price h1 {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
}

.pricing-table .content ul {
    list-style-type: none;
    margin-bottom: 20px;
    padding-top: 10px;
        padding-left: 0;
}

.pricing-table .content ul li {
    margin: 20px 0px;
    font-size: 14px;
    color: white;
}

.pricing-table .content .sign-up {
    background: linear-gradient(to right, #8E2DE2 0%, #4A00E0 100%);
    border-radius: 40px;
    font-weight: 500;
    position: relative;
    display: inline-block;
}


.pricing-table .btn {
    color: #fff;
    padding: 14px 40px;
    display: inline-block;
    text-align: center;
    font-weight: 600;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3 linear;
    transition: all 0.3 linear;
    border: none;
    font-size: 14px;
    text-transform: capitalize;
    position: relative;
    text-decoration: none;
    margin: 2px;
    z-index: 9999;
    text-decoration: none;
    border-radius: 50px;

}

.pricing-table .btn:hover {
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
}

.pricing-table .btn.bordered {
    z-index: 50;
    color: #333;
}

.pricing-table:hover .btn.bordered {
    color: #fff !important;
}

.pricing-table .btn.bordered:after {
    background: #fff none repeat scroll 0 0;
    border-radius: 50px;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3 linear;
    transition: all 0.3 linear;
    width: 100%;
    z-index: -1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
}

.pricing-table:hover .btn.bordered:after {
    opacity: 0;
    transform: scale(0);
}

@media screen and (max-width:768px) {
    .wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width:600px) {
    .wrapper {
        grid-template-columns: 1fr;
    }
}

.brand-slider {
    height: 80px;
    position: relative;
}

.slider-track {
    animation: scroll 20s linear infinite;
    width: max-content;
}

.logo-item img {
    height: 50px;
    object-fit: contain;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.reviews-section {
  margin: 3rem auto;
  padding: 1rem;
  font-family: 'Segoe UI', sans-serif;
}
.reviews-section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}
/* .reviews-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
} */
.review-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  text-align: center;
}
.review-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}
.review-rating {
  font-size: 1.2rem;
  color: #FFD700;
}
.reviewer-role {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 0.5rem;
}
.review-card p {
  font-size: 0.95rem;
  color: #333;
  margin: 0.3rem 0;
}
