﻿@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
}
body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins';
    background-color: #000;
    color: white;

}

.main-container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(7deg, rgba(0, 0, 0, 0.8500) 10.00%, rgba(0, 0, 0, 0.8465) 17.25%, rgba(0, 0, 0, 0.8361) 24.50%, rgba(0, 0, 0, 0.8187) 31.75%, rgba(0, 0, 0, 0.7944) 39.00%, rgba(0, 0, 0, 0.7632) 46.25%, rgba(0, 0, 0, 0.7250) 53.50%, rgba(0, 0, 0, 0.6868) 60.75%, rgba(0, 0, 0, 0.6556) 68.00%, rgba(0, 0, 0, 0.6312) 75.25%, rgba(0, 0, 0, 0.6139) 82.50%, rgba(0, 0, 0, 0.6035) 89.75%, rgba(0, 0, 0, 0.6000) 97.00%), url("/Images/bg-image.jpg");
    background-size: cover;
    background-position: center;
}

header {
    position: relative;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    padding-top: 0px;
}

.logo {
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .logo img {
        max-width: 150px;
        height: auto;
    }

.sign-in-btn {
    background-color: #e6b800;
    color: black;
    padding: 7px 17px;
    border-radius: 3px;
    font-size: 1rem;
    font-weight: 400;
    text-decoration: none;
    cursor: pointer;
}

    .sign-in-btn:hover {
        background-color: #ffc107;
    }



.content {
    text-align: center;
    padding: 75px 0;
    max-width: 950px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

    .content h1 {
        font-size: 3.5rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
    }

    .content h2 {
        font-size: 1.25rem;
        font-weight: 500;
        margin-bottom: 2rem;
    }

    .content p {
        color: rgb(255, 255, 255);
        font-size: 1rem;
        font-weight: 400;
        line-height: 1.5;
        margin-bottom:10px;
    }

.email-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-container {
    display: flex;
    justify-content: center;
    width: 60%;
    gap: 15px;
}

.email-input {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    border: 1px solid #8c8c8c;
    border-radius: 2px;
    background: rgba(22, 22, 22, 0.7);
    color: white;
}

.get-started-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FFC107;
    color: black;
    font-size: 1.625rem;
    border: none;
    padding: 12px 26px;
    min-width: 183px;
    cursor: pointer;
    border-radius: 2px;
    text-decoration: none;
}

    .get-started-btn:hover {
        background-color: #ffc107 !important;
    }

    .get-started-btn span {
        margin-right: 8px;
    }
/*Trending section*/
.trending-container {
    position: relative;
    width: 100%;
    padding: 20px 0;
    overflow: hidden;
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.top-border {
    position: relative;
    width: 100%;
    height: 100px; /* Adjust height for curve size */
    background: radial-gradient(ellipse at center, #0c0c1c 0%, #000 80%);
    border-bottom-left-radius: 50% 100%;
    border-bottom-right-radius: 50% 100%;
    overflow: hidden;
    z-index: 1;
}

    .top-border::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px; /* Thickness of the glowing top line */
        background: linear-gradient(to right, transparent, #FFD700, transparent); /* You can replace #FFD700 */
        box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
        z-index: 2;
    }


.trending-title {
    font-size: 24px;
    font-weight: bold;
    margin: 20px 4%;
}

.carousel-container {
    position: relative;
}

.trending-row {
    display: flex;
    overflow-x: auto;
    gap: 25px;
    padding: 0 4%;
    scrollbar-width: none; /* Firefox */
    scroll-behavior: smooth;
}

    .trending-row::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }

.trending-item {
    position: relative;
    min-width: 200px;
    height: 235px;
    margin-right: 10px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

    .trending-item:hover {
        transform: scale(1.05);
    }

    .trending-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px;
    }

.innner-trending-container {
    max-width: 85%;
}

.trending-number {
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: 80px;
    font-weight: bold;
    color: rgb(65, 65, 65);
    -webkit-text-stroke: 0.25rem rgb(255, 255, 255);
    text-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.tzama-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 20px;
    height: 20px;
    background-color: #FFD700;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 14px;
    color: #000000;
}

.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.7);
    border: 2px solid #FFD700;
    color: #FFD700;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
}

    .nav-button:hover {
        background-color: rgba(255, 215, 0, 0.2);
    }

.prev-button {
    left: 20px;
}

.next-button {
    right: 20px;
}


/*why join us section*/
.join-section {
    background-color: #000;
    color: white;
    padding: 2rem;
    font-family: 'Segoe UI', sans-serif;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding-left: 160px;
}

    .join-section h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

.join-cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.join-card {
    flex: 1 1 250px;
    background: linear-gradient(145deg, #20101D, #1A1F41);
    border-radius: 16px;
    padding: 0.5rem 1.5rem 0 1.5rem;
    width: 100%;
    max-width: 20%;
    position: relative;
    transition: transform 0.3s;
}


    .join-card h3 {
        font-size: 24px;
        font-weight: 500;
        margin-bottom: 0.8rem;
    }

    .join-card p {
        color: #ccc;
        font-size: 16px;
        font-weight: 500;
    }

    .join-card svg {
        width: 100px;
    }

.svg-icon {
    display: flex;
    justify-content: end;
    align-items: end;
}
/*FAQs Section*/
.faq-section {
    width: 100%;
    max-width: 79%;
    margin: 50px auto;
    padding: 0 20px;
}

    .faq-section h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }

