/* RESET */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    background:#f5f5f5;
    color:#333;
}

/* HERO */

.hero{
    height:500px;
    background:
    linear-gradient(
        rgba(0,0,0,0.5),
        rgba(0,0,0,0.5)
    ),
    url("images/top.png");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.hero-content{
    color:#fff;
}

.hero-content h1{
    font-size:3rem;
    margin-bottom:15px;
}

.hero-content p{
    font-size:1.2rem;
}
/* HERO LOGO */

.hero-logo{
    width:120px;
    height:120px;
    object-fit:contain;
    margin-bottom:20px;

    background:rgba(255,255,255,0.15);
    padding:10px;
    border-radius:50%;

    backdrop-filter:blur(5px);

    box-shadow:0 4px 15px rgba(0,0,0,0.3);
}

/* BUSINESS DESCRIPTION */

.business-description{
    width:90%;
    max-width:1200px;
    margin:60px auto;
    text-align:center;
}

.business-description h2{
    margin-bottom:20px;
}

.business-description p{
    line-height:1.8;
    margin-bottom:15px;
}

/* PRODUCTS */

.products{
    width:90%;
    max-width:1200px;
    margin:50px auto;
    display:flex;
    gap:25px;
}

.product-card{
    flex:1;
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 4px 12px rgba(0,0,0,0.1);
    transition:0.3s;
    display:flex;
    flex-direction:column;
}

.product-card:hover{
    transform:translateY(-5px);
}

/* IMAGE AREA */

.product-image{
    width:100%;
    height:250px;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#f8f8f8;
    padding:10px;
    cursor:pointer;
}

.product-image img{
    max-width:100%;
    max-height:100%;
    object-fit:contain;
    transition:0.3s;
}

.product-image:hover img{
    transform:scale(1.05);
}

/* CONTENT */

.card-content{
    padding:20px;
    flex:1;
    display:flex;
    flex-direction:column;
}

.card-content h3{
    margin-bottom:15px;
}

.card-content p{
    line-height:1.7;
    margin-bottom:15px;
    color:#555;
}

.card-content ul{
    list-style:disc;
    padding-left:20px;
    margin-bottom:20px;
}

.card-content ul li{
    margin-bottom:8px;
}

/* BUTTON */

.product-btn{
    margin-top:auto;
    text-align:center;
    text-decoration:none;
    background:#007bff;
    color:#fff;
    padding:12px;
    border-radius:5px;
    transition:0.3s;
}

.product-btn:hover{
    background:#0056b3;
}

/* FOOTER */

footer{
    background:#222;
    color:#fff;
    text-align:center;
    padding:50px 20px;
    margin-top:50px;
}

footer h2{
    margin-bottom:15px;
}

footer p{
    margin:8px 0;
}

/* IMAGE MODAL */

.modal{
    display:none;
    position:fixed;
    z-index:9999;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.9);
    justify-content:center;
    align-items:center;
}

.modal-content{
    max-width:90%;
    max-height:90%;
    animation:zoom .3s ease;
}

.close{
    position:absolute;
    top:20px;
    right:35px;
    color:white;
    font-size:45px;
    cursor:pointer;
}

@keyframes zoom{
    from{
        transform:scale(.5);
        opacity:0;
    }
    to{
        transform:scale(1);
        opacity:1;
    }
}

/* RESPONSIVE */

@media(max-width:768px){

    .hero{
        height:350px;
    }

    .hero-content h1{
        font-size:2rem;
    }

    .products{
        flex-direction:column;
    }
}

/* DROPDOWN */

.product-dropdown{
    position:relative;
    margin-top:auto;
}

.dropdown-btn{
    width:100%;
    border:none;
    cursor:pointer;
    font-size:16px;
}

/* Opens BELOW the button */
.dropdown-content{
    display:none;
    position:absolute;
    bottom:100%;
margin-bottom:5px;
    left:0;
    width:100%;
    background:#fff;
    border-radius:0 0 8px 8px;
    overflow:hidden;
    box-shadow:0 4px 12px rgba(0,0,0,0.15);
    z-index:100;
}

.dropdown-content a{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:12px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s ease;
}

/* WhatsApp */
.dropdown-content a:first-child{
    color:#25D366;
}

.dropdown-content a:first-child:hover{
    background:#25D366;
    color:#fff;
}

/* Phone */
.dropdown-content a:last-child{
    color:#007bff;
}

.dropdown-content a:last-child:hover{
    background:#007bff;
    color:#fff;
}

.dropdown-content i{
    font-size:18px;
}

.dropdown-content{
    display:none;
    position:absolute;
    bottom:100%;
margin-bottom:5px;
    left:0;
    width:100%;
    background:#fff;
    border-radius:0 0 8px 8px;
    overflow:hidden;
    box-shadow:0 4px 12px rgba(0,0,0,0.15);
    z-index:100;
    animation:dropdownFade .25s ease;
}

@keyframes dropdownFade{
    from{
        opacity:0;
        transform:translateY(-8px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}