
:root {
    --primary-color: #05d2f6;
    --secondary-color: #ea580c;
    --dark-bg: #0f172a;
    --card-bg: #1e293b;
    --light-text: #f8fafc;
    --border-color: #334155;
    --accent-color: #f59e0b;
    --gradient-orange: #e44a01;
}

[data-theme="light"] {
    --dark-bg: #ffffff;
    --card-bg: #f8fafc;
    --light-text: #0f172a;
    --border-color: #e2e8f0;
}

.how-it-works-card .bi {
    color: var(--light-text);
}
.policy_page {
    padding: 150px 0 0;
}
body {
    background-color: var(--dark-bg);
    color: var(--light-text);
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    overflow-x: hidden;
}

.navbar-brand {
    font-weight: 700;
    font-size: 20px;
    color: #e44a01 !important;
}

.hero-section {
    
    padding: 10rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, #e44a01 0%, transparent 70%);
    opacity: 0.1;
    top: -100px;
    right: -100px;
    z-index:-1;
    border-radius: 50%;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    background: #e44a01;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
}

.btn-primary-custom {
    background: var(--gradient-orange);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 999px;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgb(228 74 1 / 27%);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: var(--gradient-orange);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.how-it-works-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.how-it-works-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--gradient-orange);
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.rewards-icon {
    font-size: 3rem;
    color: #e44a01;
    margin-bottom: 1rem;
}

.stats-counter {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
}

.stats-label {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

.faq-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 20px 1.5rem 1.5rem;
    border-top: 1px solid var(--border-color);
    display: none;
}

.faq-card.active .faq-answer {
    display: block;
}

.faq-card.active .faq-question i {
    transform: rotate(180deg);
}

.payment-method {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 0.8rem 1.5rem;
    margin: 0.5rem;
    transition: all 0.3s ease;
}

.payment-method:hover {
    background-color: rgba(249, 115, 22, 0.2);
    transform: translateY(-3px);
}

footer {
    background-color: #0a1129;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    display: block;
    margin-bottom: 0.7rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #e44a01;
}

.gradient-text {
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* New Styles for CashinBucks-like hero section */
.payment-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.payment-item {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.payment-item:hover {
    background-color: rgb(0 171 202 / 10%);
    border-color: #e44a01;
    transform: translateY(-5px);
}

.payment-icon img {
    width: 60px;
    height: 60px;
    display: block;
    margin: auto;
    margin-bottom: 18px;
    object-fit: scale-down;
}

/* New Styles for redesigned stats section */
.earnings-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.earnings-card::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, #e44a01 0%, transparent 70%);
    opacity: 0.1;
    top: -50px;
    right: -50px;
    border-radius: 50%;
}

.stats-icon {
    font-size: 3.5rem;
    color: #e44a01;
    margin-bottom: 1rem;
}

.time-badge {
    display: inline-block;
    background: var(--gradient-orange);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 1rem;
}
.contact_form {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--card-bg);
    padding: 20px;
    border-radius: 10px;
}
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .policy_page {
    padding: 100px 0 0;
}

    .section-title {
        font-size: 2rem;
    }
    
    .stats-counter {
        font-size: 2.5rem;
    }
    
    .payment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.btn_one {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 999px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    color: #989ba5;
    text-decoration: none;
}
.btn_one:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgb(228 74 1 / 27%);
}
.survey_item_box {
    text-align: center;
}
.survey_item_box .item_net {
    color: var(--light-text);
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px;
    background: var(--card-bg);
    border-radius: 5px;
    display: inline-block;
    margin: 5px;
    text-decoration: none;
}
.survey_item_box .item_net.middle {
    transform: scale(1.07);
}
.survey_item_box img {
    width: 145px;
    border-radius: 5px;
}
.survey_item_box h5 {
    font-size: 12px;
    margin: 0px;
    padding: 5px 0px;
}
.survey_item_box p {
        font-size: 11px;
    margin: 0px;
    color: #989ba5;
}
.survey_item_box .price_rating {
        display: flex;
    justify-content: space-between;
    margin-top: 5px;
}
.survey_item_box .price_rating .price {
    font-size: 15px;
}
.survey_item_box .price_rating .ratting {
    font-size: 10px;
}
.survey_item_box .price_rating .ratting i {
        color: #ffca2b;
}
        /* Slick Slider Custom Styles */
.review-slider {
    margin: 0 40px;
}

.review-slide {
    padding: 10px;
}

.review-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    padding: 25px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 0 5px;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.15);
    border-color: #e44a01;
}

.review-text h4 {
    color: #e44a01;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}
.review-info .text-muted {
    --bs-text-opacity: 1;
    color: var(--light-text) !important;
}
.review-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--light-text);
    margin-bottom: 1.5rem;
    min-height: 120px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.review-avatar {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    flex-shrink: 0;
}

.review-info {
    flex-grow: 1;
}

.review-rating {
    font-size: 0.9rem;
    margin: 0.3rem 0;
}

.bg-purple {
    background-color: #8b5cf6 !important;
}

/* Slick Slider Navigation Arrows */
.review-slider .slick-prev,
.review-slider .slick-next {
    width: 40px;
    height: 40px;
    z-index: 1;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 999px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #989ba5;
    text-decoration: none;
}

.review-slider .slick-prev:hover,
.review-slider .slick-next:hover {
    background-color: var(--secondary-color) !important;
}

.review-slider .slick-prev {
    left: -30px;
}

.review-slider .slick-next {
    right: -30px;
}

.review-slider .slick-prev:before,
.review-slider .slick-next:before {
    font-family: "bootstrap-icons";
    font-size: 20px;
    color: white;
    opacity: 1;
}

.review-slider .slick-prev:before {
    content: "\F284"; /* Bootstrap icon for previous */
}

.review-slider .slick-next:before {
    content: "\F285"; /* Bootstrap icon for next */
}

/* Slick Slider Dots */
.review-slider .slick-dots {
    bottom: -40px;
}

.review-slider .slick-dots li button:before {
    font-size: 10px;
    color: var(--border-color);
    opacity: 1;
}

.review-slider .slick-dots li.slick-active button:before {
    color: #e44a01;
}

.trustpilot-badge {
    display: inline-block;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    padding: 0.2rem;
    background: var(--card-bg);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .review-slider {
        margin: 0 20px;
    }
    .survey_item_box p {
        font-size: 8px;
    }
    
    .review-slider .slick-prev {
        left: -30px;
    }
    
    .review-slider .slick-next {
        right: -30px;
    }
    
    .review-text h4 {
        min-height: auto;
    }
    
    .review-text p {
        min-height: auto;
    }
    .survey_item_box .item_net {
          margin: 0px !important;
          width:95px;
  }
  .survey_item_box h5 {
    font-size: 10px !important;
  }
  .hero-section {
    padding: 7rem 0 1rem;
  }
  .survey_item_box img {
    width: 100%;
  }
  .earnings-card {
    padding: 1.5rem;
  }
}
.auth_section {
        display: flex;
    gap: 10px;
    align-items: center;
}
.trustpilot_icon img {
    width:90px;
}
  