*{
    padding: 0;
    margin: 0;
    font-family: "Jost", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    word-break: break-word;
}

.banner{
    width: 100%;
    height: 30px;
    background-color: black;
}

.over{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 9;
}

.section-icon{
    color: white;
    font-size: 48px;
}

.hero{
    width: 100%;
    height: 100vh;
    position: relative;
    background-size: cover;
}

.drawer-button{
    position: fixed;
    top: 5vh;
    right: 30px;
    padding: 18px 20px;
    background-color: white;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    z-index: 10;
    box-shadow: rgba(99, 99, 99, 0.2) 0 2px 8px 0;
}

.drawer-button i{
    color: black;
}

.introduction-section{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 0;
    background-color: rgba(41,41,41,255);
}

.about-section{
    width: 65%;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.about-section h1{
    color: #c8b098;
    font-size: 42px;
    font-weight: bold;
}

.about-section button{
    padding: 12px 22px;
    background-color: #c8b098;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

.about-section a{
    color: inherit;
    text-decoration: none;
}

.introduction-section-part{
    width: 65%;
    margin: 6vh 0 4vh 0;
    display: flex;
    align-items: center;
}

.introduction-section-part-image{
    margin-right: 2vw;
}

.introduction-section-part-image img{
    width: 60px;
    height: 60px;
}

.introduction-section-part-text p{
    color: white;
    font-size: 22px;
    text-align: justify;
}

.images-section{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;

	padding-bottom: 15vh;
	padding-top: 5vh;
}

.images-section-container{
    width: 65%;
    display: flex;
    justify-content: space-between;
}

.images-section-part{
    width: 30%;
    /* height: 300px; */
    display: flex;
    justify-content: center;
}

.images-section-part img{
    width: 100%;
    height: 100%;
}

.first-part{
    /* margin: 5vh 0; */
}

.second-part{
    /* margin: 10vh 0 5vh 0; */
}

.third-part{
    /* margin: 16vh 0 5vh 0; */
}

.product-section{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #262626;
}

.product-section-part{
    width: 65%;
    display: flex;
    flex-direction: column;
    margin: 5vh 0 8vh 0;
}

.product-section-part img{
	width: 50%;
	height: auto;
	display: inline list-item;
	margin: auto;
}

.product-section-part h1{
    margin: 2vh 0 6vh 0;
    color: #c8b098;
    font-size: 42px;
    font-weight: bold;
}

.product-section-part h2{
    margin: 2vh 0 6vh 0;
    color: #c8b098;
    font-size: 32px;
}

.product-section-part p{
    color: white;
    font-size: 22px;
    text-align: justify;
}

.quality-images-section{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: black;
}

.quality-images-section-part {
    width: 65%;
    display: flex;
    flex-wrap: wrap;
    gap: 1%;
    margin: 5vh 0;
}

.quality-images-section-part-image {
    flex: 0 0 24%;
    box-sizing: border-box;
    overflow: hidden;
}

.quality-images-section-part-image img {
    width: 100%;
    height: 250px;
    display: block;
}

.rotated-image{
    transform: rotate(1deg);
}

.application-section{
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: #968470;
}

.application-section-container{
    width: 65%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.application-section-head{
    margin-top: 6vh;
}

.application-section p{
    color: white;
    font-size: 20px;
    letter-spacing: 1px;
}

.application-section h3{
    margin: 3vh 0;
    font-size: 24px;
}

.mobile-app{
    display: flex;
    margin-bottom: 1vh;
}

.mobile-app a{
    margin: 0 1vw;
}

.specifications{
    background-color: #3c3c3c;
}

.table-section{
    width: 100%;
    /* display: flex; */
    justify-content: space-between;
}

.table-container{
    width: 46%;
    overflow-x: auto;
}

.responsive-table{
    width: 100%;
    margin: 3vh 0;
}

.responsive-table thead{
    background-color: #c9c9c9;
}

.responsive-table th, td{
    padding: 10px;
    text-align: left;
}

.responsive-table tr{
    padding: 10px 0;
}

.responsive-table tbody{
    color: #c9c9c9;
}

.table-container::-webkit-scrollbar{
    height: 8px;
    background-color: #c9c9c9;
}

.table-container::-webkit-scrollbar-thumb{
    background-color: #707070;
    border-radius: 5px;
}

.table-container::-webkit-scrollbar-thumb:hover{
    background-color: #1c1c1c;
}

.image-collection{
    display: flex;
    flex-wrap: wrap; /* Allows wrapping to a new row */
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 65%;
    margin: 50px auto;
}

.card{
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    width: calc(25% - 15px); /* Ensures 4 cards per row */
}

.card img{
    width: 100%;
    object-fit: cover;
    display: block;
}

.card div{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8); /* Dark overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.card:hover div{
    opacity: 1;
}

.specifications-section{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    background-color: #1c1c1c;
}

.specifications-section-part{
    width: 65%;
    display: flex;
    justify-content: space-between;
}

.specification-image{
    width: 48%;
    /* height: 600px; */
}

.specification-image img{
    width: 100%;
    height: 100%;
}

.specifications-section-content{
    width: 48%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.specifications-section-content-head{
    display: flex;
    justify-content: start;
    align-items: center;
}

.specifications-section-content-head span{
    margin-right: 10px;
}

.specifications-section-content-head h3{
    color: white;
    font-size: 26px;
}

.specifications-section-content p{
    max-width: 90%;
    margin: 5vh 0;
    color: white;
    font-size: 18px;
    text-align: justify;
    /* line-height: 3vh; */
}

.icon{
    width: 150px;
    height: 150px;
    position: absolute;
    top: 45%;
}

.section-icon{
    color: white;
    font-size: 48px;
}

.quality-part{
    margin: 2vh;
}

.quality-last-part{
    margin: 4vh 0 12vh 0;
}

.quality-section-part{
    width: 65%;
    /* height: 400px; */
    display: flex;
    justify-content: space-between;
    align-items: center;
	margin: 5vh 0 5vh 0;
}

.quality-section-part img{
    /* width: 200px; */
}

.quality-section-part p{
    width: 70%;
    color: white;
    font-size: 22px;
    text-align: justify;
}

.last-section{
    width: 100%;
}

.last-section img{
    width: 100%;
}

.footer{
    width: 100%;
    display: flex;
    justify-content: center;
    background: url("../assets/Background-footer.jpg") center;
    background-size: cover;
}

.footer-section{
    width: 65%;
    display: flex;
    justify-content: space-between;
}

.footer-section-part{
    width: 46%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 6vh 0;
}

.footer-section-part img{
    width: 60px;
    height: 60px;
}

.footer-section-part h2{
    margin: 2vh 0 3vh 0;
    color: #c8b098;
    font-size: 32px;
    font-weight: bold;
}

.footer-section-part p{
    max-width: 450px;
    margin-bottom: 2vh;
    font-weight: bold;
}

.footer-section-part a{
    margin-top: 1vh;
    color: black;
    font-weight: bold;
    text-decoration: none;
}

.footer-second-part{
    align-items: end;
}

.footer-second-part img{
    width: 120px;
    height: 120px;
}

.footer-second-part h3{
    margin-top: 1vh;
    font-size: 24px;
}

.contact-form{
    width: 100%;
    height: auto;
    margin: 20px 0;
}

.input-row{
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.input-group{
    width: 48%;
    display: flex;
    flex-direction: column;
}

.full-group{
    width: 100%;
}

.input-group label{
    margin-bottom: 5px;
}

.input-group input{
    padding: 10px;
    border: 1px solid grey;
    border-radius: 5px;
}

.input-group input:focus{
    border-color: #c8b098; /* Blue border on focus */
    outline: none;
}

.input-group select{
    padding: 10px;
    border: 1px solid grey;
    border-radius: 5px;
}

.input-group select:focus{
    border-color: #c8b098; /* Blue border on focus */
    outline: none;
}

.input-group textarea{
    max-width: 100%;
    min-width: 100%;
    padding: 10px;
    border: 1px solid grey;
    border-radius: 5px;
}

.input-group textarea:focus{
    border-color: #c8b098; /* Blue border on focus */
    outline: none;
}

.form-button-container{
    width: 100%;
    display: flex;
    justify-content: right;
    margin: 20px 0;
}

.form-button{
    padding: 12px 22px;
    background-color: #c8b098;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

.author{
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: black;
    color: white;
}

.author-section{
    width: 65%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 3vh 0;
}

.powered{
    display: flex;
    align-items: center;
}

.powered img{
    width: 100px;
    height: 40px;
    margin-left: 1vw;
}

.drawer{
    width: 300px;
    height: 100vh;
    position: fixed;
    top: 0;
    right: -300px;
    display: flex;
    justify-content: center;
    background-color: white;
    transition: right 0.3s ease;
    z-index: 99;
}

.drawer.open {
    right: 0;
}

.drawer-item{
    width: 80%;
    display: flex;
    flex-direction: column;
}

.drawer-item a{
    cursor: pointer;
    text-decoration: none;
}

.drawer-link{
    font-size: 14px;
    margin: 20px 0;
    color: rgb(173, 173, 173);
}

.drawer-link:hover{
    color: navy;
}

.active{
    color: navy;
    font-weight: bold;
}

.close{
    margin: 20px 0 40px 0;
    color: rgb(173, 173, 173);
    font-size: 24px;
}

.fixed{
    height: 100vh;
    position: fixed;
}

.none{
    display: none;
}

.w-icon{
    padding: 18px 20px;
    position: fixed;
    bottom: 10vh;
    right: 8px;
    color: green;
    font-size: 48px;
    z-index: 2000;
}

.specifications-image-text-section {
    width: 65%;
    display: flex;
    flex-direction: column;
}

.specifications-image-text-section h2{
    margin-bottom: 30px;
    color: #c8b098;
}

.flex-container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
}

.flex-item {
    width: 23%; /* Exactly 4 items per row */
    box-sizing: border-box;
}

.flex-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 5px;
}

.flex-item p {
    margin-top: 10px;
    font-size: 16px;
    color: white;
}

.iso-container {
    width: 40%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    box-sizing: border-box;
}

.iso-container img {
    width: 100%;
    max-width: 32%;
    height: auto;
    object-fit: cover;
}

@media only screen and (max-width: 1080px) {
    .quality-section-part{
        height: auto;
        flex-direction: column;
        margin-bottom: 50px;
    }

    .quality-section-part p{
        width: 100%;
    }

    .footer-section{
        flex-direction: column;
    }

    .footer-section-part{
        width: 70%;
    }

    .footer-second-part{
        width: 100%;
    }

    .card {
        width: calc(50% - 10px); /* 2 cards per row on tablets */
    }

    .specifications-section-part{
        width: 100%;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 10vh 0;
    }

    .specifications-section-content{
        width: 70%;
        margin: 3vh 0;
    }

    .specifications-section-content p{
        max-width: 100%;
    }

    .specification-image{
        width: 70%;
        /* height: 450px; */
    }

    .specification-image img{
        width: 100%;
    }

    .icon{
        top: 45%;
    }

    .table-section{
        flex-direction: column;
    }

    .table-container{
        width: 100%;
    }

    .flex-item {
        width: 48%; /* 2 per row */
    }

    .quality-images-section-part {
        gap: 2%;
    }

    .quality-images-section-part-image {
        flex: 0 0 48%;
        margin-top: 2%;
    }
}

@media only screen and (max-width: 750px) {
    .images-section-container{
        flex-direction: column;
    }

    .images-section-part{
        width: 100%;
    }

    .first-part, .second-part, .third-part{
        margin: 4vh 0;
    }

    .introduction-section-part{
        flex-direction: column;
    }

    .introduction-section-part-image{
        margin: 0 0 2vh 0;
    }

    /* .introduction-section-part-text p{ */
        /* text-align: center; */
    /* } */

    .quality-images-section-part-image{
        width: 100%;
    }

    .quality-images-section-part{
        width: 70%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin: 2vh 0;
    }

    .quality-images-section-part img{
        margin: 2vh 0;
    }

    .input-row{
        flex-direction: column;
    }

    .input-group{
        width: 100%;
    }
}

@media only screen and (max-width: 700px) {
    .product-section-part h1{
        font-size: 32px;
    }

    .product-section-part h2{
        font-size: 26px;
    }

    .author-section{
        flex-direction: column;
    }

    .powered{
        margin-top: 1vh;
    }

    .about-section{
        height: auto;
        flex-direction: column;
        align-items: start;
    }

    .card {
        width: 100%;
    }

    .flex-item {
        width: 100%;
    }
}

@media only screen and (max-width: 550px) {
    .images-section{
        flex-direction: column;
        align-items: center;
    }

    .first-part{
        margin: 2vh 0;
    }

    .specification-image{
        /* height: 300px; */
    }

    .about-section, .introduction-section-part, .images-section-container, .product-section-part, .quality-images-section-part
    ,.application-section-container, .image-collection, .specifications-section-content, .specifications-image-text-section, .quality-section-part, .footer-section, .author-section{
        width: 80%;
    }
	.product-section-part img {
		width: 100%;
	}
	.iso-container {
		width: 100%;
	}
	.icon{
		display: none;
	}
}

.second-part img {
	padding-top: 5vh;
}
.third-part img {
	padding-top: 10vh;
}