body {
    margin: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: black;
    color: white;
}

.section-1{
    height: 100vh;
    width: 100%;
    position: relative;
    
}

.bg-img {
    height: 100vh;
    width: 100%;
    object-fit: cover;

}

section {
    margin-bottom: 20px;
}

.tint {
    background-color: rgba(0, 0, 0, 0.432);
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.8) 100%);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    position: absolute;
}

.header {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 80%;
    justify-content: space-between;
    position: absolute;
    top:6%;
    left:50%;
    transform: translate(-50%, -50%);
}

.content {
    position: absolute;
    color: white;
    top: 50%;
    left:50%;
    transform: translate(-50%, -50%);
    width: 588px;
}

.logo {
    width: 148px;
    height: 38px;
}

.btn-group{
    display: flex;
    gap: 10px;
}

.lng-btn {
    background: transparent;
    border: 1px solid lightgray;
    border-radius: 4px;
    padding: 4px 26px;
    color: white;
    font-size: 16px;
}

.signin-btn {
    border: none;
    background-color: red;
    border-radius: 4px;
    padding: 4px 16px;
    color: white;
    font-size: 14px;
    font-weight: 600;
}

.heading-sect {
    margin-bottom: 32px;
}

.heading {
    font-size: 55px;
    text-align: center;
    font-weight: 900;
    margin-bottom: 10px;
}

.subheading{
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    margin-top: 0;
}

.mail-section {
    width: 100%;
    margin-bottom: 64px;
}

.mail-text {
    font-size: 16px;
    text-align: center;
    font-weight: 400;
    color: white;
    margin: 0;
}

.input-section {
    display: flex;
    gap: 10px;
    width: 100%;
    justify-content: center;
    margin-top: 16px;
}

.email {
    width: 320px;
    padding: 16px 8px;
    border: 1px solid lightgray;
    border-radius: 6px;
    font-size: 14px;
    background: transparent;
    color: white;
    font-weight: 500;
}
.email:focus {
    outline: none;
    border: 2px solid white;
}
.get-started {
    display: flex;
    align-items: center;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 22px;
    font-weight: 600;
    background-color: red;
    color: white;
}

.section-2 , .section-3, .section-4, .section-5{
    padding: 0 148px;
}

.section-heading {
    color: white;
    font-size: 24px;

}
.trending-cards {
    overflow: scroll;
    display: flex;
    gap:40px;
}

.trending-cards::-webkit-scrollbar{
    display: none;
}

.card{
    position: relative;
}

.card:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease-in-out;
}

.card-img {
    border: none;
    border-radius: 8px;
}
.number{
    position: absolute;
    bottom: 0;
    left:-22px;
    font-size: 100px;
    font-weight: 700;
    color: black;
    -webkit-text-stroke: 2px white;
    text-shadow: 0 0 24px rgba(0, 0, 0, 0.5);
    
}

.reason-card-group {
    display: flex;
    flex-wrap: wrap;
    gap:16px;
    overflow: hidden;
    box-sizing: border-box;
}

.reason-card {
    flex: 1;
    height: 250px;
    position: relative;
    border:none;
    border-radius: 12px;
    background: linear-gradient(149deg, #192247 0%, #210e17 96.86%);
    padding: 18px;
}

.card-heading {
    margin: 0;
    font-size: 24px;
    font-weight: 500;
    color: white;
}

.card-subheading {
    font-size: 16px;
    font-weight: 400;
    color: lightgray;
}

.svg {
    position: absolute;
    bottom: 12px;
    right:12px;
}

.question-list {
    display: flex;
    flex-direction: column;
    gap:5px;
}

.question {
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background-color: rgb(39, 38, 38);
}

.qsn-ttl {
    font-size: 24px;
    font-weight: 500;
    margin: 0;
}

.mb {
    margin-bottom: 16px;
}



.copyright {
    font-size: 12px;
    color: gray;
    margin-top: 20px;
}

.icon{
    padding-top: 5px;
}

/* Tablet */
@media (max-width:1024px) {
    .header {
        width: 100%;
        max-width: 90%;
    }

    .heading-sect {
        margin-bottom: 24px;
    }

    .heading {
        font-size: 36px;
        font-weight: 700;
    }

    .get-started{
        padding:0 18px;
        font-size: 18px;
    }

    .email {
        font-size: 16px;
    }

    .subheading{
        font-size: 16px;
    }

    .mail-text{
        font-size: 16px;
    }

    .section-2 , .section-3, .section-4, .section-5{
        padding: 0 24px;
    }

     .card-heading {
        font-size: 20px;
    }

    .qsn-ttl {
        font-size: 18px;
    }

    .mail-section {
        margin-bottom: 0;
    }

    .reason-card {
        flex: auto;
        height: 150px;
    }

}

/* Mobile */
@media (max-width:600px) {
    .content
    {
        width: 100%;
    }
    .heading-sect {
        margin-bottom: 16px;
    }

    .heading {
        font-size: 32px;
        font-weight: 700;
    }

     .get-started{
        padding:8px 18px;
        font-size: 18px;
    }

    .email {
        font-size: 16px;
    }

    .subheading{
        font-size: 16px;
    }

    .mail-text{
        font-size: 16px;
    }

    .section-2 , .section-3 , .section-4, .section-5{
        padding: 0 20px;
    }

    .card-heading {
        font-size: 20px;
    }

    .mb{
        text-align: start;
      
    }
    .input-section{
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    .footer-input-section{
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: start;
    }
    .qsn-ttl{
        font-size: 16px;
    }

    .mail-section {
        margin-bottom: 0;
    }

    .reason-card {
        flex: auto;
        height: 150px;
    }

}