*{
    padding: 0;
    margin: 0;
    border: 0;
}
:root {
    --primary-color: #3a3a3a;
    --secondary-color: #4F9DA6;
    --text-color: #EFECEA;
    --yellow: #FACF5A;
    --red :#FF5959;
}
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-thumb {
    background-color: #ffffff;
    border-radius: 6px;
}
.scroll-down header {
    transition: all 400ms 100ms ease-in-out; 
	transform: translate3d(0, -100% ,0);
	box-shadow: 0px 0px 20px 0.4px transparent;
}
body, html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
}
body {
    background-color: var(--primary-color);
    color: var(--text-color);
}
header{
    overflow: hidden; /* Ensure content doesn't overflow */
    transition: min-height 500ms ease;
	transition: all 400ms 100ms ease-in-out; 
    position: fixed;
    width: 100%;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background-color: #0000006f;
    z-index: 999;
    box-shadow: 0px -2px 5px 10px #0000006f;
}
.extend-header {
    background-color: #000000d2;
    min-height: 190px;
    transition: min-height 800ms ease;
    
}
.navbar , .navbar-mob{
    position: relative;
    display: flex;
    width: 100%;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
    height: 80px;
    z-index: 2;
}
.navbar-mob{
    display: none;
}
.menu-bar{
    width: 45px;
    height: 34px;
    margin: 5%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 3;
}
.nav-slider{
    position: fixed;
    height: 200vh;
    max-width: 70%;
    right: -70%;
    border: 1px solid rgba(255, 255, 255, 0.089);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background-image: linear-gradient(120deg, rgba(255, 255, 255, 0.119), rgba(0, 0, 0, 0.147));
    box-shadow: 2px 2px 5px 2px rgba(0, 0, 0, 0.2);
    z-index: 5;
    transition: 0.5s;
}
.nav-slider-bg{
    width: 100%;
    height: 100vh;
    position: fixed;
    background-color: #1f1f1f79;
    z-index: 4;
}
.nav-slider span{
    color: #e0e0e0;
}
.divider{
    position: relative;
    width: 90%;
    height: 1px;
    left: 5%;
    background-color: #2a2b2c;
    margin-top: 80px;
}
.line{
    position: relative;
    width: 100%;
    height: 5px;
    background-color: var(--text-color);
    border-radius: 3px;
    transition: 0.5s;
}
.nav-line{
    position: absolute;
    top: 50px;
    height: 2px;
    background-image: linear-gradient(to right, #000000f0 10%, #ffffff9a 100%);
}
/* .line-1,.line-2 ,.line-3{
    background-color: var(--primary-color);
} */
.line-1{
    transform: translateY(14px) rotate(45deg);
}
.line-2{
    opacity: 0;
}
.line-3{
    transform: translateY(-14px) rotate(-45deg);
}

.active-slider{
    right: 0%;
    transition: 0.5s;
}
.nav-element-container{
    color: var(--primary-color);
    margin-top: 10%;
    font-weight: 600;
    padding: 0px 20px 0px 0px;
}
.product-nav-element-container{
    margin-top: 10px;
}

.nav-element-container a{
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}
.nav-element{
    position: relative;
    height: 70px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: baseline;
    color: var(--primary-color);
    margin-left: 8px;
    /* border-bottom: 1px solid var(--primary-color); */
}
.product-nav-element{
    /* left: 5px; */
    color: var(--text-color);
}
.product-nav-element span{
    width: 100px;
    margin-left: 5px;   
    opacity: 0;
}
.side-bar:hover span{
    opacity: 1;
}
/* .product-nav-element img{
    margin: 20%;
} */
.nav-element-footer{
    border-bottom: 1px solid var(--yellow);
    color: var(--text-color);
}
.nav-element img{
    width: 35px;
    height: auto;
    margin: 7%;
}
.current-point{
    position: relative;
    width: 5px;
    height: 100%;
    background-color: var(--yellow);
    border-radius: 2px;
}

.logo{
    position: relative;
    height: 100%;
    width: auto;
    margin-left: 4%;
}

.hid{
    display: none;
}
ul{
    display: flex;
    flex-direction: row;
    font-size: 17px;
    font-family: Arial, Helvetica, sans-serif;
    margin-right: 5%;
}
li{
    list-style: none;
}
.section-expand{
    padding: 0px 20px;
    cursor: pointer;
}
.section-expand img{
    width: 17px;
    transition: 300ms;
}
.rotate{
    transform: rotate(180deg);
    transition: 300ms;
}
.section-details{
    position: absolute;
    top: 70px;
    height: auto;
    width: auto;
    opacity: 0;
    transition: 300ms;
    gap: 7px;
}
.section-details ul{
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.section-details a{
    padding: 2px;
    color: #e0e0e0;
}
.nav-section-active{
    opacity: 1;
}
a{
    cursor: pointer;
    padding: 14px 20px;
    color: var(--text-color);
    text-decoration: none;
}
section{
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    height: 100%;
    justify-content: center;
}
#home{
    height: 110vh;
    background-image: url('home-pic.png');
    background-size: cover; /* makes sure the image covers the entire area */
    background-repeat: no-repeat; /* prevents the image from repeating */
    background-position: center; /* centers the image */
    background-color: #171718d4;
}
h1{
    font-size: 48px;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text-color);
    margin: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
h2{
    font-size: 28px;
    font-family: Arial, Helvetica, sans-serif;
    margin: 20px;
    color: var(--primary-color);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}
p{
    width: 80%;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
}

#about{
    background-color: var(--primary-color);
    flex-direction: column;
    height: auto;
    color: #ffffff;
}
.main-about{
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    margin-top: 50px;
}
#home::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Adjust the alpha value for desired darkness */
    z-index: 1;
}
#about h2,p{
    color: #ffffff;
}
.triangle {
    position: absolute;
    top: 100.5vh;
    left: 0;
    width: 0;
    height: 0;
    border-bottom: 10vh solid var(--primary-color);
    z-index: 3;
}
.triangle h2{
    color: #ffffff;
}
.yellow-45{
    top: 5vh;
    position: absolute;
    height: 2px;
    background-color: var(--yellow);
}
.half-page{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-color);
    z-index: 2;
}

