* {
    margin: 0;
    padding: 0;
}
html,body{
        width: 100%;
        height: 100%;
        overflow-x: hidden;
    }

.main {
    background-image: url(images/bg.jpg);
    height: 80vh;
    background-position: center center;
    position: relative;
    width: 100vw;
}

.main .box {
    height: 80vh;
    width: 100%;
    opacity: 0.74;
    background-color: black;
    top: 0;
    position: absolute;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 80vw;
    margin: auto;
    height: 60px;
}


nav img {
    width: 116px;
    position: relative;
    z-index: 10;
    cursor: pointer;
}

nav button {
    position: relative;
    z-index: 10;
    background: red;
    border: none;
    color: white;
    font-weight: 600;
    width: 70px;
    height: 30px;
    border-radius: 3px;
    cursor: pointer;

}

.secound {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: white;
    position: relative;
    z-index: 10;
    height: calc(100% - 60px);
    font-family: sans-serif;
    gap: 14px;
    font-size: 43px;
    font-weight: 700;
}

.secound .small {
    font-size: 14px;
    font-family: sans-serif;
}

.secound .btn button {
    height: 51px;
    width: 144px;
    background: red;
    border: none;
    border-radius: 5px;
    color: white;
    font-weight: 700;
    font-size: 19px;
    cursor: pointer;
}

.third button {
    height: 51px;
    width: 165px;
    background: red;
    border: none;
    border-radius: 5px;
    color: white;
    font-weight: 700;
    font-size: 19px;
    cursor: pointer;

}

.line {
    height: 5px;
    background-color: gray;
}

body {
    background-color: #000;
    color: white;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.title {
    margin-left: 40px;
    margin-top: 20px;
}

.container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 40px;
    margin-left: 65px;
}

.card {
    position: relative;
    min-width: 200px;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s ease;
    cursor: pointer;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card:hover {
    transform: scale(1.1);
}

.number {
    position: absolute;
    bottom: 10px;
    left: 10px;
    font-size: 100px;
    font-weight: bold;
    color: rgba(1, 0, 0, 0.986);
    -webkit-text-stroke: 2px rgb(240, 232, 232);
}

/* Scrollbar Hide */
.container::-webkit-scrollbar {
    display: none;
}

.secound .email input {
    border-radius: 3px;
    background: black;
    opacity: 0.7;
    height: 50px;
    width: 289px;
    padding: 0px 7px;
    position: relative;
    z-index: 10;
    color: white;
    font-weight: bold;
    font-size: 14px;
}

.third .email input {
   border-radius: 3px;
    background: black;
    opacity: 0.7;
    height: 54px;
    width: 574px;
    padding: 0px 7px;
    position: relative;
    z-index: 10;
    color: white;
    font-weight: bold;
    font-size: 14px;
    margin-left: 320px;
}
.third .small{
    margin-left: 406px;
    margin-bottom: 28px;
    font-size: 17px;
    margin-top: 61px;
}
.reasons-title {
    margin-top: 60px;
    margin-bottom: 30px;
    margin-left: 40px;
}

.reasons-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-left: 40px;
}

.reasons-card {
    background: linear-gradient(135deg, #1d127e, #310638);
    padding: 25px;
    border-radius: 20px;
    width: 250px;
    min-height: 175px;
    position: relative;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    gap: 27px;
}

.reasons-card:hover {
    transform: translateY(-10px);
}

.faqbox {
    background: rgb(45, 45, 45, 1);
    padding: 20px;
    margin-bottom: 20px;
    width: 65vw;
    margin-left: 130px;
    font-size: 20px;
}

.faq {
    margin-left: 40px;
}

.faq h1 {

    margin-top: 65px;
    margin-bottom: 19px;
    margin-left: 130px;
}

footer {
    color: white;
    max-width: 60vw;
    margin: auto;
    padding: 44px 0px;
}

footer .question {
        padding: 58px 0px; 
    margin-top: 43px;
}

.footer {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    color: white;

}

.footer-item {
    display: flex;
    flex-direction: column;
    gap: 23px;
    font-size: 14px;
}

.footer a {
    color: white;
}
/* Universal Fix */
* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}

/* Container Responsive */
.container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Reasons Section */
.reasons-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.reasons-card {
    width: 250px;
}

/* Footer */
.footer {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

/* ========================= */
/* 📱 MOBILE RESPONSIVE PART */
/* ========================= */

@media screen and (max-width: 768px) {

    nav {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    

    .secound span {
        display: block;
        text-align: center;
        padding: 0 15px;
    }

    .email {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .email input {
        width: 90%;
        padding: 10px;
    }

    .email button {
        width: 90%;
        padding: 10px;
    }

    .container {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 90%;
    }

    .reasons-container {
        flex-direction: column;
        align-items: center;
    }

    .reasons-card {
        width: 90%;
        text-align: center;
    }

    .faqbox {
        width: 90%;
        margin: auto;
    }

    .footer {
        flex-direction: column;
        text-align: center;
    }

    .footer-item {
        margin-bottom: 20px;
    }

    h1 {
        font-size: 22px;
        text-align: center;
    }

    .small {
        text-align: center;
    }
}
