@import url('https://fonts.googleapis.com/css2?family=Akt:wght@100..900&family=Caveat:wght@400..700&family=Fjalla+One&display=swap');


* {
    padding: 0;
    margin: 0;
}

.main {
    background-image: url(assets/images/image.png);
    height: 100vh;
    position: relative;
    background-position: center center;
    background-size: max(1200px, 100vw);
    background-repeat: no-repeat;
}

.main .box {
    height: 100vh;
    width: 100%;
    opacity: 0.70;
    position: absolute;
    top: 0;
    background-color: black;

}

nav {
    max-width: 60vw;
    margin: auto;
    justify-content: space-between;
    display: flex;
    align-items: center;
    height: 62px;
    position: relative;
    z-index: 10;
}

nav div {
    position: relative;
    left: 20px;
    top: 8px;
}

nav img {
    width: 150px;
    position: relative;
    z-index: 10;
    left: -30px;
    top: 15px;
}

.hero {
    height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
    position: relative;
    z-index: 10;

    font-family: "Caveat", cursive;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    gap: 23px;
    padding: 0, 30px;
}

.hero> :first-child {
    font-weight: 900;
    font-size: 4.5rem;
    text-align: center;
}


.hero> :nth-child(2) {
    font-family: unset;
    font-size: 2rem;
    font-weight: 500;
    text-align: center;
}

.hero> :nth-child(3) {
    font-size: 1.5rem;
    font-weight: 500;
    text-align: center;
}

body {
    background-color: black;
}

.separation {
    height: 11px;
    background-color: rgb(31, 30, 30);
    width: 100%;
}

.btn {
    padding: 7px 14px;
    font-weight: bold;
    background-color: white;
    background-color: rgba(255, 255, 255, 0.199);
    color: aliceblue;
    border-radius: 3px;
    cursor: pointer;

}

.btn-red {
    background-color: rgb(219, 1, 1);
    color: aliceblue;
    padding: 14px 31px;
    font-size: 20px;
    border-radius: 10px;
}

.btn-red-sm {
    background-color: red;
    color: aliceblue;
}

.main input {
    padding: 21px 277px 13px 6px;
    font-size: 18px;
    font-weight: 900;
    border-radius: 5px;
    background-color: rgba(23, 23, 23, 0.5);
    border: 1px solid rgba(255, 235, 235, 0.5);
    color: aliceblue;
}




.hero-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;

}

.first {
    display: flex;
    justify-content: center;
    max-width: 70vw;
    margin: auto;
    color: white;
    align-items: center;
    position: relative;
    
}



@media screen and (max-width:1322px) {
    .first {
        flex-wrap: wrap;
    }
}



.secImg {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-height: 400px;
    overflow: hidden;
  
}

.secImg img {
    width: 100%;
    max-width: 586px;
    height: auto;
    object-fit: contain;
    display: block;
    position: relative;
    z-index: 10;
}


.secImg video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* ← Center the video */
    max-width: 85%;
    max-height: 85%;
    height: auto;
    width: auto;
    object-fit: contain;
    z-index: 5;
}

section.first>div {
    display: flex;
    flex-direction: column;
    padding: 34px 0;
}

.first>div> :first-child {
    font-size: 48px;
    font-weight: bolder;
}

.first>div> :nth-child(2) {
    font-size: 24px;
    font-weight: 400;
}

.faq h2 {
    text-align: center;
    font-size: 48px;
}


.faq {
    background: black;
    color: white;
    padding: 34px;
}

.faqbox:hover {

    background-color: rgb(70, 66, 66);
}

.faqbox {
    transition: all;
    display: flex;
    justify-content: space-between;
    background-color: #272626;
    padding: 24px;
    max-width: 60vw;
    margin: 8px auto;
    cursor: pointer;

    font-size: 24px;
    font-weight: bolder;
}


footer {
    color: white;
    margin: auto;
    max-width: 60vw;
    padding: 34px;
}




.footer {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    color: white;
}

.footer a {
    font-size: 14px;
    color: white;
}

.footer-item {
    display: flex;
    flex-direction: column;
    gap: 23px;
}




