.home-content h1{
    overflow: hidden;
    color: #ffffff;
}

.home-img{
    width: 70%;
    aspect-ratio: 1/1;
    background-color: #FF5959;
    font-size: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 35px;
}
.two-buttons{
    margin: 25px;
    width: 60%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
}
button{
    width: 170px;
    aspect-ratio: 7/2;
    background-color: var(--secondary-color);
    color: var(--text-color);
    border-radius: 50px;
    cursor: pointer;
    transition: 0.5s;
    font-weight: 600;
    font-size: 16px;
}
.button-1:hover{
    border: 3px solid var(--secondary-color);
    background-color: transparent;
    transition: 0.5s;
}
.button-2{
    border: 3px solid var(--yellow);
    background-color: transparent;
    transition: 0.5s;
}
.button-2:hover{
    border: 0px solid var(--yellow);
    background-color: var(--yellow);
    color: var(--primary-color);
    transition: 0.5s;
}
.main-about{
    height: auto;
}
.home-content{
    height: 100vh;
    align-items: center;
    justify-content: center;
}
.about-content h1{
    color: var(--yellow);
}
.about-content p{
    color: var(--primary-color);
    text-shadow: none;
    font-size: 14px;
    transition: 0.5s;
}
.M-V-content{
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-shadow: none;
}
.M-V-buttons{
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    background-color: var(--secondary-color);
    width: 85%;
    border-radius: 10px;
}
#active{
    border-bottom: var(--yellow) solid 4px;
    
}
.M-V-buttons button{
    width: 45%;
    aspect-ratio: 10/2;
    background-color: transparent;
    border-radius: 0px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.M-V-text{
    margin-top: 15px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    height: auto;
    color: var(--primary-color);
}
.M-V-text P {
    text-align: left;
    transition: 1s ease;
    
}
.about-img-container{
    color: var(--primary-color);
}
.shutter-customization{
    display: flex;
    flex-direction: column;
}
.shutter-img-container{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.shutter-img{
    height: 30%;
    width: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.shutter-img img{
    position: relative;
    width: 70%;
    height: auto;
}
.change-colors{
    min-width: 15%;
    height: 40px;
    display: flex;
    flex-direction: row;
    margin: 5%;
}
.shutter-color{
    width: 35px;
    height: 35px;
    margin: 0px 5px;
    border-radius: 100%;
    cursor: pointer;
}


#products{
    min-height: 100vh;
    /* background: url('products-bg.png') no-repeat center center fixed;
    background-size: cover;
    background-repeat: no-repeat;   */
    background-color: var(--primary-color);
}
.parts-section{
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
.parts-container{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 95%;
    opacity: 0;
}
.parts-animation{
    transition: ease 2s;
    opacity: 1;
    justify-content: space-evenly;
}

/* Parent container */
/* Parent container */
.object {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1;
    width: 300px;
    height: 370px;
    border-radius: 10px 10%;
    border: 1px solid rgba(255, 255, 255, 0.089);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    background-image: linear-gradient(120deg, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.05));
    box-shadow: 2px 2px 5px 2px rgba(0, 0, 0, 0.2);
    padding: 1%;
    transition: all 300ms ease-in-out;
    margin: 20px 10px;
    overflow: visible; /* Ensure overflow is visible */
}
.object:hover{
    scale: 1.05;
}
/* Image container */
.object-img {
    position: relative;
    width: 75%;
    aspect-ratio: 1/1;
    border-radius: 100%;
    /* background-color: #EFECEA; */
    transition: all 300ms ease-in-out;
    box-shadow: 0px 0px 0px 0px #FACF5A;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    background-image: linear-gradient(120deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.02));
    box-shadow: 2px 2px 5px 2px rgba(0, 0, 0, 0.2);
    z-index: 1;
    overflow: visible; /* Ensure overflow is visible */
}

/* Hover effect */
.object:hover .object-img {
    background-size: 140%; /* Increase background size */
    box-shadow: 2px 2px 5px 2px rgba(0, 0, 0, 0.2);
    z-index: 2; /* Ensure the image is on top */
    transform: scale(1.05); /* Scale up the container */
}

/* Ensure the background image remains centered and fully visible */
.object-img::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background-image: inherit;
    background-size: 100%;
    background-repeat: inherit;
    background-position: center;
    transform: translate(-50%, -50%) scale(1);
    border-radius: inherit;
    transition: transform 300ms ease-in-out;
    z-index: -1;
}

.object:hover .object-img::before {
    transform: translate(-50%, -50%) scale(1.4);
    z-index: 3;
}


.shutter-window{
    background-image: url('parts-img/2.png');
}
.box{
    background-image: url('parts-img/5.png');
}
.object-content{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.object h2{
    color: var(--text-color);
}
.object button{
    scale: 0.75;
    background-color: transparent;
    border: solid 2px var(--text-color);
}
.object button:hover{
    scale: 0.8;
    color: var(--secondary-color);
}
.benefits{
    position: relative;
    width: 90%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
}
.benefit-box{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 190px;
    aspect-ratio: 1/1;
    padding: 3px;
    transform: translateY(-50px);
    opacity: 0;
    margin-top: 50px;
}
.benefit-box-animation{
    transition: ease 1s;
    transform: translateY(0px);
    opacity: 1;
}
.benefit-box img{
    position: relative;
    height: 120px;
    transition: 0.5s;
}
.benefit-box h2{
    z-index: 1;
    font-size: 22px;
    width: 100%;
    text-align: center;
}
.benefit-box p{
    color: #ffffff;
    text-shadow: none;
    font-size: 14px;
    transform: translateY(-20px);
    transition: 0.5s;
}
.benefit-box img:hover{
    scale: 1.1;
    transition: 0.5s;
}
.benefit-box img:hover ~ p{
    transform: translateY(-5px);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    color: var(--primary-color);
    transition: 0.5s;
}


#services{
    background-color: var(--text-color);
}

#contact{
    background: url('contact-bg.png') no-repeat center center fixed;
    background-size: cover; /* makes sure the image covers the entire area */
    background-repeat: no-repeat; /* prevents the image from repeating */
    background-position: center; /* centers the image */
    background-color: #171718d4;
    flex-direction: column;
    padding: 7% 0%;
}
.contact-form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 55%;
}
.form-row{
    position: relative;
    margin: 15px 0px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.input-area{
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    width: 45%;
}
.form-row input{
    width: 100%;
    height: 50px;
    border-radius: 50px;
    box-sizing: border-box;
    border: 4px solid var(--secondary-color);
    background-color: transparent;
    color: #ffffff;
    padding: 1px 10px;
}
label{
    position: absolute;
    margin-left: 18px;
    font-size: 16px;
    pointer-events: none;
    transition: 0.2s ease all;
    transition: top 0.3s, font-size 0.3s;
}

input:focus ~ label,
input:not(:placeholder-shown) ~ label {
    color: #b6b6b6;
    top: 10px;
    font-size: 16px;
}

input:focus + label,
input:valid + label {
    top: -20px;
    margin-left: 13px;
    font-size: 12px;
    color: #ffffff;
}
.submit-div{
    display: flex;
    justify-content: center;
    align-items: center;
}

.two-input{
    width: 45%;
}
.one-input{
    width: 100%;
}
.form-contact-margin{
    margin: 10px 0px;
}
#footer{
    background-color: var(--primary-color--);
    height: 50vh;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.footer-section{
    position: relative;
    height: 100%;
    width: 33%;
    /* border:solid 1px #FACF5A; */
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.footer-section ul{
    flex-direction: column;
}
.footer-section h3{
    font-size: 22px;
    margin: 20px;
}
.footer-contact-socials{
    padding: 30px 0px;
    position: relative;
    justify-content: center;
    align-items: center;
    flex-direction: column-reverse;
}
.socials-area{
    scale: 0.6;
    position: relative;
    display: flex;
    width: 400px;
    height: 100px;
}
.socials-area a{
    padding: 6px;
}
.socialsbox {
    position: relative;
    display: flex;
    flex: 1;
    transition: .3s all ease;
    display: flex;
    align-items: center;
    width: 100px;
    height: 100px;
} 
.socials-icon{
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex: 1;
}
/* .socials-icon:hover{
    height: 50%;
    width: 50%;
} */

.footer-nav{
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
}
.footer-nav a{
    margin: 0px ;
    padding: 0px;
}
/* Form noification */

.notification{
    position: fixed;
    top: -30px;
    width: 200px;
    height: 40px;
    background-color: #4F9DA6;
    border-radius: 10px;
    transition: 300ms ease;
    z-index: 10000;
    transform: translate(-50% , -50%);
    left: 50%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    color: var(--primary-color);
    font-weight: 700;
}
.active-notification{
    animation: notify 3s;
}


/*

Products Details

*/

.side-bar{
    position: fixed;
    display: flex;
    flex-direction: column;
    justify-content: baseline;
    align-items: baseline;
    /* background-color: #555555; */

    border: 1px solid rgba(255, 255, 255, 0.086);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background-image: linear-gradient(120deg, rgba(75, 75, 75, 0.167), rgba(0, 0, 0, 0.222));
    box-shadow: 2px 2px 5px 2px rgba(0, 0, 0, 0.2);

    width: 80px;
    transform: translate(0%,-50%);
    top: 50%;
    height: auto;
    left: 30px;
    z-index: 10;
    overflow: hidden;
    transition: width 300ms ease;
    border-radius: 80px;
}
.side-bar a{
    padding: 0px;
    border-bottom: solid 1px #555555;
}
.side-bar:hover{
    width: 200px;
    /* border-radius: 10px; */
    transition: width 400ms ease;
}
.side-bar-logo-container{
    /* padding: 15px; */
    width: 100%;
}
.side-bar-logo{
    position: relative;
    height: 70px;
    /* transform: translateX(-50%,-50%); */
    /* border:solid #555555 20px; */
    transform: translate(0px , 10px);
    transition: 400ms ease;
    margin: 3px 0px;
}
.side-bar:hover .side-bar-logo{
    transform: translate(57px , 10px);
    transition: 400ms ease;
}
.parts-content-area{
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: var(--primary-color);
    width: 100%;
    height: 100%;
    left: 2%;
    /* min-height: 100vh; */
    gap: 60px 45px;
    flex-wrap: wrap;
    padding: 0%;
    padding-bottom: 3%;
}
.parts-content-area-box{
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    padding-bottom: 3%;
    gap: 30px;
    padding-left: 12%;
}
/* 11111111111111111 */
.product-data, .product-data-box {
    width: 400px;
    height: 600px;
    top: -5%;
    border-radius: 20px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.089);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    background-image: linear-gradient(120deg, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.05));
    box-shadow: 2px 2px 5px 2px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: transform 0.4s ease-in-out;
}
.front-content, .back-content {
    position: absolute;
    width: 100%;
    height: 100%;
    /* backface-visibility: hidden; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.front-content{
    z-index: 2;
}
.back-content{
    background-color: transparent;
    transform: rotateY(180deg); /* Start the back content rotated */
    z-index: 1;
    opacity: 0;
    /* transition: 0.6s ease-in-out */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.shutter-box{
    position: relative;
    width: 100%;
    height: 27%;
    margin: 1%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    background-color: #ffffff03;

}
.shutter-box-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-right:solid 3px #2a2b2c;
    width: 40%;
}
.shutter-box-content-img{
    position: relative;
    width: 5%;
}
.shutter-box-content h2{
    margin: 5px;
    font-size: 22px;
}
.shutter-box-details{
    width: 60%;
    margin: 0% 5%;
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns */
    grid-template-rows: repeat(2, auto);   /* 2 rows */
    gap: 8px 5px; /* Space between grid items */  
}
.shutter-box-details a{
    padding: 0px;
    height: 100%;
}
.shutter-box-details span{
    border: 1px solid rgba(255, 255, 255, 0.045);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background-image: linear-gradient(120deg, rgba(75, 75, 75, 0.05), rgba(0, 0, 0, 0.05));
    box-shadow: 2px 2px 5px 2px rgba(0, 0, 0, 0.1);
    padding: 2px 4px;
    font-size: 14px;
}
.hid{
    visibility: hidden;
}

