*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Segoe UI,sans-serif;
}

body{
background:#0f0f0f;
color:white;
overflow-x:hidden;
}

header{
height:80px;
background:#111827;

display:flex;
justify-content:space-between;
align-items:center;

padding:0 8%;

position:fixed;
top:0;
left:0;
width:100%;

box-shadow:0 2px 10px rgba(0,0,0,0.4);
}

.logo{
font-size:30px;
font-weight:bold;
color:#4da6ff;
}

nav a{
color:white;
text-decoration:none;
margin-left:25px;
font-weight:600;
transition:0.3s;
}

nav a:hover{
color:#4da6ff;
}

.hero{
    height:calc(100vh - 80px);

    background-image:url("images/1.jpg");
    padding-top:280px;

    background-repeat:no-repeat;

    background-size:90%;
    background-position:center top;
    padding-top:280px;
    display:flex;
    justify-content:center;
    align-items:flex-start;

    }
.hero-content{
    position:absolute;

    left:50%;
    bottom:12%;

    transform:translateX(-50%);

    width:min(90%, 850px);

    background:rgba(0,0,0,0.55);

    backdrop-filter:blur(8px);

    padding:30px 50px;

    border-radius:25px;

    text-align:center;

    animation:fadeUp 1.2s ease-out;
}

.hero-content h1{
    font-size:32px;
    line-height:1.05;

    animation:zoomIn 1.5s ease;
}

.hero-content p{
font-size:18px;
margin-bottom:25px;
}

.btn{
padding:14px 30px;
background:#1565c0;
color:white;
text-decoration:none;
border-radius:8px;
}

.showcase{
padding:100px 10%;
text-align:center;
}

.showcase h2{
font-size:40px;
margin-bottom:40px;
}

.slider-container{
max-width:900px;
margin:auto;
}

.slider-container img{
width:100%;
height:600px;
object-fit:cover;
border-radius:15px;
box-shadow:0 5px 25px rgba(0,0,0,0.2);
transition:0.5s;
}

.about-preview{
margin-top:-100px;
padding:80px 10%;
text-align:center;
}

.page{
padding:140px 10%;
}

.pdf-page{
padding:140px 3%;
}
.page-title{
    margin-left:35px;
    margin-bottom:30px;

    font-size:40px;
    font-weight:700;
}

footer{
background:#0d47a1;
color:white;
text-align:center;
padding:25px;
margin-top:50px;
}

@keyframes fadeIn{

from{
opacity:0;
transform:translateY(30px);
}

to{
opacity:1;
transform:translateY(0);
}

}
@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateX(-50%) translateY(50px);
    }

    to{
        opacity:1;
        transform:translateX(-50%) translateY(0);
    }
}
footer{
    background:#0d47a1;
    color:white;

    text-align:center;

    padding:30px 20px;
}

footer p{
    margin:10px 0;
    font-size:18px;
}

.whatsapp-btn{

    display:inline-block;

    margin-top:15px;

    padding:12px 25px;

    background:#25D366;

    color:white;

    text-decoration:none;

    border-radius:50px;

    font-weight:bold;

    transition:0.3s;
}

.whatsapp-btn:hover{

    transform:translateY(-3px);

    box-shadow:0 0 20px #25D366;
}
.floating-whatsapp{

    position:fixed;

    bottom:25px;
    right:25px;

    width:65px;
    height:65px;

    background:#25D366;
    color:white;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:34px;

    text-decoration:none;

    box-shadow:0 5px 20px rgba(37,211,102,0.4);

    transition:0.3s ease;

    z-index:999;
}

.floating-whatsapp:hover{

    transform:scale(1.1);

    box-shadow:0 8px 25px rgba(37,211,102,0.6);
}

.about-container{

    display:flex;

    gap:40px;

    align-items:center;

    margin-top:40px;

    flex-wrap:wrap;
}

.about-shop{

    width:400px;

    border-radius:20px;

    box-shadow:0 0 25px rgba(255,255,255,0.1);
}

.about-text{

    flex:1;

    min-width:300px;

    line-height:1.8;

    font-size:18px;

    color:#d1d5db;
}
.highlights{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:15px;

    margin-top:30px;
}

.highlights div{

    background:#111827;

    padding:15px;

    border-radius:12px;

    border-left:4px solid #2563eb;

    transition:all 0.3s ease;

    cursor:pointer;
}
.highlights div:hover{

    transform:translateY(-5px) scale(1.03);

    background:#1e293b;

    box-shadow:
    0 0 20px rgba(37,99,235,0.4);

    color:#ffffff;
}
.highlights div{

    position:relative;

    overflow:hidden;
}
.highlights div::before{

    content:"";

    position:absolute;

    top:0;
    left:-100%;

    width:100%;
    height:100%;

    background:
    linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.1),
        transparent
    );

    transition:0.5s;
}

.highlights div:hover::before{
    left:100%;
}
.contact-page{

    display:flex;

    gap:30px;

    justify-content:space-between;

    align-items:flex-start;

    padding:70px 8%;

    flex-wrap:wrap;
}

.contact-info{

    flex:1;

    min-width:350px;
}
.contact-info h1{

    font-size:50px;

    margin-bottom:30px;
}

.contact-info p{

    font-size:22px;

    margin-bottom:20px;

    line-height:1.8;
}
.contact-map{

    flex:1.3;
    margin-top:40px;
    min-width:500px;
}

