:root {
    --primary-color: #6a0dad;
    --primary-dark: #4b0082;
    --white: #ffffff;
    --black: #000000;
    --gray: #f5f5f5;
    --dark-gray: #333333;
}

/* Base Styles */
body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
    padding-top: 80px; /* Space for fixed navbar */
}

/* Navbar Styles */
.navbar {
    padding: 15px 0;
    transition: all 0.3s ease;
    background-color: rgba(0, 0, 0, 0.8);
}

.navbar.scrolled {
    padding: 10px 0;
    background-color: rgba(0, 0, 0, 0.9);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
}

.tm {
    font-size: 1rem;
    vertical-align: super;
}

.nav-link {
    font-weight: 500;
    padding: 8px 15px !important;
    position: relative;
    color: var(--white);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 15px;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: calc(100% - 30px);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

/* Banner Area */
.banner-area {
    position: relative;
    height: calc(100vh - 80px);

    overflow: hidden;
}

.banner-slider {
    width: 100%;
    height: 100%;
}

.banner-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
}

.banner-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
}

.banner-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    max-width: 800px;
}

.top-title {
    display: inline-block;
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.banner-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.banner-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.feature-list i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.3rem;
}


/* Responsive Styles */
@media (max-width: 991.98px) {
    .banner-content h1 {
        font-size: 2.5rem;
    }
    
    .banner-content p {
        font-size: 1rem;
    }
    
    .navbar-collapse {
        background-color: rgba(0, 0, 0, 0.9);
        padding: 20px;
        margin-top: 15px;
        border-radius: 5px;
    }
}

@media (max-width: 767.98px) {
    body {
        padding-top: 68px;
    }
    
    .banner-area {
        height: auto;
        padding:  0;
    }
    
    .banner-content {
        text-align: center;
    }
    
    .banner-content h1 {
        font-size: 2rem;
    }
    
    .feature-list {
        text-align: left;
    }
}

@media (max-width: 575.98px) {
    .navbar-brand h1 {
        font-size: 1.5rem;
    }
    
    .banner-content h1 {
        font-size: 1.8rem;
    }
    
    .top-title {
        font-size: 1rem;
    }
}

.whatsapp-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.whatsapp-float {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transition: all 0.4s;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: #333;
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 14px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    white-space: nowrap;
}

.whatsapp-tooltip:before {
    content: "";
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 5px 0 5px 5px;
    border-style: solid;
    border-color: transparent transparent transparent #333;
}

.whatsapp-container:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}
:root {
    --primary-color: #6a0dad;
    --primary-dark: #4b0082;
    --gold-color: #FFD700;
    --white: #ffffff;
    --black: #000000;
    --dark-bg: #1a1a1a;
}

/* Who We Are Section */
.who-we-are-section {
    position: relative;
    padding: 100px 0;
    background-color: var(--dark-bg);
    overflow: hidden;
    color: var(--white);
}

.section-subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.section-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.feature-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    font-size: 1rem;
    line-height: 1.6;
}

.feature-list i {
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 4px;
    font-size: 1.2rem;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(106, 13, 173, 0.3);
}

/* Images Section */
.who-we-images {
    position: relative;
    z-index: 2;
}

.image-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.5s ease;
}

.image-card img {
    width: 100%;
    height: auto;
    display: block;
}

.stats-card {
    position: relative;
    padding-bottom: 20px;
}

.stats-group {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    padding: 0 20px;
    z-index: 3;
}

.stat-item {
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 8px;
    color: var(--white);
    text-align: center;
}

.stat-item span {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 5px;
    font-weight: 500;
}

.stat-item h3 {
    font-size: 1.8rem;
    margin: 0;
    font-weight: 700;
}

.gold-stat {
    background-color: var(--gold-color);
    color: var(--black);
}

.purple-stat {
    background-color: var(--primary-color);
}

.main-image {
    margin-top: 40px;
}

/* Background Shape */
.background-shape {
    position: absolute;
    right: -200px;
    bottom: -200px;
    z-index: 1;
    opacity: 0.1;
}

.background-shape img {
    width: 600px;
    height: 600px;
}

/* Animations */
.animate__animated {
    visibility: hidden;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .who-we-are-section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .main-image {
        margin-top: 0;
    }
}