.product-data {
    -webkit-transform: translateZ(0) rotateY(0);
    transform: translateZ(0) rotateY(0);
    perspective: 1000px;
}

/* Forward Flip */
.product-data-flip {
    -webkit-transform: translateZ(160px) rotateY(180deg);
    transform: translateZ(160px) rotateY(180deg);
}

/* Backward Flip (Reverse) */
.product-data-flip-back {
    -webkit-transform: translateZ(0) rotateY(0);
    transform: translateZ(0) rotateY(0);
}
 
.product-data-box{
    top: 0%;
    height: 250px;
    width: 400px;
    top: 0%;
    flex-direction: row;
}
.product-data-box div{
    width: 50%;
    position: relative;
}
.product-data button{
    margin-top: 30px;
    margin-bottom: 15px;
}
.product-data img{
    position: relative;
    width: 70%;
}
.product-data h2 , .product-data-box h2{
    color: var(--text-color);
}
.product-data-box h2{
    margin: 0px;
    margin-bottom: 15px;
}
.product-sheet , .product-sheet-box{
    position: relative;
    width: 90%;
    max-height: 42%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.product-sheet-box{
    align-items: center;
}
.product-sheet-box .sheet-line{
    width: 85%;
    border-radius: 5px;
}
.product-sheet-box .sheet-line span{
    margin-left: 5px;
}
.sheet-line{
    /* background-color: #5555557a; */
    border: 1px solid rgba(255, 255, 255, 0.045);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background-image: linear-gradient(120deg, rgba(75, 75, 75, 0.05), rgba(0, 0, 0, 0.05));
    box-shadow: 2px 2px 5px 2px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: row;
    margin-bottom: 5px;
    padding: 3px 0px;
}
.sheet-line p{
    position: absolute;
    margin: 0px;
    padding: 0px;
    width: 40%;
    text-align: unset;
    left: 60%;
    text-shadow: none;
    font-weight: 300;
    color: #ffffffd4;
}
.product-sheet span{
    font-weight: 700;
    margin-left: 8px;
    /* width: 40%; */
}
.sheet-extension{
    /* background-color: #5555557a; */
    border: 1px solid rgba(255, 255, 255, 0.045);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background-image: linear-gradient(120deg, rgba(75, 75, 75, 0.05), rgba(0, 0, 0, 0.05));
    box-shadow: 2px 2px 5px 2px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin-bottom: 5px;
}
.sheet-extension p{
    position: relative;
    text-shadow: none;
    font-weight: 300;
    color: #ffffffd4;
}
.foam-div{
    width: 40%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}


#home-products {
    margin-top: 10%;
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
/* 222222222222222 */

.about-parts {
    position: absolute;
    background-color: #555555;
    height: 25%;
    top: 0%;
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    z-index: 3;
}
.parts-content-bg{
    position: absolute;
    width: 100%;
    height: 67%;
    background-color: var(--primary-color);
    z-index: 1;
    display: flex;
    flex-direction: column;
}
.main-bg-row{
    position: relative;
    width: 100%;
    height: 18%;
    background-color: var(--primary-color);
}
.secondary-bg-row{
    position: relative;
    width: 100%;
    height: 0.3%;
    background: linear-gradient(90deg, #3a3a3a 50%,#facf5a9c 55%,#facf5a9c 60%,#3a3a3a 60% ,#3a3a3a 100%);
    animation: gradientMove 5s linear infinite;
    background-size: 300%;

}
/* .about-parts::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(90deg, #FACF5A 50%,#3a3a3a 55%,#3a3a3a 60%,#FACF5A 60% ,#3a3a3a 100%);
    background-size: 300%;
    z-index: -1;
    animation: gradientMove 5s linear infinite;
}*/
@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
} 
.secondary-bg-row:nth-child(2) {
    animation-delay: 0.5s;
}
.secondary-bg-row:nth-child(4) {
    animation-delay: 1s;
}
.secondary-bg-row:nth-child(6) {
    animation-delay: 1.5s;
}
.secondary-bg-row:nth-child(8) {
    animation-delay: 2s;
}
.secondary-bg-row:nth-child(10) {
    animation-delay: 2.5s;
}
/*
.secondary-bg-row:nth-child(7) {
    animation-delay: 3s;
} */

.about-parts div {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    top: -1%;
    width: 100%;
    height: 100%;
    margin: 0px;
    z-index: 2;
    background-color: #373737;
}
.part-name{
    position: relative;
    padding: 15px;
    top: -30%;
}

.shutter-colors{
    display: flex;
    flex-direction: row;
    gap: 5px;
}
.circular-div{
    width: 30px;
    aspect-ratio: 1/1;
    border-radius: 15px;
    cursor: pointer;
    margin-bottom: 15px;
}

.product-nav{
    position: relative;
    width: 80%;
}
.nav-product{
    position: relative;
    height: 50px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: baseline;
    color: var(--primary-color);
    margin-left: 15px;
    /* border-bottom: 1px solid var(--primary-color); */
}
.nav-product img{
    width: 40%;
    scale: 1.2;
}
.not-available-box{
    width: 100%;
    height: 80%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.middel-footer-section{
    /* background-color: #4F9DA6; */
    display: flex;
    justify-content: center;
    align-items: center;
}
.contact-div{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    position: relative;
    width: 80%;
    height: 50px;
}
.contact-div img{
    position: relative;
    height: 60%;
}
.contact-div a{
    padding: 0px 6px;
    font-size: 18px;
}


@keyframes notify {
    0%{
        opacity: 0;
        top: -30px;
    }
    20%{
        top: 40px;
        opacity: 1;
    }
    50%{
        top: 40px;
        opacity: 1;
    }
    80%{
        top: 40px;
        opacity: 1;
    }
    100%{
        opacity: 0;
        top: -30px;
    }
}
.notification img{
    position: relative;
    width: 20%;
}
.contact-home{
    position: relative;
    height: 70vh;
    width: 100%;
    padding: 10% 15%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
}
.location{
    margin-left: 5%;
}
.contact-div-main{
    width: 50%;
}
.contact-main-header{
    position: relative;
    margin-top: 7%;
    width: 100%;
    height: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-main-header h2{
    color: #ffffff;
}
.contact-details{
    display: flex;
    flex-direction: row;
    width: 100%;
    position: relative;
    /* align-items: center; */
    justify-content: space-around;
}
.contact-details-space{
    width: 200px;
}

@media (max-width: 1500px) {
    .parts-content-area-box {
      grid-template-columns: repeat(2, 1fr); /* 2 columns for tablet */
      padding-left: 17%;
      gap: 20px;
    }
  }

@media (max-width: 1132px){
    .parts-content-area-box {
        grid-template-columns: repeat(2, 1fr); /* 2 columns for tablet */
        padding-left: 15%;
        gap: 20px 5px;
      }
    #home-products{
        margin-top: 15%;
    }
    .contact-home{
        position: relative;
        height: 70vh;
        width: 100%;
        padding: 0% 0%;
        display: flex;
        flex-direction: column;
    }
    .location{
        margin-left: 0%;
    }
    .location-link{
        width: 300px;
        height: 250px;
    }
    .contact-main-header{
        margin-top: 15%;
    }
    .contact-details div{
        width: 200px;
    }
    .contact-details{
        padding: 0px 5%;
    }
    .contact-div-main{
        width: 80%;
    }

}
@media (max-width: 987px){
    .parts-content-area-box {
        grid-template-columns: repeat(1, 1fr); /* 2 columns for tablet */
        padding-left: 30%;
        gap: 20px 5px;
      }
      #home-products{
        margin-top: 25%;
    }
}
@media (max-width: 825px){
    #home-products{
        margin-top: 30%;
    }
    .product-data{
        scale: 1.1;
        margin-left: 10%;
        margin-bottom: 5%;
    }
}
@media only screen and (max-width: 767px){
    .parts-content-area-box {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-left: 0%;
        gap: 15px;
        margin-top: 15%;
      }
    .product-data-box{
        scale: 0.9;
    }
    .navbar{
        display: none;
    }
    .navbar-mob{
        display: flex;
    }
    #home{
        flex-direction: column;
    }
    #about{
        height: auto;
    }
    #about h1{
        font-size: 32px;
    }
    .main-about{
        flex-direction: column-reverse;
        height: auto;
    }
    .M-V-text{
        margin: 0px;
        margin-top: 10px;
    }
    #about .triangle{
        top: 90.5vh;
    }
    .about-img{
        scale: 0.4;
    }
    .about-img-container{
        height: 40%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .home-content{
        height: 60%;
    }
    .triangle h2{
        font-size: 22px;
    }
    .two-buttons{
        width: 80%;
        gap: 5%;
    }
    .benefits{
        margin-top: 40px;
        margin-bottom: 10%;
    }
    #products{
        height: auto;
    }
    .contact-form{
        width: 80%;
    }
    /* .form-row{
        flex-direction: column;
        align-items: center;
    } */
    /* .form-row input{
        margin-bottom: 15px;
    } */
    label{
        margin-left: 8%;
    }
    .benefit-box{
        margin: 0px;
        width: 150px;
    }
    .benefit-box h2{
        font-size: 22px;
    }
    .middel-footer-section{
        display: none;
    }
    .footer-contact-socials{
        width: 66.6%;
    }
    .socials-area{
        scale: 0.5;
    }
    .product-data {
        top: 0%;
        margin-left: 0%;
        margin-bottom: 0%;
        scale: 0.9;
    }
    #home-products{
        min-height: 150vh;
        margin-top: 0%;
    }
    .side-bar{
        display: none;
    }
    .parts-content-area{
        left: 0%;
        gap: 20px;
    }
    .product-data:nth-child(1){
        margin-top: 20%;
    }
    .product-data-box:nth-child(1){
        margin-top: 20%;
    }
    .about-parts{
        display: none;
    }
    .object-img::before{
        transform: translate(-50%, -50%) scale(1.5);
        z-index: 3;
    }
    .object{
        width: 330px;
        height: 200px;
        flex-direction: row;
        padding: 0% 3%;
    }
    .object-content{
        position: relative;
        width: 50%;
        margin-left: 5%;
    }
    .object h2{
        color: var(--text-color);
    }
    .object button{
        scale: 0.75;
        background-color: transparent;
        border: solid 2px var(--text-color);
    }
}