.faq-item {
    background-color: #2d2d2d;
    margin-bottom: 10px;
    cursor: pointer;
    padding: 20px;
    position: relative;
    font-size: 20px;
    font-weight:500;
    transition: background-color 0.3s;
}

    .faq-item:hover {
        background-color: #3a3a3a;
    }

    .faq-item::after {
        content: "+";
        position: absolute;
        right: 20px;
        font-size: 30px;
        font-weight:400;
        transition: transform 0.3s;
    }

    .faq-item.open::after {
        transform: rotate(45deg);
    }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background-color: #1a1a1a;
    padding: 0 20px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    font-size: 20px;
    line-height:30px;
}

.faq-item.open + .faq-answer {
    max-height: 200px;
    padding: 20px;
}
.footer-email-section p {
    color: rgb(255, 255, 255);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    text-align:center;
    margin-bottom:10px;
}
.footer-email-section{
    margin-bottom:20px;
}
/*Footer Section*/
.footer {
  width:100%;
  max-width:77%;
    margin: 40px auto;
    padding: 0 20px;
}

    .footer a {
        color: #999;
        text-decoration: underline;
        font-size: 14px;
    }

    .footer .footer-top {
        margin-bottom: 20px;
    }

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px 30px;
    margin-bottom: 30px;
}

.footer .lang-select {
    background-color: transparent;
    color: #999;
    border: 1px solid #333;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 14px;
}
 .footer-bottom {
    font-size: 13px;
    margin-top: 20px;
}
.footer-bottom p{
    margin-top:10px;
}
@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    .footer a {
        font-size: 13px;
    }
    .footer .lang-select {
        width: 100%;
        margin-top: 10px;
    }
}
@media (max-width: 768px) {
    .main-container {
        position: relative;
        min-height: auto;
        width: 100%;
        background: linear-gradient(7deg, rgba(0, 0, 0, 0.8500) 10.00%, rgba(0, 0, 0, 0.8465) 17.25%, rgba(0, 0, 0, 0.8361) 24.50%, rgba(0, 0, 0, 0.8187) 31.75%, rgba(0, 0, 0, 0.7944) 39.00%, rgba(0, 0, 0, 0.7632) 46.25%, rgba(0, 0, 0, 0.7250) 53.50%, rgba(0, 0, 0, 0.6868) 60.75%, rgba(0, 0, 0, 0.6556) 68.00%, rgba(0, 0, 0, 0.6312) 75.25%, rgba(0, 0, 0, 0.6139) 82.50%, rgba(0, 0, 0, 0.6035) 89.75%, rgba(0, 0, 0, 0.6000) 97.00%), url(/Images/bg-image.jpg);
        background-size: cover;
        background-position: center;
    }

    .navbar {
        flex-direction: row;
        padding: 15px 20px;
    }

    .logo img {
        max-width: 120px;
    }

    .sign-in-btn {
        margin-top: 10px;
        font-size: 0.9rem;
        padding: 6px 14px;
    }

    .content {
        padding: 50px 20px;
    }

        .content h1 {
            font-size: 2rem;
        }

        .content h2 {
            font-size: 1rem;
        }

        .content p {
            font-size: 0.9rem;
        }

    .form-container {
        flex-direction: column;
        width: 90%;
        gap: 10px;
    }

    .email-input {
        padding: 12px;
        font-size: 14px;
        width: 100%;
        max-width: 93%
    }

    .get-started-btn {
        font-size: 1.2rem;
        padding: 10px 20px;
    }

    .trending-title {
        font-size: 20px;
        margin: 20px 20px 10px;
    }

    .trending-row {
        gap: 15px;
        padding: 0 10px;
    }

    .trending-item {
        min-width: 160px;
        height: 200px;
    }

    .trending-number {
        font-size: 60px;
        -webkit-text-stroke: 0.2rem white;
    }

    .nav-button {
        width: 30px;
        height: 30px;
    }

    .top-border {
        height: 60px;
    }

    .join-section {
        padding: 2rem 20px;
    }

        .join-section h2 {
            font-size: 1.5rem;
            text-align: center;
        }

    .join-cards-container {
        flex-direction: column;
        align-items: center;
    }

    .join-card {
        max-width: 90%;
        flex:1;
}
        .join-card h3 {
            font-size: 20px;
        }

        .join-card p {
            font-size: 16px;
        }

    .svg-icon {
        justify-content: end;
    }
    .faq-section {
        padding: 0 10px;
    }

    .faq-item {
        font-size: 18px;
        padding: 15px;
    }

        .faq-item::after {
            font-size: 24px;
            right: 15px;
        }

    .faq-answer {
        font-size: 15px;
        padding: 0 15px;
    }

    .faq-item.open + .faq-answer {
        padding: 15px;
    }

    .faq-section h2 {
        font-size: 20px;
        text-align: center;
    }
    .footer-email-section p{
        font-size:0.9rem;
    }
}
