*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.body{
    background-color: azure;
}
.header{
    height: 80px;
    width: 100%;
    color: white;
    background-color: black;
    align-items: center;
    align-content: center;
    display: flex;
    justify-content: center;
    gap: 10PX;
    position: fixed;
}
.logo{
    display: flex;
    border: 2px solid white;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 16%;
    background: white;
    color: rgb(0, 0, 0);
    height: 100%;
}
.logo span{
    font-size: 24px;
    font-weight: bolder;
}
.doc-fam{
    background-image: url(./assert/pm.jpg);
    background-size:cover;
    position: center;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
margin-top: 0px;
opacity: 225,225,225,225,0.9;
}
.doc-fam h1{
    font-size: 68px;
    font-weight: bolder;
    color: rgb(0, 0, 0);
}
.doc-fam p{
    font-size: 20px;
    width: 80%;
}
.glass, .lence {
    display: flex;
    align-items: center;
    gap: 32px;
    background: #000000;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin: 30px auto 20px auto;
    padding: 20px;
    max-width: 100%;
    align-items: center;
    justify-content: center;
    height: 400px;
    color: #ffffff;
}

.glass img, .lence img {
    width: 380px;
    height: 380px;
    object-fit: cover;
    border-radius: 10px;
}

.glass .text, .lence .text {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.glass .text h1, .lence .text h1 {
    font-size: 2rem;
    color: #d3caca;
    margin: 0;
}

.glass .text p, .lence .text p {
    font-size: 1.1rem;
    color: #444;
    margin: 0;
}

.glasses, .lences {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 40px;
}

.glasses .card, .lences .card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 280px;
    height: 280px;
}

.glasses .card img, .lences .card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

.glasses .card h1, .lences .card h1 {
    font-size: 1.2rem;
    color: #007bff;
    margin: 0;
}
@media (max-width:768px){
    .glass, .lence {
        height: auto;
        flex-direction: column;
    }
    .glasses, .lences{
        height: auto;
        flex-direction: column;
        align-items: center;
    }
    .logo{
    width:max-content;
}
}
