html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background: #001833;
}

.top-section {
    position: relative;
    height: 50vh;
    overflow: hidden;
    background: none;
}

.overlay-content {
    position: relative;
    z-index: 1;
    color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
}

#bg-video {
    position: absolute;
    top: -80%;
    left: 0;
    width: 100%;
    height: 190%;
    object-fit: cover;
    z-index: 0;
}

.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2vw;
    padding: 2rem;
}

#buttons{
    display:flex;
    gap:1vw;
}   

button{
    margin-top: 2vh;
    padding: 1vh 2vw;
    font-size: 2vw;
    color: #FFFFFF; /*dark blue*/
    border-radius: 40px;
    cursor: pointer;
    background-color: transparent;
    margin-left: 2vw;

}
h2{
    font-size: 2vw;
    color: white;
    margin: 0;
}
p{
    font-size: 1.5vw;
    color: white;
    margin: 0;
}
.page-title {
    font-size: 6vw;
    font-weight: 900;
    letter-spacing: 3px;
    margin: 0;
    line-height: 1.1;
}

.content-left {
    flex: 1;
    text-align: right;
}

.content-right {
    flex: 1;
    text-align: left;
    max-width: 40vw;
}

.page-subtitle {
    font-size: 3vw;
    font-weight: 600;
    color: #ccc;
    margin-bottom: 1rem;
}

.page-description {
    font-size: 1.5vw;
    color: #ccc;
    line-height: 1.6;
    max-width: 30vw;
}

.bottom-section {
    height: 50vh;
    background-color: #001833;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.card-container {
    z-index: 2;
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2vw;
    flex-wrap: nowrap;
    overflow: hidden;
}

nav {
    position: fixed;
    top: 0;
    right: 0;
    padding: 20px;
    z-index: 100;
}

.navbar {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

.navbar a {
    text-decoration: none;
    color: white;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.navbar a:hover {
    color: #c0e5ff;
}



.custom-card {
    width: 25vw;
    height: 35vh;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    border: 2px solid rgba(255,255,255,0.2);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #000;
}

.custom-card .card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;


    position: absolute;
    top: 0;
    left: 0;
    border-radius: inherit;
}

.custom-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}


.custom-card .card-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: white;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0));
    border-radius: inherit;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1rem;
    transition: all 0.3s ease;
}



.card-hover-text {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.productImages{
    width: 10%;
    height: 10%;
}
.product{
    display: flex;
    flex-direction: row;
    gap: 1vw;
    align-items: center;
    justify-content: center;
    margin-bottom: 1vh;
    margin-left:20vw;
}

.custom-card:hover .card-hover-text {
    opacity: 1;
    transform: translateY(0);
}
 @media (max-width: 768px) {
.content {
padding-top: 40vw;

}
.page-title {
    font-size: 7vw;
    font-weight: 900;
    letter-spacing: 3px;
    margin: 0;
    line-height: 1.1;
}
.page-subtitle {
    font-size: 4vw;
    font-weight: 600;
    color: #ccc;
    margin-bottom: 1rem;
}

.page-description {
    font-size: 3vw;
    color: #ccc;
    line-height: 1.6;
    max-width: 30vw;
}
.card-container {
    z-index: 2;
    width: 90%;
    display: flex;
    justify-content: center;
    flex-direction: column  ;
    align-items: center;
    gap: 2vw;
    flex-wrap: nowrap;
    overflow: hidden;
}
.custom-card {
    width: 80vw;
    height: 35vh;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    border: 2px solid rgba(255,255,255,0.2);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #000;
}
}