@media (max-width: 767.98px) {
    .who-we-are-section {
        padding: 60px 0;
        text-align: center;
    }
    
    .feature-list li {
        text-align: left;
    }
    
    .stats-group {
        position: relative;
        top: auto;
        margin-bottom: 20px;
    }
    
    .background-shape {
        display: none;
    }
}

:root {
    --primary-color: #6a0dad;
    --primary-light: #9b59b6;
    --white: #ffffff;
    --black: #000000;
    --dark-bg: #0f0f1a;
    --text-light: #e0e0e0;
    --highlight-color: #ff6b6b;
}

/* Our Content Section */
.our-content-section {
    position: relative;
    padding: 100px 0;
    background-color: var(--dark-bg);
    color: var(--white);
    overflow: hidden;
}

.content-wrapper {
    position: relative;
    z-index: 2;
}

.content-badge {
    display: inline-block;
    background-color: rgba(106, 13, 173, 0.2);
    color: var(--primary-light);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid var(--primary-color);
}

.content-badge i {
    margin-right: 8px;
    color: var(--highlight-color);
}

.content-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.3;
}

.highlight-text {
    color: var(--highlight-color);
    position: relative;
    display: inline-block;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(255, 107, 107, 0.3);
    z-index: -1;
    border-radius: 4px;
}

.content-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-light);
}

