@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton+SC&display=swap');
@font-face {
    font-family: "American";
    src: url(/assets/AmericanCaptain.otf) format('opentype');
}

:root {
    /* --light: #fcfcfc;
    --bg-color: #d3d3d3;
    --sec-color: #c1c2c2;
    --thd-color: #000;
    --fth-color: #09090970;
    --text-color: #090909; */
    
    --text-color: #fcfcfc;
    --text-low: #fcfcfcc2;
    --light: #ffffff;
    --fth-color: #c1c2c2;
    --thd-color: #000;
    --sec-color: #09090970;
    --bg-color: #090909;
    
    --bigger: 12rem;
    --Heading: 5rem;
    --Subheading: 4rem;
    --Desc: 1.2rem;
    --Title: 1rem;
    --SubTitle: 0.85rem;
}

* {
    transition: .3s ease-in-out;
    user-select: none;
    font-weight: 400;
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    display: none;
    scroll-behavior: smooth;
}

html,
body {
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: "poppins" , sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* align-items: center; */
    background: var(--text-color);
    color: var(--bg-color);
    text-align: center;
}

a {
    text-decoration: none;
    color: var(--bg-color);
}

#hero{
    display: flex;
    width: 100%;
    height: fit-content;
    justify-content: center;
    flex-direction: column;
    /* background: red; */
}
#hero h1{
    align-self: flex-start;
    margin-left: 60px;
    font-size: var(--bigger);
    font-family: 'american' , sans-serif;
    /* background: rebeccapurple; */
    margin-bottom: 0;


}
.formctn{
    display: flex;
    flex-direction: row;
    width: 90%;
    align-self: center;
    justify-self: center;
    justify-content: space-between;
    /* background: #000; */
}
.form{
    display: flex;
    width: 40%;
    /* background: #000; */
}
#form{
    width: 100%;
    display: flex;
    flex-direction: column;
}
#form input{
    margin-top: 5px;
    margin-bottom: 15px;
    font-size: var(--SubTitle);
    font-weight: 600;
    font-family: "poppins", sans-serif;
    padding: 15px;
    padding-inline: 20px;
    border-radius: 46px;
    border: 2px solid var(--bg-color);
}
#form textarea{
    display: flex;
    text-align: left;
    height: 300px;
    resize: none;
    border-radius: 25px;
    border: 2px solid var(--bg-color);
    margin-top: 5px;
    padding: 10px;
    padding-left: 20px;
    font-size: var(--SubTitle);
    font-weight: 600;
    font-family: "poppins", sans-serif;
    width: 100%;
}
.formpic{
    width: 50%;
    height: 100%;
    background: url(/assets/contact.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 46px;
    border: 2px solid var(--bg-color);
}
.btnctn{
    width: 90%;
    margin-inline: 60px;
    /* background: #000; */
    display: flex;
    align-self: center;
}
.submit{
    margin-top: 10px;
    margin-bottom: 5px;
    /* margin-left: 60px; */
    font-size: var(--Desc);
    font-weight: 600;
    font-family: "poppins", sans-serif;
    padding: 8px;
    padding-inline: 20px;
    border-radius: 46px;
    border: none;
    width: fit-content;
    align-self: left;
    cursor: pointer;
    background: var(--bg-color);
    color: var(--text-color);
}
.hr{
    width: 100%;
    height: 10px;
    background: var(--bg-color);
    border-radius: 46px;
    margin-left: 50px;
    align-self: flex-end;
    transform: translateY(-10px);
}
#social{
    display: flex;
    flex-direction: row;
    width: 100%;
    height: fit-content;
    margin: 100px;
    /* background: #000; */
    align-self: center;
    justify-content: space-around;
}
.icon{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.icon span{
    font-family: 'poppins', sans-serif;
    font-weight: 700;
    margin-top: 5px;
    margin-bottom: 5px;
}
.icon p{
    font-size: 0.8rem;
    font-weight: 400;
    margin: 0;
    cursor: pointer;
    animation: .2s ease-in-out;
}
.icon p:hover{
    font-weight: 500;
}

.FAQsection {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: fit-content;
    align-items: center;
    margin-bottom: 100px;
}

.faq-container {
    max-width: 90%;
    margin: 0 auto;
    /* background: #000; */
}

.faq-title{
    text-align: center;
    font-size: var(--Heading);
    font-family: "american", sans-serif;
    font-weight: 800;
    color: var(--bg-color);
    letter-spacing: 2px;
}

.faq-item {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--bg-color);
}