.contact-map iframe{

    width:100%;

    height:500px;

    border:none;

    border-radius:20px;

    box-shadow:
    0 0 25px rgba(255,255,255,0.1);
}
.contact-buttons{

    margin-top:30px;

    display:flex;

    gap:15px;

    flex-wrap:wrap;
}
.contact-whatsapp{

    background:#25D366;

    color:white;

    text-decoration:none;

    padding:14px 28px;

    border-radius:50px;

    font-weight:bold;

    transition:0.3s;
}

.contact-whatsapp:hover{

    transform:translateY(-4px);

    box-shadow:0 0 20px #25D366;
}
.location-btn{

    background:#ef4444;

    color:white;

    text-decoration:none;

    padding:14px 28px;

    border-radius:50px;

    font-weight:bold;

    transition:0.3s;
}

.location-btn:hover{

    transform:translateY(-4px);

    box-shadow:0 0 20px rgba(239,68,68,.5);
}
.business-hours{

    margin-top:30px;

    padding:20px;

    background:#111827;

    border-radius:15px;

    border-left:4px solid #2563eb;

    transition:0.3s;
}

.business-hours:hover{

    transform:translateY(-5px);

    box-shadow:0 8px 20px rgba(37,99,235,0.3);
}

.business-hours h3{

    margin-bottom:15px;

    color:#60a5fa;
}

.business-hours p{

    margin:8px 0;

    color:#d1d5db;
}
@media (max-width:768px){

    /* HEADER */
    header{
        padding:0 15px;
        height:70px;
    }

    .logo{
        font-size:18px;
    }

    nav a{
        margin-left:10px;
        font-size:11px;
    }

    /* HERO IMAGE */
    .hero-img{
        width:100%;
        display:block;
    }

    .hero-content{
        width:90%;
        max-width:320px;

        left:50%;
        bottom:5%;

        padding:18px 20px;

        border-radius:18px;
    }

    .hero-content h1{
        font-size:24px;
        line-height:1.2;
    }

    .hero-content p{
        font-size:13px;
        line-height:1.5;
    }

    .btn{
        padding:10px 18px;
        font-size:12px;
    }

    /* PRODUCT SHOWCASE */
    .showcase{
        padding:50px 15px;
    }

    .showcase h2{
        font-size:28px;
        margin-bottom:20px;
        line-height:1.3;
    }

    .slider-container{
        width:100%;
    }

    .slider-container img{
    width:100%;
    height:350px;
    object-fit:contain;
    background:#000;
}

    /* HOME PAGE HIGHLIGHTS */
@media (max-width:768px){

    .about-preview{
    margin-top:-30px !important;
    padding:50px 15px !important;
}

.about-preview h2{
    font-size:28px;
    margin-bottom:25px;
}

}

    .highlights{
        grid-template-columns:1fr;
        gap:12px;
    }

    /* ABOUT PAGE */
    .page{
        padding:100px 20px;
    }

    .about-container{
        flex-direction:column;
        text-align:center;
    }

    .about-shop{
        width:100%;
        max-width:320px;
        margin:auto;
    }

    .about-text{
        min-width:auto;
        font-size:16px;
    }

    .business-hours{
        text-align:center;
    }

    /* PRODUCTS PAGE */
    .page-title{
        margin-left:0;
        text-align:center;
        font-size:30px;
    }

    .pdf-page{
        padding:100px 15px;
    }

    .pdf-page iframe{
        height:75vh;
    }

    /* CONTACT PAGE */
    .contact-page{
        flex-direction:column;
        padding:90px 15px 30px;
        gap:25px;
    }
 .pdf-note{
    text-align:center;
    color:white;
    font-size:18px;
    margin-bottom:20px;
}

.pdf-btn{
    display:inline-block;
    background:#2563eb;
    color:white;
    padding:15px 25px;
    border-radius:10px;
    text-decoration:none;
    font-weight:bold;
    margin:15px auto 25px;
    transition:0.3s;
}

.pdf-btn:hover{
    background:#1d4ed8;
    transform:translateY(-2px);
}
    .contact-info{
        min-width:auto;
        width:100%;
        text-align:center;
    }

    .contact-info h1{
        font-size:36px;
    }

    .contact-info p{
        font-size:18px;
    }

    .contact-buttons{
        flex-direction:column;
        align-items:center;
        gap:12px;
    }

    .contact-buttons a{
        width:220px;
        text-align:center;
    }

    .contact-map{
        min-width:auto;
        width:100%;
        margin-top:0;
    }

    .contact-map iframe{
        width:100%;
        height:320px;
    }

    /* FOOTER */
    footer{
        padding:20px 15px;
        text-align:center;
    }

    footer p{
        font-size:15px;
        line-height:1.6;
    }

    .whatsapp-btn{
        width:220px;
        text-align:center;
    }

    /* FLOATING WHATSAPP */
     .floating-whatsapp{
    width:55px;
    height:55px;
    font-size:28px;
    bottom:15px;
    right:15px;
}
    .hero-content{
    position:relative;
    left:auto;
    bottom:auto;
    transform:none;

    width:90%;
    margin:20px auto 40px;
}
}
@media (max-width:768px){

    .hero-content{
        animation:none !important;
        transform:none !important;
    }

}
.pdf-btn{
    display:inline-block;
    background:#2563eb;
    color:white !important;
    padding:15px 25px;
    border-radius:10px;
    text-decoration:none;
    font-weight:bold;
    margin:15px auto;
}

.pdf-btn:hover{
    background:#1d4ed8;
}