*{
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    box-sizing: border-box;
    font-family: sans-serif;
}

html {
    scroll-behavior: smooth;
}

/*Navigation Bar*/
header {
    position: fixed;
    width: 100%;
    height: 80px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 100px;
    z-index: 1000;
}

.logo {
    font-size: 35px;
    font-weight: bold;
    color: #0070c0;
    text-transform: uppercase;
}

.hamburger {
    display: none;
}

.nav-bar ul {
    display: flex;
}

.nav-bar ul li a {
    display: block;
    color: black;
    font-size: 20px;
    padding: 10px 25px;
    border-radius: 50px;
    transition: 0.2s;
    margin: 0 5px;
    font-weight: bold;
}

.nav-bar ul li a.active {
    color: blue;
}

@media only screen and (max-width: 1320px) {
    header {
        padding: 0 50px;
    }
}

@media only screen and (max-width: 1100px) {
    header {
        padding: 0 30px;
    }
}

@media only screen and (max-width: 900px) {
    .hamburger {
        display: block;
        cursor: pointer;
    }

    .hamburger .line {
        width: 30px;
        height: 3px;
        background: #fefefe;
        margin: 6px 0;
    }

    .nav-bar {
        height: 0;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        width: 100vw;
        background: #11101b;
        transition: 0.5s;
        overflow: hidden;
    } 

    .nav-bar.active {
        height: 300px;
    }

    .nav-bar ul {
        display: block;
        width: fit-content;
        text-align: center;
        margin: 20px auto 0 auto;
        transition: 0.5s;
        opacity: 1;
    }

    .nav-bar.active ul{
        opacity: 1;
    }

    .nav-bar ul li a {
        margin-bottom: 12px;
        color: white;
    }

    header {
        background-color: black;
    }
    
    .nav-bar ul li a.active {
    color: #0070c0;
    }
}
/*Navigation Bar*/

/*Section*/
section {
    height: 100vh;
    display: flex;
}
/*Section*/

/*Video Section Start*/

.video-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

video {
    position: relative;
    top: 50%;
    left: 50%;
    width: 100%; 
    height: 100%;
    object-fit: cover; 
    z-index: 1;
    transform: translate(-50%, -50%);
}

@media only screen and (max-width: 768px) {
    .video-section video {
        position: absolute;
        width: 100%;
        height: 100vh;
        object-fit: contain;
        object-position: center 10%;
    }
}

@media only screen and (min-width: 769px) and (max-width: 1024px) {
    .video-section video {
        position: absolute;
        width: 100%;
        height: 100vh;
        object-fit: contain;
        object-position: center 9%;
    }
}

/*Video Section End*/

/*Nav Circle Button Start*/
.navbuttons {
    width: 100%;
    z-index: 10;
    position: fixed;
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    bottom: 20px;
}

  .navbuttons li a {
    display: block;
    width: 50px;
    height: 50px;
    background-color: #ccc;
    border-radius: 150%;
    text-indent: -9999px; 
    z-index: 2;
}

.navbuttons li.active a{
    background-color: #ccff33; 
}


@media only screen and (max-width: 768px) {
    .navbuttons li a {
        display: block;
        width: 40px;
        height: 40px;
    }

    .navbuttons {
        gap: 15px;
    }
}

/*Nav Circle Button End*/

/*content part start*/
.index-text {
    display: flex;
    flex-direction: column;
    max-width: 45%;
    gap: 100px;
}

.c1 {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: absolute;
    height: 100vh;
    width: 100%;
    color: darkblue; 
    z-index: 2; 
    text-shadow: 2px 2px 10px white;
    font-size: 25px;
    top: 100px;
}
.c2, .c4, .c5, .c6, .c7 {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: absolute;
    height: 100vh;
    width: 100%;
    color: darkblue; 
    z-index: 2; 
    text-shadow: 2px 2px 10px white;
    font-size: 25px;
    bottom: 100px
}

.c3{ 
    flex-direction: column;
    display: flex;
    align-items: center; 
    justify-content: center; 
    position: absolute;
    height: 100vh;
    width: 100%;
    color: darkblue; 
    z-index: 2; 
    text-shadow: 2px 2px 10px white;
    font-size: 25px;
    top: 140px;
}
@media only screen and (max-width: 599px) {
    .c1 {
        font-size: 20px;
        align-items: center;
        top: 50px;
    }

    .c2 {
        font-size: 20px;
        align-items: flex-start;
        top: 350px;
    }

    .c3 {
        font-size: 20px;
        align-items: center;
        top: 10px;
    }

    .c4 {
        font-size: 20px;
        align-items: center;
        top: 1px;
    }

    .c5 {
        font-size: 20px;
        align-items: center;
        top: 1px;
    }

    .c6 {
        font-size: 20px;
        align-items: center;
        top: 1px;
    }

    .c7 {
        font-size: 20px;
        align-items: flex-start;
        top: 350px;
    }

    .index-text {
        max-width: 80%;
        gap: 20px;
        color: darkblue;
        text-shadow: none;
    }
}

@media screen and (min-width: 600px) and (max-width: 1020px){
    .c1, .c2, .c4, .c5, .c6, .c7 {
        font-size: 25px;
        align-items: flex-start;
        justify-content: center;
        top: 550px;
    }

    .c3 {
        font-size: 25px;
        align-items: center;
        justify-content: flex-start;
        top: 550px;
    }

    .index-text {
        max-width: 80%;
        gap: 20px;
        color: darkblue;
        text-shadow: none;
    }
}

/*content part end*/
/*index page end*/

/*product page start*/

