body{
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column; /* Stack header and content vertically */
    overflow-x: hidden;
    
    position: relative;
}

.menu-container{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 70px;
    padding: 0 20px;
    background-color: #f9f9f9;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.hamburger {
    width: 30px;
    height: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 10;
}
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white; /* Dark background */
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    transition: transform 0.5s ease-in-out;
    z-index: 9;
}

.fullscreen-menu ul {
    list-style: none;
    text-align: center;
    padding: 0;
}

.fullscreen-menu ul li {
    margin: 20px 0;
}

.fullscreen-menu ul li a {
    text-decoration: none;
    color: rgb(0, 0, 0);
    font-size: 3rem;
    transition: color 0.3s ease;
}

.fullscreen-menu ul li a:hover {
    text-decoration: underline;
    font-style: italic;
   
}

/* Hamburger Animation for Active State */
.hamburger.active .line:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}

.hamburger.active .line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .line:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
}

.fullscreen-menu.active {
    transform: translateY(0);
}
.hamburger .line {
    width: 100%;
    height: 3px;
    background-color: #000000;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

.header-logo{
    width: 100%;
    padding: 30px; /* Adjust padding to your preference */
    justify-content: center;
    position: sticky; /* Makes it sticky to the top */
    top: 0; /* Always stays at the top */
    text-align: center; /* Centers the logo in the header */
}

.center-container{
    display: flex;
    flex-direction: row; /* Keeps items in a row */
    justify-content: center; /* Centers horizontally */
    align-items: center; /* Centers vertically */
    position: absolute; /* Positions the container absolutely within the video */
    bottom: 50%; /* Centers the container vertically in the video */
    left: 50%; /* Centers the container horizontally in the video */
    transform: translate(-50%, -50%);
}

.center-container img{
    width: 20vw;
    height: auto;
    object-fit: contain;
}

.center-container .divider{
    font-size: 20px;
    font-weight: bold;
    color: white;
}

.second-container{
    position: relative;
    background-color: rgb(255, 255, 255);
    display: flex;
    justify-content: center; /* Ensures the content inside is centered */
    gap: 20px; /* Adds space between the images */
    align-items: center;
    height: 35vh;
    width: calc(100% - 60px);
    top: 90%;
    border-radius: 10px;
    overflow-x: hidden;
    overflow-y: auto;
    scrollbar-width: thin;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.background-video{
    position: absolute;
    top: 90px; /* Margin from the top */
    left: 30px; /* Margin from the left */
    right: 30px; /* Margin from the right */
    bottom: 30px; /* Margin from the bottom */
    width: calc(100% - 60px); /* Full width minus left and right margins */
    height: calc(100vh - 120px); /* Full height minus top and bottom margins */
    border-radius: 15px; /* Rounded corners */
    object-fit: cover; /* Ensures proper scaling while filling the space */
    z-index: -1; /* Keeps the video behind other content */
}
.center-container{
    display: flex;
    align-items: center;
    justify-content: center; /* Centers content horizontally */
    gap: 20px;
    margin-top: 525px;
    z-index: 2;
}

.center-container img{
    width: 15vw;
    height: auto;
    object-fit: contain;
}

.center-container .divider{
    font-size: 20px;
    font-weight: bold;
    color: white;
}
.down-arrow {
    position: absolute;
    bottom: 30%; /* Distance from the bottom of the screen */
    left: 50%;
    transform: translateX(-50%);
    width: 75px;
    height: 75px;
    border-left: 10px solid rgb(255, 255, 255); /* Arrow color */
    border-top: 10px solid rgb(255, 255, 255); /* Arrow color */
    border-radius: 10px;
    transform: rotate(45deg); /* Rotate to make it a down arrow */
    animation: bounce 1s infinite; /* Add bounce animation */
    z-index: 5;
}
.second-container{
    position: relative;
    background-color: rgb(255, 255, 255);
    display: flex;
    justify-content: center; /* Ensures the content inside is centered */
    gap: 20px; /* Adds space between the images */
    align-items: center;
    height: 35vh;
    width: calc(100% - 60px);
    margin: 0 auto;
    margin-top: 50px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}
.second-container::-webkit-scrollbar {
    height: 8px; /* Height of the horizontal scrollbar */
}

.second-container::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.4); /* Scrollbar color */
    border-radius: 5px; /* Rounded corners for scrollbar */
}

