       /* General Styles */
       body {
        font-family: Arial, sans-serif;
        margin: 0;
        padding: 0;
        background-color: #121212;
        color: #ffffff;
        overflow-x: hidden;
        width: 100%;
    }
    html, body {
overflow-x: hidden;
max-width: 100%;
}




    .hero h1 {
        font-size: 3.5rem;
        font-weight: bold;
        margin-bottom: 10px;
    }

    .hero p {
        font-size: 18px;
        color: #bbb;
        margin-bottom: 20px;
    }


    .cta-btn:hover {
        transform: scale(1.05);
        background: linear-gradient(45deg, #e50914, #ff7b00);
    }

    /* Floating Icons */
    .floating-icons {
        display: flex;
        gap: 15px;
        margin: 20px 0;
    }

    .floating-icons img {
        width: 40px;
        transition: transform 0.3s ease-in-out;
    }

    .floating-icons img:hover {
        transform: scale(1.2);
    }

    /* Stats Section */
    .stats-container {
        display: flex;
        gap: 20px;
        justify-content: center;
        margin-top: 40px;
    }

    .stats-box {
        background: rgba(255, 255, 255, 0.1);
        padding: 20px;
        border-radius: 10px;
        text-align: center;
        width: 250px;
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
        transition: transform 0.3s;
    }

    .stats-box:hover {
        transform: scale(1.05);
    }

    .stats-title {
        font-size: 22px;
        font-weight: bold;
    }

    .stats-subtitle {
        font-size: 16px;
        color: #bbb;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .hero {
            padding: 60px 20px;
            justify-content: flex-start; /* Optional: if you prefer top alignment on mobile */
        }
        .hero h1 {
            font-size: 2.5rem;
        }

        .hero p {
            font-size: 16px;
        }

        .stats-container {
            flex-direction: column;
            align-items: center;
        }

        .stats-box {
            width: 90%;
        }
    }