@media screen and (max-width: 768px) {
    .first {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 30px 15px;
    }

    .first.second {
        direction: ltr;
        grid-template-columns: 1fr;
    }

    .first.second>div {
        order: 2;
    }

    .first.second .secImg {
        order: 1;
    }

    .first.third {
        grid-template-columns: 1fr;
    }


    .secImg {
        max-height: 300px;
    }

    .secImg img {
        max-width: 534px;
    }

    .secImg video {
        max-width: 75%;
        max-height: 75%;
    }

    .hero {
        gap: 16px;
        padding: 30px 15px;
        min-height: auto;
    }

    .hero> :first-child {
        font-size: clamp(1.5rem, 7vw, 2.5rem);
    }

    .hero-button {
        max-width: 100%;
        flex-direction: column;
    }

    .main input {
        padding: 12px 14px;
        font-size: 16px;
    }

    .btn-red {
        padding: 12px 20px;
        font-size: 16px;
    }

    .faqbox {
        padding: 16px;
        font-size: 1rem;
        flex-wrap: wrap;
    }

    .footer {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    nav {
        padding: 12px 15px;
    }

    nav img {
        width: 100px;
        
    }

    nav div {
        gap: 8px;
    }

    .btn {
        padding: 6px 12px;
        font-size: 12px;
    }

    .faq h2 {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: 25px;
    }
}



@media screen and (max-width: 480px) {
    .main {
        height: 100vh;
    }

    .main .box {
        opacity: 0.75;
    }

    nav {
        flex-direction: column;
        gap: 20px;
        padding: 12px 10px;
    }

    nav div {
        gap: 6px;
    }

    nav img {
        width: 185px;
        margin-bottom: 8px;
        position: relative;
        left: 13px;
    }

    .btn {
        padding: 6px 10px;
        font-size: 12px;
    }

    .btn-red-sm {
        padding: 6px 12px;
    }

    .hero {
        gap: 12px;
        padding: 0px 0px;
        min-height: auto;
    }

    .hero> :first-child {
        font-size: clamp(1.25rem, 6vw, 2rem);
        line-height: 1.1;
    }

    .hero> :nth-child(2) {
        font-size: clamp(0.95rem, 3.5vw, 1.3rem);
    }

    .hero> :nth-child(3) {
        font-size: clamp(0.85rem, 2.5vw, 1rem);
    }

    .hero-button {
        gap: 10px;
        margin-top: 15px;
    }

    .main input {
        padding: 10px 12px;
        font-size: 14px;
    }

    .btn-red {
        padding: 10px 16px;
        font-size: 14px;
    }

    .first {
        padding: 25px 12px;
        gap: 15px;
    }

    .first>div> :first-child {
        font-size: clamp(1.25rem, 4vw, 1.75rem);
    }

    .first>div> :nth-child(2) {
        font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    }

    .secImg {
        max-height: 250px;
    }

    .secImg img {
        max-width: 277px;
    }

    .secImg video {
        max-width: 70%;
        max-height: 70%;
    }

    .faq {
        padding: 25px 12px;
    }

    .faq h2 {
        font-size: clamp(1.25rem, 4vw, 1.75rem);
        margin-bottom: 20px;
    }

    .faqbox {
        padding: 14px;
        font-size: clamp(0.9rem, 2.5vw, 1rem);
        margin: 8px auto;
    }

    .faqbox svg {
        min-width: 20px;
        width: 20px;
        height: 20px;
    }

    footer {
        padding: 25px 12px;
    }

    .footer {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-item a {
        font-size: clamp(0.8rem, 2vw, 0.9rem);
    }
}



@media screen and (max-width: 360px) {
    nav {
        padding: 10px 8px;
    }

    nav img {
        width: 80px;
    }

    .hero {
        padding: 20px 10px;
        gap: 10px;
    }

    .first {
        padding: 20px 10px;
        gap: 12px;
    }

    .faq {
        padding: 20px 10px;
    }

    .faqbox {
        padding: 12px;
        font-size: 0.9rem;
        margin: 8px auto;
    }

    footer {
        padding: 20px 10px;
    }

    .secImg {
        max-height: 200px;
    }

    .secImg img {
        max-width: 150px;
    }
}



@media screen and (min-width: 1920px) {
    .first {
        gap: 60px;
        padding: 60px 40px;
    }

    .hero {
        gap: 30px;
        padding: 60px 40px;
    }

    .faqbox {
        max-width: 900px;
    }

    footer {
        padding: 60px 40px;
    }
}


.fo{
    color: aliceblue;
    color: aliceblue;
    position: relative;
    padding: 27px 290px;
}