.second-container img {
    width: 30vw; /* Adjust the width as per your design */
    height: auto;
    object-fit: contain;
}
.hoodie-back{
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4); /* Optional: for a subtle shadow effect */
    
}
.hoodie-back img{
    width: 90%;
    height: auto;
    object-fit: contain;
    z-index: 2;
    transition: opacity 0.3s ease;
}
.hoodie-video{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover; /* Ensure video fills the box */
    opacity: 0; /* Hide video initially */
    z-index: 1; /* Place video behind the image initially */
    transition: opacity 0.3s ease; /* Smooth fade-in for video */
}
.hoodie-back:hover .hoodie-video {
    opacity: 1; /* Show video on hover */
}
.hoodie-back:hover img {
    opacity: 0.5; /* Fade image to make video more visible */
}
.heavy-back{
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4); /* Optional: for a subtle shadow effect */
    
}
.heavy-back img{
    width: 90%;
    height: auto;
    object-fit: contain;
    z-index: 2;
    transition: opacity 0.3s ease;
}
.mens-video{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover; /* Ensure video fills the box */
    opacity: 0; /* Hide video initially */
    z-index: 1; /* Place video behind the image initially */
    transition: opacity 0.3s ease; /* Smooth fade-in for video */
}
.heavy-back:hover .mens-video {
    opacity: 1; /* Show video on hover */
}
.heavy-back:hover img {
    opacity: 0.5; /* Fade image to make video more visible */
}

.tees-back{
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4); /* Optional: for a subtle shadow effect */
    
}
.tees-back img{
    width: 90%;
    height: auto;
    object-fit: contain;
    z-index: 2;
    transition: opacity 0.3s ease;
}
.tees-video{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover; /* Ensure video fills the box */
    opacity: 0; /* Hide video initially */
    z-index: 1; /* Place video behind the image initially */
    transition: opacity 0.3s ease; /* Smooth fade-in for video */
}
.tees-back:hover .tees-video {
    opacity: 1; /* Show video on hover */
}
.tees-back:hover img {
    opacity: 0.5; /* Fade image to make video more visible */
}

.jewlery-back{
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4); /* Optional: for a subtle shadow effect */
    
}
.jewlery-back img{
    width: 90%;
    height: auto;
    object-fit: contain;
    z-index: 2;
    transition: opacity 0.3s ease;
}
.jewlery-video{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover; /* Ensure video fills the box */
    opacity: 0; /* Hide video initially */
    z-index: 1; /* Place video behind the image initially */
    transition: opacity 0.3s ease; /* Smooth fade-in for video */
}
.jewlery-back:hover .jewlery-video {
    opacity: 1; /* Show video on hover */
}
.jewlery-back:hover img {
    opacity: 0.5; /* Fade image to make video more visible */
}

.tanks-back{
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4); /* Optional: for a subtle shadow effect */
    
}
.tanks-back img{
    width: 90%;
    height: auto;
    object-fit: contain;
    z-index: 2;
    transition: opacity 0.3s ease;
}
.tanks-video{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover; /* Ensure video fills the box */
    opacity: 0; /* Hide video initially */
    z-index: 1; /* Place video behind the image initially */
    transition: opacity 0.3s ease; /* Smooth fade-in for video */
}
.tanks-back:hover .tanks-video {
    opacity: 1; /* Show video on hover */
}
.tanks-back:hover img {
    opacity: 0.5; /* Fade image to make video more visible */
}

.third-container{
    display: flex;
    position: relative;
    flex-direction: row;
    padding: 30px 20px;
    justify-content: center;
    align-items: center;
    top: 90%;
    overflow: hidden;
    
   

}
.third-container img{
    width: 400px;
    min-width: 200px;
    height: 850px;
    border-radius: 15px;
    margin: 10px;
    overflow: hidden;
    transition: ease-out .4s;
    box-shadow: 0px 9px 21px rgba(0, 0, 0, .2)

}