.faq-question {
    background: #fff;
    border: none;
    width: 100%;
    text-align: left;
    padding: 18px 20px;
    font-size: var(--Title);
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #222;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f0f0f0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #fafafa;
    transition: all 0.4s ease;
    padding: 0 20px;
    line-height: 1.6;
    color: #555;
    text-align: left;
    font-size: var(--SubTitle);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 15px 20px;
}

.faq-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

footer{
    background: var(--bg-color);
    width: 94%;
    align-self: center;
    height: fit-content;
    margin-bottom: 20px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    align-items: center;
}
#footerTop{
    display: flex;
    flex-direction: row;
    width: 96%;
    align-items: top;
    height: fit-content;
    margin-top: 20px;
    /* padding-bottom: 100px; */
}

#footerLogo{
    background: url(/assets/LOGOBlack.svg);
    width: 30%;
    height: 100px;
    align-self: flex-start;
    background-size: contain;
    background-position: left;
    background-repeat: no-repeat;
    filter: invert();
    /* margin-top: 20px; */
    /* background: #000; */
}
#sitemap{
    color: var(--text-color);
    background: transparent;
    font-family: "american", sans-serif;
    font-size: var(--Desc);
    margin-left: 150px;
    padding-left: 50px;
    padding-bottom: 100px;
    border-left: 2px solid var(--text-color);
    height: max-content;
    display: flex;
    flex-direction: column;
    /* background: #000; */
}
#sitemap h1,
#Fproducts h1,
#Fcontact h1{
    margin: 0 !important;
    padding-top: 10px;
    padding-bottom: 20px;
    font-size: 1.7rem;
    letter-spacing: 2px;
}
#sitemap span,
#Fproducts span,
#Fcontact span{
    font-family: "poppins", sans-serif;
    font-size: 1rem;
    margin-top: 5px;
    cursor: pointer;
    padding: 0;
    text-transform: uppercase;
    /* background: #ffffff; */
}
#Fproducts,
#Fcontact{
    color: var(--text-color);
    background: transparent;
    font-family: "american", sans-serif;
    font-size: var(--Desc);
    margin-left: 150px;
    padding-left: 50px;
    /* border-left: 2px solid var(--text-color); */
    height: 90%;
    display: flex;
    flex-direction: column;
}
#Fcontact span{
    text-transform: none;
}

#footerBottom{
    display: flex;
    justify-content: center;
    text-align: center;
    color: var(--text-color);
    margin-top: 20px;
    padding: 20px;
    width: 94%;
    border-top: 2px solid var(--text-color);
}

.hover:hover{
    box-shadow: 0 0 8px 0 var(--bg-color);
}

/* ||||||||||||||||||||||||||||||||||||||| */
/* ||||||||||||||||||||||||||||||||||||||| */
/* ||||||||||||||||||||||||||||||||||||||| */
/* ||||||||||| RESPOSIVE STYLES |||||||||| */
/* ||||||||||||||||||||||||||||||||||||||| */
/* ||||||||||||||||||||||||||||||||||||||| */
/* ||||||||||||||||||||||||||||||||||||||| */

@media (max-width: 400px) {
    :root{
        --bigger: 5rem;
        --Heading: 3rem;
        --Subheading: 2rem;
        --Desc: 0.8rem;
        --Title: 1rem;
        --SubTitle: 0.85rem;
    }
    nav{
        position: absolute;
        width: 100%;
        height: fit-content;
        /* background: #000; */
        justify-content: center;
        display: flex;
        backdrop-filter: blur(10px);
        /* padding-bottom: 10px; */
        border-bottom: 2px solid var(--bg-color);
        border-radius: 0 0 20px 20px;
    }
    .navbar{
        display: none;
    }
    .logo-holder{
        width: 150px;
        transform: translateY(-5px);
    }
    #mobilenavctn{
        display: flex;
    }
    #hero{
        margin-top: 50px;
    }
    #hero h1{
        margin-left: 0;
        margin-bottom: 20px;
    }
    .formpic{
        display: none;
    }
    .form{
        width: 100%;
    }
    #social{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 8px;
        /* background: #000; */
    }
    .FAQsection{
        margin-top: -50px;
    }
    .faq-container{
        width: 90%;
    }
    footer{
        margin-bottom: 100px;
    }
    #footerTop { 
        flex-direction: column;
    }
    #footerLogo { 
        width: 100%; 
        height: 30vh; 
        background-position: center; 
    }
    #footerTop div{
        margin-bottom: 20px;
    }
    #footerTop h1{
        padding-bottom: 0;
    }
    #sitemap { 
        margin-left: 20px; 
        padding-left: 20px; 
        padding-bottom: 0; 
        border-left: none; 
    }
    #Fproducts, 
    #Fcontact { 
        margin-left: 20px; 
        padding-left: 20px; 
    }
    #footerBottom { 
        flex-direction: column; 
        gap: 6px; 
        font-size: 0.75rem; 
        text-align: center; 
    }
    
}