/* Feature Cards - Horizontal Layout */
.feature-card {
background: #121212;
padding: 20px;
border-radius: 12px;
width: 250px;
text-align: center;
transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.feature-card:hover {
transform: scale(1.05);
box-shadow: 0px 4px 15px rgb(255, 0, 0);
}

/* Icon Styling */
.icon-container {
display: flex;
justify-content: center;
margin-bottom: 15px;
}

.icon-image {
width: 50px;
height: auto;
}

/* Title & Text */
.feature-title {
font-size: 18px;
font-weight: bold;
text-transform: uppercase;
}

.feature-text {
color: #bbb;
font-size: 14px;
margin-top: 5px;
}

/* Ensuring Full-Width Coverage */
.flex-wrap {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
max-width: 90%;
margin: auto;
}



.how-it-works h2 {
font-size: 28px;
font-weight: bold;
text-transform: uppercase;
margin-bottom: 20px; /* Space below heading */
margin-top: 50px;
}

.how-it-works p {
color: #bbb;
font-size: 16px;
margin-bottom: 40px; /* Adds more space */
}

.get-started-btn {
margin-top: 30px; /* Adjust this value as needed */
}





/* Responsive Adjustments - Stacks on Mobile */
@media (max-width: 768px) {


    .flex-wrap {
        display: flex;
        justify-content: center; /* Centers horizontally */
        align-items: center; /* Centers vertically */
      }
.how-it-works {
    flex-direction: column; /* Stacks elements vertically */
}
}

.testimonial-section {
text-align: center;
padding: 50px 20px;
background-color: #111;
color: white;
}

.testimonial-container {
display: flex;
align-items: center;
justify-content: center;
position: relative;
}

.testimonial-slider-wrapper {
overflow: hidden;
width: 900px; /* 3 cards visible */
}

.testimonial-slider {
display: flex;
gap: 20px;
transition: transform 0.8s ease-in-out;
}

.testimonial-card {
background: #232323;
padding: 20px;
border-radius: 5px;
text-align: center;
width: 300px;
height: auto;
box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
transition: transform 0.3s;
min-width: 300px;
}

.testimonial-card:hover {
transform: scale(1.05);
box-shadow: 0px 1px 1px rgb(255, 0, 0);
}

.testimonial-text {
font-size: 16px;
margin-bottom: 10px;
}

.testimonial-rating {
color: gold;
font-size: 18px;
}

.testimonial-user {
display: flex;
align-items: center;
margin-top: 15px;
}

.testimonial-user img {
width: 50px;
height: 50px;
border-radius: 50%;
margin-right: 10px;
}

.testimonial-user h4 {
margin: 0;
font-size: 16px;
}

.testimonial-user p {
margin: 0;
font-size: 14px;
color: gray;
}

.testimonial-user a {
color: #4dabf7;
text-decoration: none;
}

.testimonial-user a:hover {
text-decoration: underline;
}

/* Navigation Buttons */
.prev-slide, .next-slide {
background: white;
border: none;
padding: 10px 15px;
font-size: 18px;
cursor: pointer;
border-radius: 5px;
color: black;
position: absolute;
top: 50%;
transform: translateY(-50%);
}

.prev-slide { left: 10px; }
.next-slide { right: 10px; }

.prev-slide:hover, .next-slide:hover {
background: #ddd;
}

/* Responsive: Mobile View */
@media (max-width: 768px) {
.testimonial-slider-wrapper {
    width: 100%;
}

.testimonial-card {
    width: 90%;
}

.prev-slide, .next-slide {
    display: none;
}
}



    /* Hero Section */
    
    .hero {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        height: 100vh; /* Full viewport height */
        padding: 20px; /* Some breathing room on smaller screens */
        box-sizing: border-box;
    }
    

    .hero-content h1 {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .cta-btn {
        padding: 12px 24px;
        background: linear-gradient(45deg, #ff7b00, #e50914);
        border-radius: 5px;
        color: white;
        font-size: 18px;
        text-decoration: none;
        font-weight: bold;
        transition: transform 0.3s ease-in-out, background 0.3s;
    }

    /* Subscription Plans */
    .plans {
        text-align: center;
        padding: 50px 20px;
    }

    .plan-cards {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .plan-card {
        background: #232323;
        padding: 20px;
        border-radius: 10px;
        text-align: center;
        width: 300px;
        transition: transform 0.3s;
    }

    .plan-card:hover {
        transform: scale(1.05);
    }

    .plan-card img {
        width: 100%;
        border-radius: 10px;
        margin-bottom: 15px;
    }

    .plan-card h3 {
        margin-bottom: 10px;
    }

    .plan-card ul {
        list-style: none;
        padding: 0;
    }

    .plan-card ul li {
        margin: 5px 0;
    }

    /* Features Section */
    .features {
        text-align: center;
        padding: 50px 20px;
    }

    .feature-items {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .feature {
        background: #232323;
        padding: 20px;
        border-radius: 10px;
        text-align: center;
        width: 250px;
    }

    .feature img {
        width: 80px;
        height: auto;
        margin-bottom: 10px;
    }


    /* Responsive Design */
    @media screen and (max-width: 768px) {
        .navbar {
            flex-direction: column;
            align-items: center;
        }

       

        .nav-links {
            display: none;
            flex-direction: column;
            gap: 10px;
            width: 100%;
            text-align: center;
        }

        .nav-links.active {
            display: flex;
        }

        .hero-content h1 {
            font-size: 2rem;
        }

        .plan-cards {
            flex-direction: column;
            align-items: center;
        }

        .plan-card {
            width: 90%;
        }
    }



/* Button Container to Align Side by Side */
.button-container {
display: flex;
justify-content: space-between; /* Ensures space between buttons */
align-items: center;
max-width: 600px; /* Adjust based on your layout */
margin: auto;
gap: 20px; /* Adds spacing between buttons */
}

.card-btn {
    background: #e50914;
    padding: 8px 15px; /* Adjust padding to make it look proper */
    border-radius: 5px;
    font-weight: bold;
    display: inline-block; /* Ensure it fits properly in nav */
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s ease-in-out;

}

/* Telegram Button */
.btn-telegram {
background-color: #0088cc;
}

.btn-telegram:hover {
background-color: #0077b5;
transform: scale(1.05);
}

/* Instagram Button */
.btn-instagram {
background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.btn-instagram:hover {
opacity: 0.9;
transform: scale(1.05);
}

/* Responsive - Stack buttons on small screens */
@media (max-width: 768px) {
.button-container {
    flex-direction: column;
    align-items: center;
}
.btn {
    width: 90%; /* Make buttons full-width */
}
}
.old-price {
    text-decoration: line-through;
    color: #ff4d4d;
    font-weight: bold;
}
.new-price {
    color: #00ff99;
    font-size: 1.2em;
    font-weight: bold;
}
.limited-time {
    background: #ffcc00;
    color: #000;
    padding: 5px 10px;
    font-size: 0.9em;
    font-weight: bold;
    border-radius: 5px;
}

.btn:hover {
    background: darkred;
}
.trust-badges {
    margin-top: 20px;
    text-align: center;
    font-weight: bold;
    color: #fff;
}


/* Responsive - Stack buttons on small screens */
@media (max-width: 768px) {
.col-md-6 {
    width: 100%;
}
}