.highlight-box {
    background-color: rgba(106, 13, 173, 0.1);
    border-left: 4px solid var(--primary-color);
    padding: 20px;
    border-radius: 0 8px 8px 0;
    margin: 30px 0;
    position: relative;
    overflow: hidden;
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(106, 13, 173, 0.05), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.content-features {
    list-style: none;
    padding: 0;
    margin: 40px 0;
}

.content-features li {
    margin-bottom: 25px;
    padding: 15px 20px;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.content-features li:hover {
    transform: translateX(10px);
    background-color: rgba(106, 13, 173, 0.1);
    border-color: var(--primary-color);
}

.feature-icon {
    margin-right: 15px;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.progress-bar-container {
    flex-grow: 1;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    margin-left: 15px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--highlight-color));
    border-radius: 3px;
}

.cta-button {
    background: linear-gradient(135deg, var(--primary-color), var(--highlight-color));
    color: var(--white);
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(106, 13, 173, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(106, 13, 173, 0.4);
}

.cta-button i {
    margin-left: 10px;
    transition: all 0.3s ease;
}

.arrow-animation {
    animation: bounceRight 1.5s infinite;
}

@keyframes bounceRight {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

/* Visual Content */
.content-visual {
    position: relative;
    padding: 50px;
}

.main-visual {
    position: relative;
    z-index: 2;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.main-visual img {
    border-radius: 15px;
    transform: rotateY(0deg);
    transition: all 0.5s ease;
}

.main-visual:hover img {
    transform: rotateY(-10deg) scale(1.03);
}

.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.icon-float {
    position: absolute;
    color: rgba(255, 255, 255, 0.1);
    font-size: 2rem;
}

.animate-float-1 {
    top: 10%;
    left: 15%;
    animation: float 6s ease-in-out infinite;
}

.animate-float-2 {
    top: 60%;
    left: 70%;
    animation: float 8s ease-in-out infinite reverse;
}

.animate-float-3 {
    top: 30%;
    left: 80%;
    animation: float 7s ease-in-out infinite 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* Shape Background */
.shape-background {
    position: absolute;
    right: -200px;
    bottom: -200px;
    z-index: 1;
    opacity: 0.05;
}

.shape-animation {
    width: 600px;
    height: 600px;
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Styles */
@media (max-width: 1199.98px) {
    .content-title {
        font-size: 2.3rem;
    }
}

@media (max-width: 991.98px) {
    .our-content-section {
        padding: 80px 0;
    }
    
    .content-visual {
        padding: 30px;
    }
}

@media (max-width: 767.98px) {
    .content-title {
        font-size: 2rem;
    }
    
    .content-text p {
        font-size: 1rem;
    }
    
    .content-features li {
        padding: 10px 15px;
    }
    
    .shape-background {
        display: none;
    }
}

:root {
    --primary-color: #6a0dad;
    --primary-light: #9b59b6;
    --primary-dark: #4b0082;
    --gold-color: #FFD700;
    --white: #ffffff;
    --black: #000000;
    --gray: #f5f5f5;
    --dark-gray: #333333;
    --light-gray: #e0e0e0;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background-color: #f9f9ff;
    position: relative;
    overflow: hidden;
}

.section-header {
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background-color: rgba(106, 13, 173, 0.1);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--#6a0dad);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--primary-color);
    max-width: 600px;
    margin: 0 auto;
}

/* Pricing Tabs */
.pricing-tabs {
    margin-bottom: 40px;
}

.nav-pills .nav-link {
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-gray);
    border-radius: 50px;
    margin: 0 10px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.nav-pills .nav-link.active {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(106, 13, 173, 0.2);
}

.nav-pills .nav-link:not(.active):hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Pricing Cards */
.pricing-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    box-shadow: 0 15px 40px rgba(106, 13, 173, 0.2);
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--gold-color);
    color: var(--black);
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 2;
}

.pricing-header {
    padding: 30px;
    text-align: center;
    background-color: rgba(106, 13, 173, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-badge {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--black);
}

.price {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.price .currency {
    font-size: 1.5rem;
    vertical-align: top;
    line-height: 2.5rem;
}

.price .amount {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.price .decimal {
    font-size: 1.5rem;
    vertical-align: top;
    line-height: 2.5rem;
}

.price .period {
    font-size: 1rem;
    color: var(--dark-gray);
    display: block;
    margin-top: 5px;
}

.original-price {
    margin-bottom: 15px;
}

.original-price del {
    color: var(--dark-gray);
    font-size: 1.1rem;
}

.discount-badge {
    display: inline-block;
    background-color: #e3f7ee;
    color: #00a76f;
    padding: 3px 10px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 10px;
}

.pricing-body {
    padding: 30px;
    flex-grow: 1;
}

.credits-info {
    text-align: center;
    margin-bottom: 20px;
}

.credits-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.credits-note {
    font-size: 0.9rem;
    color: var(--dark-gray);
    display: block;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    font-size: 1rem;
    line-height: 1.5;
}

.features-list i {
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 3px;
}

.pricing-footer {
    padding: 0 30px 30px;
    text-align: center;
}

.promo-banner {
    background-color: #f0f9ff;
    border: 1px solid #a3d5ff;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.promo-text {
    color: #003b73;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.promo-code {
    background-color: #e0f0ff;
    color: #007bff;
    padding: 3px 10px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(106, 13, 173, 0.3);
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Responsive Styles */
@media (max-width: 1199.98px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .pricing-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 991.98px) {
    .pricing-section {
        padding: 80px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .nav-pills .nav-link {
        padding: 10px 20px;
        font-size: 1rem;
    }
}

@media (max-width: 767.98px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .nav-pills .nav-link {
        margin: 5px;
        width: 100%;
    }
    
    .price .amount {
        font-size: 2rem;
    }
}

:root {
    --primary-color: #6a0dad;
    --primary-light: #9b59b6;
    --whatsapp-green: #25D366;
    --telegram-blue: #0088CC;
    --white: #ffffff;
    --black: #000000;
    --gray: #f5f5f5;
    --dark-gray: #333333;
}

/* No Risk Test Section */
.no-risk-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.no-risk-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/test-pattern.png') center/cover no-repeat;
    opacity: 0.1;
}

.test-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.test-badge {
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
}

.test-badge::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background-color: var(--white);
    border-radius: 2px;
}

.test-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.test-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.test-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: 50px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.3s ease;
}

.test-feature:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.feature-icon {
    font-size: 1.8rem;
    margin-right: 15px;
    color: var(--white);
}

.feature-text {
    font-size: 1.1rem;
    font-weight: 500;
}

.test-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.whatsapp-btn {
    background-color: var(--whatsapp-green);
    color: var(--white);
}

.telegram-btn {
    background-color: var(--telegram-blue);
    color: var(--white);
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.2);
    opacity: 0;
    border-radius: 50px;
}

.test-guarantee {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 20px;
}

.test-guarantee i {
    color: var(--white);
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .no-risk-section {
        padding: 60px 0;
    }
    
    .test-badge {
        font-size: 2rem;
    }
    
    .test-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 767.98px) {
    .test-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .test-badge {
        font-size: 1.8rem;
    }
    
    .test-title {
        font-size: 1.5rem;
    }
    
    .test-subtitle {
        font-size: 1rem;
    }
    
    .test-feature {
        padding: 10px 15px;
    }
    
    .feature-text {
        font-size: 1rem;
    }
}

/* Base Styles */
  .channels-list-container {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    color: #333;
  }
  
  /* Filter Section */
  .channel-filter-section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    align-items: center;
  }
  
  .search-box {
    position: relative;
    flex-grow: 1;
    min-width: 250px;
  }
  
  .search-input {
    width: 100%;
    padding: 12px 20px;
    padding-right: 45px;
    border: 1px solid #ddd;
    border-radius: 25px;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }
  
  .search-input:focus {
    outline: none;
    border-color: #4a90e2;
    box-shadow: 0 2px 10px rgba(74, 144, 226, 0.3);
  }
  
  .search-button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #666;
  }
  
  .category-filters {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
  }
  
  .filter-dropdown {
    position: relative;
    display: inline-block;
  }
  
  .filter-btn {
    background-color: #f8f9fa;
    color: #333;
    padding: 10px 20px;
    border: 1px solid #ddd;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
  }
  
  .filter-btn:hover {
    background-color: #e9ecef;
  }
  
  .arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
  }
  
  .filter-dropdown:hover .arrow {
    transform: rotate(180deg);
  }
  
  .filter-dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    z-index: 1;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 5px;
  }
  
  .filter-dropdown-content a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s;
  }
  
  .filter-dropdown-content a:hover {
    background-color: #f1f1f1;
  }
  
  .filter-dropdown:hover .filter-dropdown-content {
    display: block;
  }
  
  /* Channels Grid */
  .channels-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  
  .channel-category {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow: hidden;
  }
  
  .category-title {
    background-color: #4a90e2;
    color: white;
    padding: 12px 20px;
    margin: 0;
    font-size: 18px;
    font-weight: 600;
  }
  
  .channel-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    padding: 20px;
  }
  
  .channel-card {
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: 8px;
    background-color: white;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  
  .channel-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-color: #4a90e2;
  }
  
  .channel-logo {
    width: 50px;
    height: 30px;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    border-radius: 4px;
    overflow: hidden;
  }
  
  .channel-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }
  
  .channel-info {
    flex-grow: 1;
  }
  
  .channel-name {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #333;
  }
  
  .channel-resolution {
    font-size: 12px;
    color: #666;
    display: inline-block;
    padding: 2px 6px;
    background-color: #f0f0f0;
    border-radius: 10px;
  }
  
  /* Pagination */
  .pagination {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 5px;
  }
  
  .page-nav, .page-number {
    color: #333;
    padding: 8px 15px;
    text-decoration: none;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: background-color 0.3s;
  }
  
  .page-number.active {
    background-color: #4a90e2;
    color: white;
    border-color: #4a90e2;
  }
  
  .page-nav:hover:not(.disabled),
  .page-number:hover:not(.active) {
    background-color: #f1f1f1;
  }
  
  .page-nav.disabled {
    color: #aaa;
    cursor: not-allowed;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .channel-filter-section {
      flex-direction: column;
      align-items: stretch;
    }
    
    .category-filters {
      flex-direction: column;
    }
    
    .channel-list {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  @media (max-width: 480px) {
    .channel-list {
      grid-template-columns: 1fr;
    }
    
    .pagination {
      flex-wrap: wrap;
    }
  }
  .channels-grid {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    color: #333;
  }
  
  .channel-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
  }
  
  .channel-card {
    display: flex;
    align-items: center;
    padding: 12px;
    border-radius: 8px;
    background-color: white;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  
  .channel-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-color: #4a90e2;
  }
  
  .channel-logo {
    width: 50px;
    height: 30px;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    border-radius: 4px;
    overflow: hidden;
  }
  
  .channel-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }
  
  .channel-info {
    flex-grow: 1;
  }
  
  .channel-name {
    margin: 0 0 5px 0;
    font-size: 14px;
    font-weight: 600;
    color: #333;
  }
  
  .channel-resolution {
    font-size: 12px;
    color: #666;
    display: inline-block;
    padding: 2px 6px;
    background-color: #f0f0f0;
    border-radius: 10px;
    margin-right: 8px;
  }
  
  .channel-category {
    font-size: 12px;
    color: #4a90e2;
    display: inline-block;
    padding: 2px 6px;
    background-color: #e6f0ff;
    border-radius: 10px;
  }
  
  @media (max-width: 768px) {
    .channel-list {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  @media (max-width: 480px) {
    .channel-list {
      grid-template-columns: 1fr;
    }
  }

/* Testimonial Area */
.testimonial-area {
    position: relative;
    overflow: hidden;
}

.bg-gradient-purple {
    background: linear-gradient(135deg, rgba(42, 0, 75, 0.8) 0%, rgba(0, 0, 0, 0.9) 100%);
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 20px 50px rgba(106, 13, 173, 0.3);
    position: relative;
    overflow: hidden;
}

.bg-gradient-purple::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(106, 13, 173, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    z-index: 0;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.top-title.purple-glow {
    color: #b388ff;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(179, 136, 255, 0.5);
}

.text-light-purple {
    color: #d1c4e9;
}

/* Testimonial Cards */
.testimonial-single-item-two {
    background: rgba(30, 30, 30, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(106, 13, 173, 0.3);
    transition: all 0.5s ease;
    height: 100%;
}

.animated-card {
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.swiper-slide-active .animated-card {
    transform: translateY(0);
    opacity: 1;
}

.avatar-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 24px;
    color: white;
}

.purple-gradient {
    background: linear-gradient(135deg, #6a0dad 0%, #9c27b0 100%);
    box-shadow: 0 5px 15px rgba(106, 13, 173, 0.5);
}

.star-rating {
    color: #ffd700;
    font-size: 18px;
    letter-spacing: 2px;
}

.testimonial-text {
    color: #e0e0e0;
    font-size: 18px;
    line-height: 1.7;
    font-style: italic;
    position: relative;
}

.quote-icon {
    position: absolute;
    bottom: 20px;
    right: 30px;
    font-size: 60px;
    opacity: 0.1;
    z-index: 0;
}

.purple-filter {
    filter: drop-shadow(0 0 5px rgba(106, 13, 173, 0.7));
    color: #6a0dad;
}

/* Navigation Controls */
.testomonial-controller {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.controller-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(106, 13, 173, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    font-size: 20px;
}

.controller-icon:hover {
    background: #6a0dad;
    transform: scale(1.1);
}

.swiper-pagination {
    position: relative;
    margin-top: 30px;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #6a0dad;
    transform: scale(1.3);
}

/* Animation for active slide */
.swiper-slide-active .testimonial-single-item-two {
    box-shadow: 0 15px 30px rgba(106, 13, 173, 0.4);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .testimonial-wrap {
        padding: 40px 20px;
    }
    
    .testimonial-single-item-two {
        padding: 30px 20px;
    }
    
    .testimonial-text {
        font-size: 16px;
    }
}
  

/* Fan Fact Area */
.fan-fact-area {
    background-color: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.fan-fact-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(106, 13, 173, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.fan-fact-wrap {
    position: relative;
    z-index: 1;
}

.fan-fact-single-item {
    text-align: center;
    padding: 30px 20px;
    min-width: 180px;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animated-fact {
    opacity: 1;
    transform: translateY(0);
}

.fact-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.purple-glow {
    color: #6a0dad;
    text-shadow: 0 0 15px rgba(106, 13, 173, 0.7);
}

.fact-number {
    font-size: 2.5em;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    line-height: 1;
}

.fact-number span:first-child {
    color: #b388ff;
}

.fact-label {
    color: #b0b0b0;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-weight: 600;
}

.fact-underline {
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #6a0dad, #9c27b0);
    margin: 0 auto;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.fan-fact-single-item:hover .fact-underline {
    width: 60px;
    background: linear-gradient(90deg, #9c27b0, #6a0dad);
}

/* Animation delays for each item */
.fan-fact-single-item:nth-child(1) {
    transition-delay: 0.1s;
}
.fan-fact-single-item:nth-child(2) {
    transition-delay: 0.2s;
}
.fan-fact-single-item:nth-child(3) {
    transition-delay: 0.3s;
}
.fan-fact-single-item:nth-child(4) {
    transition-delay: 0.4s;
}
.fan-fact-single-item:nth-child(5) {
    transition-delay: 0.5s;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .fan-fact-single-item {
        min-width: 160px;
        padding: 25px 15px;
    }
}

@media (max-width: 992px) {
    .fan-fact-single-item {
        min-width: 140px;
        padding: 20px 10px;
    }
    
    .fact-number {
        font-size: 2em;
    }
    
    .fact-label {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .fan-fact-single-item {
        min-width: 120px;
        padding: 15px 10px;
    }
    
    .fact-number {
        font-size: 1.8em;
    }
    
    .fact-icon {
        font-size: 30px;
    }
}

/* FAQ Area */
.faq-area {
    position: relative;
    overflow: hidden;
}

.faq-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(106, 13, 173, 0.15) 0%, transparent 50%);
    z-index: 0;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-item {
    background: rgba(30, 30, 30, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid rgba(106, 13, 173, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-faq {
    transform: translateY(0);
    opacity: 1;
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question h4 {
    margin: 0;
    color: white;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(106, 13, 173, 0.1);
}

.faq-question:hover h4 {
    color: #b388ff;
}

.faq-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(106, 13, 173, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.faq-icon i {
    color: white;
    font-size: 14px;
    transition: all 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    padding: 0 25px;
}

.faq-answer p {
    color: #e0e0e0;
    line-height: 1.7;
    padding-bottom: 20px;
    margin: 0;
}

/* Active state */
.faq-item.active .faq-question {
    background: rgba(106, 13, 173, 0.2);
}

.faq-item.active .faq-question h4 {
    color: #b388ff;
}

.faq-item.active .faq-icon {
    background: #6a0dad;
    transform: rotate(45deg);
}

.faq-item.active .faq-icon i {
    color: white;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* Animation delays */
.faq-item:nth-child(1) {
    transition-delay: 0.1s;
}
.faq-item:nth-child(2) {
    transition-delay: 0.2s;
}
.faq-item:nth-child(3) {
    transition-delay: 0.3s;
}
.faq-item:nth-child(4) {
    transition-delay: 0.4s;
}
.faq-item:nth-child(5) {
    transition-delay: 0.5s;
}

.purple-link {
    color: #b388ff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.purple-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #b388ff;
    transition: width 0.3s ease;
}

.purple-link:hover {
    color: #d1c4e9;
}

.purple-link:hover::after {
    width: 100%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .faq-question {
        padding: 15px 20px;
    }
    
    .faq-question h4 {
        font-size: 16px;
    }
    
    .faq-answer p {
        font-size: 14px;
    }
}
/* Animated Footer Styles */
.animated-footer {
    position: relative;
    background: var(--black);
    color: var(--white);
    padding-top: 80px;

    overflow: hidden;
}

.footer-wave {
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 50px;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" fill="%236a0dad" opacity=".25"/><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" fill="%236a0dad" opacity=".5"/><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="%236a0dad"/></svg>');
    background-size: cover;
    animation: waveAnimation 8s linear infinite;
}

@keyframes waveAnimation {
    0% { background-position-x: 0; }
    100% { background-position-x: 1200px; }
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 40px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
    padding: 0 15px;
    margin-bottom: 30px;
}

.footer-heading {
    color: var(--primary-light);
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--primary);
}

.footer-links li, .footer-contact li {
    margin-bottom: 10px;
    list-style: none;
}

.footer-links a, .footer-contact li {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.link-hover {
    position: relative;
}

.link-hover::before {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-light);
    transition: width 0.3s ease;
}

.link-hover:hover::before {
    width: 100%;
}

.footer-contact i {
    color: var(--primary-light);
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(106, 13, 173, 0.2);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

.newsletter h4 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 1rem;
}

.newsletter-input {
    display: flex;
    border-radius: 30px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(106, 13, 173, 0.5);
}

.newsletter-input input {
    flex: 1;
    padding: 10px 15px;
    background: transparent;
    border: none;
    color: var(--white);
    outline: none;
}

.newsletter-input input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.subscribe-btn {
    width: 45px;
    background: var(--primary);
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.subscribe-btn:hover {
    background: var(--primary-dark);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px 0;
    text-align: center;
    border-top: 1px solid rgba(106, 13, 173, 0.3);
}

.footer-copyright {
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--primary-light);
}

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: #888787;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(106, 13, 173, 0.4);
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}


/* ===== Base Responsive Styles ===== */
@media (max-width: 1199.98px) {
  /* Large devices (desktops, less than 1200px) */
  .section-title {
    font-size: 2.2rem;
  }
  
  .content-title {
    font-size: 2.3rem;
  }
  
  .fan-fact-single-item {
    min-width: 160px;
    padding: 25px 15px;
  }
}

@media (max-width: 991.98px) {
  /* Medium devices (tablets, less than 992px) */
  body {
    padding-top: 70px;
  }
  
  .navbar-brand h1 {
    font-size: 1.8rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .banner-content h1 {
    font-size: 2.5rem;
  }
  
  .banner-content p {
    font-size: 1rem;
  }
  
  .who-we-are-section,
  .our-content-section,
  .pricing-section {
    padding: 80px 0;
  }
  
  .content-visual {
    padding: 30px;
  }
  
  .fan-fact-single-item {
    min-width: 140px;
    padding: 20px 10px;
  }
  
  .fact-number {
    font-size: 2em;
  }
  
  .fact-label {
    font-size: 14px;
  }
  
  .nav-pills .nav-link {
    padding: 10px 20px;
    font-size: 1rem;
  }
  
  .testimonial-wrap {
    padding: 40px 20px;
  }
  
  .testimonial-single-item-two {
    padding: 30px 20px;
  }
  
  .testimonial-text {
    font-size: 16px;
  }
  
  .no-risk-section {
    padding: 60px 0;
  }
  
  .test-badge {
    font-size: 2rem;
  }
  
  .test-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 767.98px) {
  /* Small devices (landscape phones, less than 768px) */
  .section-title {
    font-size: 1.8rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .banner-area {
    height: auto;

  }
  
  .banner-content {
    text-align: center;
  }
  
  .banner-content h1 {
    font-size: 2rem;
  }
  
  .feature-list {
    text-align: left;
  }
  
  .who-we-are-section {
    padding: 60px 0;
    text-align: center;
  }
  
  .stats-group {
    position: relative;
    top: auto;
    margin-bottom: 20px;
  }
  
  .background-shape {
    display: none;
  }
  
  .content-title {
    font-size: 2rem;
  }
  
  .content-text p {
    font-size: 1rem;
  }
  
  .content-features li {
    padding: 10px 15px;
  }
  
  .shape-background {
    display: none;
  }
  
  .nav-pills .nav-link {
    margin: 5px;
    width: 100%;
  }
  
  .price .amount {
    font-size: 2rem;
  }
  
  .fan-fact-single-item {
    min-width: 120px;
    padding: 15px 10px;
  }
  
  .fact-number {
    font-size: 1.8em;
  }
  
  .fact-icon {
    font-size: 30px;
  }
  
  .faq-question {
    padding: 15px 20px;
  }
  
  .faq-question h4 {
    font-size: 16px;
  }
  
  .faq-answer p {
    font-size: 14px;
  }
  
  .test-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  .test-badge {
    font-size: 1.8rem;
  }
  
  .test-title {
    font-size: 1.5rem;
  }
  
  .test-subtitle {
    font-size: 1rem;
  }
  
  .test-feature {
    padding: 10px 15px;
  }
  
  .feature-text {
    font-size: 1rem;
  }
  
  .channel-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 575.98px) {
  /* Extra small devices (portrait phones, less than 576px) */
  .navbar-brand h1 {
    font-size: 1.5rem;
  }
  
  .banner-content h1 {
    font-size: 1.8rem;
  }
  
  .top-title {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
  
  .content-title {
    font-size: 1.8rem;
  }
  
  .channel-list {
    grid-template-columns: 1fr;
  }
  
  .footer-column {
    min-width: 100%;
    text-align: center;
  }
  
  .footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-legal {
    flex-direction: column;
    gap: 10px;
  }
  
  .social-icons {
    justify-content: center;
  }
  
  .newsletter-input {
    max-width: 300px;
    margin: 0 auto;
  }
}

/* ===== Component-Specific Responsive Fixes ===== */

/* Navbar Collapse */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: rgba(0, 0, 0, 0.9);
    padding: 20px;
    margin-top: 15px;
    border-radius: 5px;
  }
  
  .nav-link {
    padding: 10px 0 !important;
    margin: 5px 0 !important;
  }
  
  .nav-link::after {
    display: none;
  }
  
  .ms-3 {
    margin-left: 0 !important;
    margin-top: 15px;
  }
}

/* Pricing Cards Stacking */
@media (max-width: 767.98px) {
  .pricing-card {
    margin-bottom: 30px;
  }
}

/* Testimonial Cards */
@media (max-width: 767.98px) {
  .testimonial-single-item-two {
    padding: 25px 15px;
  }
  
  .avatar-circle {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }
  
  .testimonial-text {
    font-size: 15px;
  }
}

/* Channel List Grid */
@media (max-width: 767.98px) {
  .channel-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .channel-list {
    grid-template-columns: 1fr;
  }
}

/* FAQ Items */
@media (max-width: 575.98px) {
  .faq-question h4 {
    font-size: 15px;
    padding-right: 10px;
  }
  
  .faq-icon {
    width: 25px;
    height: 25px;
  }
  
  .faq-icon i {
    font-size: 12px;
  }
}

/* Footer Wave Adjustment */
@media (max-width: 767.98px) {
  .footer-wave {
    top: -30px;
    height: 30px;
  }
}

/* Scroll Top Button */
@media (max-width: 575.98px) {
  .scroll-top {
    width: 40px;
    height: 40px;
    bottom: 20px;
    right: 20px;
  }
}

/* ===== Mobile-Specific Enhancements ===== */

/* Prevent horizontal scrolling */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* Touch target sizes */
@media (max-width: 767.98px) {
  .btn, .nav-link, .faq-question {
    min-height: 44px; /* Apple's recommended minimum touch target size */
  }
  
  .social-icon {
    width: 44px;
    height: 44px;
  }
}

/* Mobile menu animation */
.navbar-toggler {
  border: none;
  padding: 0.5rem;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

/* Smooth transitions for mobile */
@media (max-width: 991.98px) {
  .navbar-collapse {
    transition: all 0.3s ease;
    max-height: 0;
    overflow: hidden;
    display: block !important; /* Override Bootstrap's display: none */
  }
  
  .navbar-collapse.show {
    max-height: 1000px; /* Adjust based on your content */
  }
}

/* Viewport unit fixes for mobile */
@media (max-width: 767.98px) {
  .banner-area {
    min-height: auto;
    height: auto;
  }
  
  .banner-slide {
    min-height: 440px;
  }
}

/* Input zoom prevention on iOS */
@media (max-width: 767.98px) {
  input, select, textarea {
    font-size: 16px !important;
  }
}

/* Hide decorative elements on mobile */
@media (max-width: 767.98px) {
  .floating-icons,
  .background-shape,
  .shape-background {
    display: none;
  }
}

/* ===== Performance Optimizations for Mobile ===== */

/* Reduce animations on mobile */
@media (max-width: 767.98px) {
  .animate__animated,
  .animated-card,
  .animated-fact,
  .animated-faq {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  
  .btn-pulse,
  .arrow-animation,
  .pulse-animation {
    animation: none !important;
  }
}

channels-list-container, .filterBox {
      background-color: #000;
      color: #b19cd9;
      font-family: Arial, sans-serif;
    }
    .search-channel, .filter-btn, .country {
      background-color: #222;
      color: #b19cd9;
      border: 1px solid #b19cd9;
    }
    .channel-card, .allchannels a {
      color: #b19cd9;
    }
    .sign {
      color: #9b59b6;
      font-weight: bold;
    }
    .channel-country {
      border-bottom: 1px solid #b19cd9;
    }
    
/* Simplify gradients and shadows on mobile */
@media (max-width: 767.98px) {
  .bg-gradient-purple,
  .btn-primary,
  .cta-button {
    background: var(--primary-color) !important;
  }
  
  .btn-primary:hover,
  .cta-button:hover {
    transform: none !important;
    box-shadow: none !important;
  }
}

.channels-list-container {
      background-color: #000;
      color: #b19cd9;
      padding: 20px;
      font-family: Arial, sans-serif;
    }
    .search-input, .filter-btn {
      background-color: #333;
      color: #b19cd9;
      border: 1px solid #b19cd9;
    }
    .channel-card {
      background-color: #222;
      border: 1px solid #b19cd9;
    }
    .channel-name {
      color: #b19cd9;}
      }