@media (min-width: 401px) and (max-width: 450px) {
    :root{
        --bigger: 5rem;
        --Heading: 3rem;
        --Subheading: 2rem;
        --Desc: 0.8rem;
        --Title: 1rem;
        --SubTitle: 0.85rem;
    }
    nav{
        position: absolute;
        width: 100%;
        height: fit-content;
        /* background: #000; */
        justify-content: center;
        display: flex;
        backdrop-filter: blur(10px);
        /* padding-bottom: 10px; */
        border-bottom: 2px solid var(--bg-color);
        border-radius: 0 0 20px 20px;
    }
    .navbar{
        display: none;
    }
    .logo-holder{
        width: 150px;
        transform: translateY(-5px);
    }
    #mobilenavctn{
        display: flex;
    }
    #hero{
        margin-top: 50px;
    }
    #hero h1{
        margin-left: 0;
        margin-bottom: 20px;
    }
    .formpic{
        display: none;
    }
    .form{
        width: 100%;
    }
    #social{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 8px;
        /* background: #000; */
    }
    .FAQsection{
        margin-top: -50px;
    }
    .faq-container{
        width: 90%;
    }
    footer{
        margin-bottom: 100px;
    }
    #footerTop { 
        flex-direction: column;
    }
    #footerLogo { 
        width: 100%; 
        height: 30vh; 
        background-position: center; 
    }
    #footerTop div{
        margin-bottom: 20px;
    }
    #footerTop h1{
        padding-bottom: 0;
    }
    #sitemap { 
        margin-left: 20px; 
        padding-left: 20px; 
        padding-bottom: 0; 
        border-left: none; 
    }
    #Fproducts, 
    #Fcontact { 
        margin-left: 20px; 
        padding-left: 20px; 
    }
    #footerBottom { 
        flex-direction: column; 
        gap: 6px; 
        font-size: 0.75rem; 
        text-align: center; 
    }
}

@media (min-width: 451px) and (max-width: 649px) {
    :root{
        --bigger: 7rem;
        --Heading: 3rem;
        --Subheading: 2rem;
        --Desc: 0.8rem;
        --Title: 1rem;
        --SubTitle: 0.85rem;
    }
    nav{
        position: absolute;
        width: 100%;
        height: fit-content;
        /* background: #000; */
        justify-content: center;
        display: flex;
        backdrop-filter: blur(10px);
        /* padding-bottom: 10px; */
        border-bottom: 2px solid var(--bg-color);
        border-radius: 0 0 20px 20px;
    }
    .navbar{
        display: none;
    }
    .logo-holder{
        width: 150px;
        transform: translateY(-5px);
    }
    #mobilenavctn{
        display: flex;
    }
    #hero{
        margin-top: 50px;
    }
    #hero h1{
        margin-left: 0;
        margin-bottom: 20px;
    }
    .formpic{
        display: none;
    }
    .form{
        width: 100%;
    }
    #social{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 8px;
        /* background: #000; */
    }
    .FAQsection{
        margin-top: -50px;
    }
    .faq-container{
        width: 90%;
    }
    footer{
        margin-bottom: 100px;
    }
    #footerTop { 
        flex-direction: column;
    }
    #footerLogo { 
        width: 100%; 
        height: 30vh; 
        background-position: center; 
    }
    #footerTop div{
        margin-bottom: 20px;
    }
    #footerTop h1{
        padding-bottom: 0;
    }
    #sitemap { 
        margin-left: 20px; 
        padding-left: 20px; 
        padding-bottom: 0; 
        border-left: none; 
    }
    #Fproducts, 
    #Fcontact { 
        margin-left: 20px; 
        padding-left: 20px; 
    }
    #footerBottom { 
        flex-direction: column; 
        gap: 6px; 
        font-size: 0.75rem; 
        text-align: center; 
    }
}