.third-container img:hover{
    height: 850px;
    width: 800px;
    transition: ease-in .3s;
}

.footer{
    display: flex;
    flex-direction: row;
    position: relative;
    padding: 20px 10px;
    top: 100%;
    width: 100%;
    background-color: rgb(242, 242, 242);
    color: black;
    
}

.footer img{
    justify-content: center;
    align-items: center;
    width: 300px;
    padding: 50px 450px;
    height: fit-content;
}

.re{
    
}
.pptos{
    text-align: right;
}


/* Resize Arrow Responsively */
@media (max-width: 768px) {
    .down-arrow {
        width: 25px;
        height: 25px;
    }

    .center-container img {
        width: 25vw; /* Increase size for smaller screens */
    }

    .second-container {
        flex-direction: column; /* Stack items vertically */
        align-items: center; 
        gap: 20px; /* Space between items */
        height: 75vh; /* Limit the height */
        overflow-y: auto; /* Enable vertical scrolling */
        overflow-x: hidden; /* Prevent horizontal scrolling */
        padding: 10px; /* Add padding for better touch interaction */
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    }

    .second-container img {
        width: 80%; /* Adjust width for smaller screens */
        height: auto;
        object-fit: contain;
    }
    .jewelry-back, .tank-back {
        /* Apply scrollable styling to these specific sections */
        display: flex;
        flex-direction: column;
        gap: 15px;
        max-height: 60vh; /* Set max height for vertical scrolling */
        overflow-y: auto;
    }
}

@media (max-width: 480px) {
    .down-arrow {
        width: 20px;
        height: 20px;
    }

    .center-container img {
        width: 35vw; /* Further increase size for very small screens */
    }

    .second-container {
        height: 70vh; /* More space for smaller screens */
    }

    .second-container img {
        width: 60vw; /* Adjust image size further */
    }
}

.jewlery-back {
    display: none; /* Default: hidden on all screens */
}
.tanks-back{
    display: none;
}

@media (min-width: 1440px) {
    /* Show only on very large screens */
    .jewlery-back {
        display: flex;
        position: relative;
        width: 300px;
        height: 300px;
        justify-content: center;
        align-items: center;
        border-radius: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4); /* Optional: subtle shadow effect */
    }
    .jewlery-back img {
        width: 90%;
        height: auto;
        object-fit: contain;
        z-index: 2;
        transition: opacity 0.3s ease;
    }
    .jewlery-video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 20px;
        object-fit: cover; /* Ensure video fills the box */
        opacity: 0; /* Hide video initially */
        z-index: 1; /* Place video behind the image initially */
        transition: opacity 0.3s ease; /* Smooth fade-in for video */
    }
    .jewlery-back:hover .jewlery-video {
        opacity: 1; /* Show video on hover */
    }
    .jewlery-back:hover img {
        opacity: 0.5; /* Fade image to make video more visible */
    }


.tanks-back {
    display: flex;
    position: relative;
    width: 300px;
    height: 300px;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4); /* Optional: subtle shadow effect */
}
.tanks-back img {
    width: 90%;
    height: auto;
    object-fit: contain;
    z-index: 2;
    transition: opacity 0.3s ease;
}
.tanks-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover; /* Ensure video fills the box */
    opacity: 0; /* Hide video initially */
    z-index: 1; /* Place video behind the image initially */
    transition: opacity 0.3s ease; /* Smooth fade-in for video */
}
.tanks-back:hover .tanks-video {
    opacity: 1; /* Show video on hover */
}
.tanks-back:hover img {
    opacity: 0.5; /* Fade image to make video more visible */
}
}


/* Animation for Bouncing */
@keyframes bounce {
    0% {
        transform: translateX(-50%) translateY(0) rotate(45deg);
    }
    50% {
        transform: translateX(-50%) translateY(10px) rotate(45deg);
    }
    100% {
        transform: translateX(-50%) translateY(0) rotate(45deg);
    }
}