.product-name-1 {
    display: flex;
    margin-top: 100px;
    font-size: 30pt;
    flex-direction: column;
}

.product-name-1-1 {
    display: flex;
    margin-top: 0px;
    font-size: 30pt;
    flex-direction: row;
    border: 3px blue solid;
    width: 120%;
    height: 50%;
    gap: 40px;
    align-items: center;
    justify-content: center;
}



.product-name-1-2 {
    display: flex;
    margin-top: 5%;
    width: 120%;
    height: 44%;
    border: 3px blue solid;
    align-items: center;
    justify-content: center;
}

.product-pic-2 {
    display: flex;
    width: 29%;
    height: 99%;
    border: 3px solid blue;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.product-name-2 {
    display: flex;
    margin-top: 100px;
    font-size: 30pt;
    flex-direction: column;
}

.product-name-2-1 {
    display: flex;
    font-size: 30pt;
    border: 3px blue solid;
    width: 150%;
    height: 30%;
    align-items: center;
    justify-content: center;
}



.product-name-2-2 {
    display: flex;
    margin-top: 5%;
    width: 150%;
    height: 30%;
    border: 3px blue solid;
    align-items: center;
    justify-content: center;
}

.product-name-2-3 {
    display: flex;
    margin-top: 5%;
    width: 150%;
    height: 30%;
    border: 3px blue solid;
    align-items: center;
    justify-content: center;
}

.product-pic-1 {
    display: flex;
    width: 25%;
    height: 100%;
    border: 3px solid blue;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.panemoscell {
    max-width: 100%;
    max-height: 100%;

}

.panemosphone {
    max-width: 70%;
    max-height: 70%;

}

.panemospole {
    max-width: 100%;
    max-height: 100%;
}

.product-details {
    margin-top: 2%;
    display: flex;
    gap: 200px;
    width: 150%;

}

.product-name-1, .product-name-2 {
    margin-left: 50px;
}

.product-name-1 h1, .product-name-2 h1 {
    color: #0070c0;
}

.product-page-one, .product-page-two{
background-color: lightgreen;
}

/*product page end*/

/*Image Section Start*/

.image-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.image-poster {
    position: relative;
    top: 50%;
    left: 50%;
    width: 100%; 
    height: 100%;
    object-fit: cover; 
    z-index: 1;
    transform: translate(-50%, -50%);
}

@media only screen and (max-width: 768px) {
    .image-section .image-poster {
        position: absolute;
        width: 100%;
        height: 100vh;
        object-fit: contain;
        object-position: center 10%;
    }
}
/*Image Section End*/

/*About page start*/

.about-text {
    max-width: 58%;
}

.about-1, .about-2{
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    color: darkblue; 
    z-index: 2; 
    font-size: 30px;
    text-shadow: 2px 2px 10px white;
}

@media only screen and (max-width: 599px) {
    .about-text {
        max-width: 80%;
        font-size: 20px;
        color: darkblue;
        text-shadow: none;
    }
}

@media only screen and (min-width: 600px) and (max-width: 1024px) {
    .about-text {
        max-width: 80%;
        font-size: 25px;
        color: darkblue;
        text-shadow: none;
    }

    .about-1, .about-2 {
        top: 50px;
    }
}


/*About page end*/


/*FAQ Page Starts*/

.FAQ-1, .FAQ-2, .FAQ-3, .FAQ-4, .FAQ-5, .FAQ-6, .FAQ-7 {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    color: darkblue; 
    z-index: 2; 
    font-size: 25px;
    text-shadow: 2px 2px 10px white;
}

.FAQ-text {
    max-width: 58%;
}

@media only screen and (max-width: 1024px) {
    .FAQ-text {
        max-width: 80%;
        font-size: 20px;
        color: darkblue;
        text-shadow: none;
    }

    .FAQ-1, .FAQ-2, .FAQ-3, .FAQ-4, .FAQ-5, .FAQ-6, .FAQ-7 {
        top: 10px ;
    }
}

/*FAQ Page End*/

/*Contact Area Start*/
.form-group {
    display: flex;
    gap: 30px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

input, textarea, select {
    padding: 10px;
}

input {
    width: 350px;
}

textarea {
    width: 730px;
    height: 200px;
}
input::placeholder, textarea::placeholder {
    color: darkgreen;
    font-style: italic;
    font-size: 15px;
}

#submit {
    background-color: lightgreen;
    width: 60px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-style: italic;
}


label {
    font-size: 30px;
}

.contact-content{
    width: 100%;
    height: 100vh;
    position: absolute;
    display: flex;
    flex-direction: column;
    color: #ccff33; 
    z-index: 2; 
    justify-content: center;
    font-size: 30px;
    left: 50px;
    text-shadow: 4px 4px 4px black;
    gap: 20px;
}

@media only screen and (max-width: 768px) {
    .form-group {
        display: flex;
        flex-direction: column;
    }


    input, textarea, select {
        width: 100%;
        max-width: 80%;
    }

    input {
        width: 100%;
    }

    textarea {
        width: 100%;
        height: 200px;
    }

    #submit {
        width: 100%;
    }
}

.contact-poster {
    width: 100%;
    object-fit: cover;
}
/*Contact Area End*/ 

.data{
    display: flex;
    flex-direction: column;
    color: #0170c0;
    gap: 20px;
    width: 250px;
    padding: 20px;
    margin-top: 100px;

}

.data-title{
    font-size: 20pt;
    background-color: #deebf7;
    padding: 10px;
    font-family: sans-serif;
}

.faq-pic {
    position: fixed;
    width: 100vw;
    height: 100vh;
    z-index: -1;
}

.video-poster {
    width: 100%;
}