 /* General Styling */
 body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #000;
    color: #fff;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #000;
}
.logo {
    font-size: 40px;
    font-weight: bold;
    color: #fff;
}
.nav-links {
    display: flex;
    gap: 20px;
    margin-left: 12%;
}
.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding: 5px 10px;
}
.download-btn {
    background: #333;
    padding: 10px 15px;
    color: #000;
    text-decoration: none;
    border-radius: 5px;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 20px;
    flex-wrap: wrap;
}
.hero-content {
    flex: 1;
    padding: 20px;
}
.hero-content p {
    font-size: 18px;
    line-height: 1.6;
}
.hero-img {
    flex: 1;
    max-width: 300px;
}

/* Privacy Policy */
#privacy {
    margin-bottom: 2rem;
    padding: 40px 20px;
    background: #333;
    color: #fff;
}
#privacy h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 20px;
}
.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.5;
}
.privacy-content p {
    margin-bottom: 20px;
}
.privacy-content ul {
    list-style-type: disc;
    padding-left: 20px;
}
.privacy-content ul li {
    margin-bottom: 10px;
}

/* Features Section */
.features {
    padding-top: 5%;
    padding-bottom: 5%;
}
.features h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 20px;
}
/* Feature Boxes */
.feature-box {
    display: flex;
    justify-content: space-around;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.box {
    background: #333;
    padding: 20px;
    margin: 10px;
    width: calc(33% - 40px);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    text-align: center;
}
.box h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}
.box p {
    font-size: 1rem;
    line-height: 1.5;
}

/* Feature Slider */
.feature-slider {
    display: flex;
    justify-content: center;
    overflow: hidden;
    width: 100%;
    position: relative;
    white-space: nowrap;
    margin-bottom: 40px;
}
.slider-container {
    display: flex;
    width: calc(300px * 10);
    animation: slide 20s linear infinite;
}
.feature-slider img {
    width: 300px;
    margin: 10px;
    flex-shrink: 0;
}
/* Smooth Infinite Scroll Animation */
@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-1500px); }
}

/* Find Our App Section */
.find-app {
    text-align: center;
    margin-top: 40px;
}
.find-app h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}
.find-app p {
    font-size: 1rem;
    margin-bottom: 20px;
}
.find-app a {
    display: inline-block;
    padding: 10px 20px;
    background: #777;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
}
.find-app a img {
    width: 20px;
    vertical-align: middle;
    margin-right: 10px;
}

/* Footer */
/* Ratings, Downloads & Reviews Container */
.ratings-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap; /* Prevent wrapping */
    gap: 20px;
}

/* Individual Rating & Download Boxes */
.rating-box, .review-box {
    background: #333;
    color: #000;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 200px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.5);
    flex-shrink: 0; /* Prevent shrinking */
}

/* Review Box */
.review-box {
    width: 100%;
    max-width: 500px; /* Adjust as needed */
    height: 150px;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

/* Ensure text inside rating-box and review-box are aligned properly */
.rating-box h2, .review-box p {
    margin: 0;
}

        /* Footer */

footer {
    padding: 40px 20px;
    background: #000;
    color: white;
}
/* Ratings & Reviews Heading */
.rating-review-section {
    text-align: center;
    margin-bottom: 30px;
}
.rating-review-section h2 {
    font-size: 2rem;
}
/* Ratings, Downloads & Reviews Container */
.ratings-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
/* Individual Rating & Download Boxes */
.rating-box {
    background: #333;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 200px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.5);
}
.rating-box h2 {
    font-size: 2rem;
}
.rating-box .stars {
    color: gold;
    margin: 5px 0;
}
/* Review Box */
.review-box {
    color: #fff;
    flex-grow: 1;
    height: 150px;
    background: #333;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
}
.review-slider {
    display: flex;
    width: 300%;
    animation: reviewSlide 15s infinite linear;
}
.review {
    min-width: 100%;
    font-size: 16px;
}
/* Review Slider Animation */
@keyframes reviewSlide {
    0% { transform: translateX(0); }
    33% { transform: translateX(-100%); }
    66% { transform: translateX(-200%); }
    100% { transform: translateX(0); }
}

/* Download Anywhere Section */
.download-anywhere {
    margin-top: 40px;
    text-align: center;
}
.download-anywhere h2 {
    font-size: 2rem;
}
.download-anywhere p {
    margin: 10px 0;
    font-size: 18px;
}
.download-btn {
    background: #777;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    margin-top: 10px;
    display: inline-block;
}
.download-btn img {
    width: 20px;
    vertical-align: middle;
    margin-right: 10px;
}

/* Contact Section */
.contact {
    margin-top: 30px;
    font-size: 16px;
    text-align: center;
}

            /* Media Queires */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
    }
    .hero {
        flex-direction: column;
        text-align: center;
    }
    .hero-img, .hero-content {
        width: 100%;
    }
    .feature-box .box {
        width: 80%;
    }
    .ratings-container {
        flex-direction: column;
        align-items: center;
    }
}
.nav-links a:hover, .download-btn:hover, .find-app a:hover {
    background-color: #fff;
    color: #000;
    transition: all 0.3s ease;
}