@media (min-width: 650px) and (max-width: 949px) {
    :root{
        --bigger: 10rem;
        --Heading: 3rem;
        --Subheading: 2rem;
        --Desc: 0.8rem;
        --Title: 1.35rem;
        --SubTitle: 0.85rem;
    }
    nav{
        position: absolute;
        width: 100%;
        height: fit-content;
        /* background: #000; */
        justify-content: center;
        display: flex;
        backdrop-filter: blur(10px);
        /* padding-bottom: 10px; */
        border-bottom: 2px solid var(--bg-color);
        border-radius: 0 0 20px 20px;
    }
    .navbar{
        display: none;
    }
    .logo-holder{
        width: 150px;
        transform: translateY(-5px);
    }
    #mobilenavctn{
        display: flex;
    }
    #hero h1{
        margin-left: 0;
        margin-bottom: 20px;
    }
    footer{
        margin-bottom: 100px;
    }
    #footerTop { 
        flex-direction: column;
    }
    #footerLogo { 
        width: 100%; 
        height: 30vh; 
        background-position: center; 
    }
    #footerTop div{
        margin-bottom: 20px;
    }
    #footerTop h1{
        padding-bottom: 0;
    }
    #sitemap { 
        margin-left: 20px; 
        padding-left: 20px; 
        padding-bottom: 0; 
        border-left: none; 
    }
    #Fproducts, 
    #Fcontact { 
        margin-left: 20px; 
        padding-left: 20px; 
    }
    #footerBottom { 
        flex-direction: column; 
        gap: 6px; 
        font-size: 0.75rem; 
        text-align: center; 
    }
}

@media (min-width: 950px) and (max-width: 1025px) {
    :root{
        --bigger: 8rem;
        --Heading: 3rem;
        --Subheading: 2rem;
        --Desc: 0.8rem;
        --Title: 1rem;
        --SubTitle: 0.85rem;
    }
    nav{
        position: absolute;
        width: 100%;
        height: fit-content;
        /* background: #000; */
        justify-content: center;
        display: flex;
        backdrop-filter: blur(10px);
        /* padding-bottom: 10px; */
        border-bottom: 2px solid var(--bg-color);
        border-radius: 0 0 20px 20px;
    }
    .navbar{
        display: none;
    }
    .logo-holder{
        width: 150px;
        transform: translateY(-5px);
    }
    #mobilenavctn{
        display: flex;
    }
    #hero h1{
        margin-left: 40px;
        margin-bottom: 20px;
    }
    footer{
        margin-bottom: 100px;
    }
    #footerTop { 
        flex-direction: column;
    }
    #footerLogo { 
        width: 100%; 
        height: 30vh; 
        background-position: center; 
    }
    #footerTop div{
        margin-bottom: 20px;
    }
    #footerTop h1{
        padding-bottom: 0;
    }
    #sitemap { 
        margin-left: 20px; 
        padding-left: 20px; 
        padding-bottom: 0; 
        border-left: none; 
    }
    #Fproducts, 
    #Fcontact { 
        margin-left: 20px; 
        padding-left: 20px; 
    }
    #footerBottom { 
        flex-direction: column; 
        gap: 6px; 
        font-size: 0.75rem; 
        text-align: center; 
    }
}

@media (min-width: 1026px) and (max-width: 1366px) {
    :root {
        --bigger: 10rem;
        --Heading: 4rem;
        --Subheading: 3rem;
        --Desc: 1rem;
        --Title: 1rem;
        --SubTitle: 0.85rem;
    }
    .teampic{
        margin-top: 100px;
        height: 70%;
    }
    #footerTop span{
        font-size: 0.8rem;
    }
    #footerLogo{
        width: 600px;
        margin: 0;
    }
    #Fproducts{
        /* background: #000; */
        width: 40%;
    }
}