body {
    margin: 0;
    font-family: Arial;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    background: #0a3d62;
    color: white;
}

.menu-bar {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    background: #232f3e;
    color: white;
    padding: 10px;
    font-size: 14px;
}

.menu-bar div {
    cursor: pointer;
}

.logo {
    width: 90px
}

.logo img {
    width: 60px;
    height: auto;
    display: block;
}

.location {
    margin-left: 15px;
    color: white;
    font-size: 20px;
    cursor: pointer;
}

.search-bar input {
    flex: 1;
    height: 45px;
    display: flex;
    padding: 10px;
    width: 100%;
    border: none;
    outline: none;
    flex: 1;
}

.nav-search {
    display: flex;
    background: papayawhip;
    width: 750px;
    height: 60px;
}

.search-icon {
    width: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sub-header {
    display: flex;
    flex: 1;
    gap: 20px;
    background: #232f3e;
    color: white;
    padding: 10px;
}

.user,.home,.language,.cart {
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
}


.video-section {
    background: #f3f3f3;
    padding: 40px 20px;
    text-align: center;
}

.video-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.video-box {
    max-width: 100%;
    margin: auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.video-box video {
    width: 100%;
    height: auto;
    display: block;
}

@media(max-width: 600px) {
    .video-section h2 {
        font-size: 20px;
    }
}


.product {
    padding: 40px;
    justify-content: space-between;
    text-align: center;
    background: #f5f5f5;
}

.product-box h2{
    margin-bottom: 20px;
}

.product-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.product-box {
    width: 200px;
    justify-content: space-between;
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba (pink);
    transition: 0.3s;
}

.product-box :hover {
    transform: scale(1.05);
}

.product-box img {
    width: 100%;
    justify-content: space-between;
    height: 300px;
    object-fit: cover;
}

.product-box h3 {
    margin-top: 10px;
}


.certificate-section {
    text-align: center;
    padding: 50px;
    background: #f3f3f3;
}

.certificate-container {
    display: flex;
    justify-content:space-between;
    align-items: center;
}

.certificate-img {
    width: 250px;
    cursor: pointer;
}


.banner {
    position: relative;
}

.banner img {
    width: 100%;
    height: 100%px;
    object-fit: cover;
}

.banner-text h1 {
    font-size: 40px;
    margin: 0;
}

.banner-text button {
    margin-top: 10px;
    padding: 10px 20px;
    background: orange;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

