@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,500;1,600&display=swap');

.body-style{
    background-color: #000000;
}
.navbar-nav {
    color: #ffffff;
    margin: 0 auto; /* Center align the navigation links */
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar-nav a{
    color: #ffffff;
}

.navbar-nav a:hover{
    color: #332FFF;
}

.main-nav .navbar-toggler{
    background-color: #332FFF;}

.user_name {
    color: #ffffff;
    margin-right: 20px;
    margin-top: 16px;
}

.header {
    background-color: #000000;
    padding: 50px;
    text-align: center;
}

.header-content {
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.left-content {
    width: 50%;
    text-align: left;
}

.left-content h1 {
    margin-bottom: 20px;
}

.join-button {
    background-color: #332FFF;
    color: #fff;
    padding: 10px 20px;
    font-size: 18px;
    border: none;
    border-radius: 65px;
    cursor: pointer;
}

.right-content {
    width: 50%;
}

.right-content img {
    max-width: 100%;
    height: auto;
}

.main-text {
    color: #fff;
    font-family: "Josefin Sans", sans-serif;
    font-size: 90px;
    font-weight: 700;
    line-height: 100.8px;
    text-align: left;
}

.header-toptext {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 27.94px;
    text-align: left;
    color: #E87D0E;
}

.header-para {
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 35px;
    text-align: left;
}

body,
html {
    height: 100%;
    margin: 0;
    padding: 0;
}

.scroll-down {
    background-color: #000000;
    bottom: 30px;
    left: 50%;
    text-align: center;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mouse {
    width: 35px;
    height: 55px;
    border: 2px solid #ffffff;
    border-radius: 25px;
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.mouse .wheel {
    width: 5px;
    height: 5px;
    background-color: #ffffff;
    position: absolute;
    left: 50%;
    top: 10px;
    margin-left: -2.5px;
    border-radius: 50%;
    animation: wheel-animate 1s infinite;
}

@keyframes wheel-animate {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.logo-section {
    background-color: #15151C;
    padding: 30px 0;
}

.logo-container {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 15px;
}

.logo-wrapper {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.logo {
    flex: 1;
    text-align: center;
}

.logo img {
    max-width: 100%;
    height: auto;
}

.try-your-hands-on {
    padding: 50px 0;
}

.section-heading {
    font-size: 24px;
}

.view-all-games {
    text-decoration: none;
    color: #ffffff;
}

.view-all-games:hover {
    color: #332FFF;
}

.card {
    margin-top: 20px;
    position: relative;
}

.card-img-top {
    object-fit: cover;
}

.overlay {
    position: absolute;
    bottom: 0;
    padding: 25px;
    width: 100%;
    background-color:rgb(0 0 0 / 83%);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:hover .overlay {
    opacity: 1;
}

.card-text {
    margin-bottom: 10px;
}

.btn-primary {
    border-radius: 0%;
    background-color: #332FFF;
    border-color: #332FFF;
}

.btn-primary:hover {
    background-color: #332FFF;
    border-color: #332FFF;
}

.download-section {
    background-color: #000000;
    padding: 50px 0;
    text-align: center;
}

.image-content-section {
    padding: 50px 0;
}

.image-content-section img {
    max-width: 100%;
    height: auto;
}

.image-content-section h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.image-content-section h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.image-content-section ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.image-content-section ul li {
    margin-bottom: 10px;
}

.image-content-section ul li i {
    margin-right: 10px;
}

.store-links {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.store-links a {
    margin-right: 10px;
}

.point-list {
    list-style: none;
}

.point-list h4{
    color: #ffffff;
}

.point-list p{
    color: #ffffff;
}

.point-list li {
    margin-bottom: 20px;
}

.point-list li .point-info {
    display: flex;
    align-items: flex-start; /* Align items at the start of the flex container */
}

.point-list li .point-info img {
    width: 40px; /* Adjust size as needed */
    margin-right: 10px;
    align-self: flex-start; /* Align the image to the start of the flex container */
}



.testimonial-section {
    background-color: #000000;
    padding: 50px 0;
    text-align: center;
}

.testimonial-heading {
    color: #ffffff;
    margin-top: 10px;
    font-size: 24px;
    font-weight: bold;
}

.user-info img{
    width: 50px !important;
    height: auto;
}

.testimonial-cards {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-top: 30px;
}

.testimonial-card {
    border-style: solid;
    border-color: #ffffff;
    width: 97%;
    margin: 0 10px;
    background-color: #000000;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    text-align: left;
}
.user-info {
    color: #ffffff;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 15px;
}

.user-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.user-details {
    color: #ffffff;
    flex-grow: 1;
}

.user-details h4 {
    color: #ffffff;
    margin: 0;
    font-size: 18px;
    font-weight: bold;
}

.user-details p {
    margin: 0;
    font-size: 14px;
    color: #ffffff;
}

.rating {
    display: flex;
    align-items: center;
}

.star {
    color: #ffd700;
    /* gold color */
    font-size: 20px;
}

.rating-count {
    margin-left: 5px;
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.gradient-text {
    font-family: "Josefin Sans", sans-serif;
    font-size: 50px;
    font-weight: 700;
    line-height: 65.5px;
    background: linear-gradient(90deg, #332FFF, #19FB9B);
    /* Gradient colors */
    -webkit-background-clip: text;
    /* Apply the gradient as text color */
    -webkit-text-fill-color: transparent;
    /* Hide the original text */
    font-weight: bold;
}

.gradient-text-2 {
    font-family: "Josefin Sans", sans-serif;
    font-size: 50px;
    font-weight: 700;
    line-height: 45px;
    background: linear-gradient(90deg, #332FFF, #19FB9B);
    /* Gradient colors */
    -webkit-background-clip: text;
    /* Apply the gradient as text color */
    -webkit-text-fill-color: transparent;
    /* Hide the original text */
    font-weight: bold;
}

.store-buttons {
    display: flex;
    justify-content: center;
    /* Horizontally center the buttons */
    margin-top: 20px;
}

.store-buttons a {
    margin: 0 10px;
    /* Add margin between buttons */
}

.store-buttons img {
    width: 200px;
    height: auto;
}

.text-center {
    font-family: "Josefin Sans", sans-serif;
    font-size: 50px;
    font-weight: 700;
    line-height: 65.5px;
    background: linear-gradient(90deg, #332FFF, #19FB9B);
    /* Gradient colors */
    -webkit-background-clip: text;
    /* Apply the gradient as text color */
    -webkit-text-fill-color: transparent;
    /* Hide the original text */
    font-weight: bold;
}

.point-list li{
    color: #ffffff;
}

.latest-news-section {
    background-color: #000000;
    padding: 50px 0;
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h2 {
    margin-bottom: 30px;
    color: #fff;
}

.card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.news-card {
    text-align: left;
    background-color: #181A2A;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.news-card-head {
    color: #ffffff;
}

.news-card-description {
    color: #ffffff;
}

.news-card-description:hover {
    color: linear-gradient(90deg, #332FFF, #19FB9B);
}

.news-card-link {
    text-decoration:none
}

.news-card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}

.news-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.news-card p {
    color: #fff;
    font-size: 16px;
    margin-bottom: 15px;
}

.learn-more-button {
    display: inline-block;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    border: 1px solid #fff;
    border-radius: 50px;
    width: 150px;
    text-align: center;
}

.view-more {
    margin-top: 30px;
}

.view-more a {
    text-decoration: none;
    color: #ffffff;
}

.view-more i {
    margin-left: 5px;
}

@media (max-width: 768px) {
    .card-container {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .news-card {
        margin-bottom: 30px;
    }
}

.main-footer {
    background-color: #000000;
    padding: 20px 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-section {
    display: flex;
    align-items: center;
}

.footer-section h1 {
    color: #ffffff;
    margin: 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin-right: 20px;
}

.footer-links p {
    text-decoration:none
}

.footer-links li {
    display: inline;
    margin-right: 10px;
}

.footer-links li:last-child {
    margin-right: 0;
}

.social-media-icons {
    /* Add styles for social media icons */
}

hr {
    border: 0;
    border-top: 1px solid #ccc;
    margin: 20px 0;
}

.copyright-section {
    text-align: center;
}

.copyright-section p {
    color: #ffffff;
}

/* Media queries for responsive design */
@media only screen and (max-width: 992px) {
    .header-content {
        flex-direction: column;
    }

    .left-content,
    .right-content {
        width: 100%;
        padding: 0;
    }

 
}

@media only screen and (max-width: 768px) {
    .main-nav {
        padding: 10px 0;
    }

    .main-nav .navbar-brand {
        margin-right: auto;
    }

    .main-nav .navbar-nav {
        margin-left: auto;
    }

    .main-nav .navbar-collapse {
        padding: 0;
    }

    .main-nav .navbar-toggler {
        margin-right: 0;
    }

    .header-content {
        flex-direction: column;
    }

    .left-content,
    .right-content {
        width: 100%;
        padding: 0;
    }


    .testimonial-card {
        margin-bottom: 30px;
    }

    .testimonial-card:last-child {
        margin-bottom: 0;
    }

    .testimonial-navigation {
        text-align: center;
    }
    
    .testimonial-navigation button {
        background-color: transparent;
        border: none;
        color: #332FFF;
        font-size: 24px;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        cursor: pointer;
        transition: background-color 0.3s;
    }
    
    .testimonial-navigation button:hover {
        background-color: #332FFF;
        color: white;
    }

    .feature-section {
        padding: 50px 0;
    }
    
    .point-list {
        list-style-type: none;
        padding: 0;
    }
    
    .point-list li {
        margin-bottom: 10px;
    }
    
    .store-links {
        margin-top: 20px;
    }
    
    .store-links img {
        margin-right: 10px;
    }
    
    

@media only screen and (max-width: 576px) {
    .main-text {
        font-size: 28px;
    }

    .header-para {
        font-size: 14px;
    }

    .join-button {
        padding: 10px 20px;
        font-size: 14px;
    }

    .logo-wrapper {
        flex-wrap: wrap;
        justify-content: center;
    }

    .logo {
        flex: 0 0 33.33%;
        max-width: 33.33%;
        text-align: center;
    }

    .testimonial-card {
        margin-bottom: 20px;
    }

    .testimonial-card:last-child {
        margin-bottom: 0;
    }

    .latest-news-section {
        padding: 20px 0;
    }

    .card {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .footer-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .footer-social, .footer-menu {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-social li, .footer-menu li {
        margin: 0.5rem;
    }

    .footer-social li a, .footer-menu li a {
        text-decoration: none;
        color: #ffffff;
    }

    .footer-line {
        margin-top: 1rem;
        border-top: 1px solid #ddd;
        padding-top: 1rem;
    }

    .copy-right {
        margin: 0;
    }

    @media (max-width: 768px) {
        .footer-social, .footer-menu {
            justify-content: center !important;
        }
    }

    @media (max-width: 576px) {
        .footer-title {
            text-align: center;
        }
        .footer-social, .footer-menu {
            text-align: center;
        }
        .footer-social li, .footer-menu li {
            margin: 0.25rem;
        }
    }
}

@media screen and (max-width: 992px) {
    .left-content, .right-content {
        max-width: 100%;
    }

    .main-text {
        font-size: 30px;
    }
}

@media screen and (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }
}

@media only screen and (max-width: 400px) {
    .footer-content {
        padding: 0 20px;
    }
}

@media only screen and (max-width: 992px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 20px);
        max-width: calc(50% - 20px);
    }
}

@media only screen and (max-width: 576px) {
    .testimonial-card {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media screen and (max-width: 991px) {
    .user_name {
        display: block; /* Show user name on smaller screens */
    }
}

@media screen and (max-width: 767px) {
    .navbar-nav {
        flex-direction: column; /* Display nav links in a column on smaller screens */
        align-items: center;
        margin-right: 0;
    }

    .navbar-nav .nav-item {
        margin: 10px 0; /* Add spacing between nav links */
    }
}