body {font-family: Tahoma, sans-serif;margin: 0;background: #f9fafb;color: #333;}
.header {background: red;
    display: flex;justify-content: space-between;align-items: center;padding: 1rem 2rem;box-shadow: 0 2px 5px rgb(255, 255, 255);flex-wrap: wrap;}
.logo {display: flex;align-items: center;gap: 0.8rem;}
.logo-icon {width: 40px;height: 40px;background: red;color: white;display: flex;justify-content: center;align-items: center;border-radius: 50%;font-weight: bold;}
.nav a,.nav button{margin:.5rem;text-decoration:none;color: #ffffff;border:none;background:none;cursor:pointer}
.nav a.active{font-weight:bold;border-bottom:2px solid #ff0000
}
.logo-text{color: #ffffff;}
.nav button {padding: 0.3rem 0.6rem;border: 1px solid #aaa;border-radius: 5px;}
.container {max-width: 1000px;margin: auto;padding: 2rem;}
.image-placeholder img{background: #e5e7eb;color: #666;display: flex;justify-content: center;align-items: center;height: 200px;border-radius: 10px;}
.btn{background: #ff0000;color:#fff;padding:.5rem 1rem;border:none;border-radius:5px;margin-top:.8rem;cursor:pointer}
footer{margin-top:28px;padding:18px 24px;background:#0f172a;color:white;border-top-left-radius:14px;border-top-right-radius:14px;text-align: center}
.footer-grid{max-width:1100px;margin:0 auto;display:flex;gap:18px;align-items:start;justify-content:space-between;padding:6px 20px}
.circle {width : 150px;
        height: 150px;
        border-radius: 50%;
        overflow: hidden;}
.circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.products-grid {display: grid;grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));gap: 1.5rem;}
.product {background: white;border-radius: 10px;padding: 1rem;box-shadow: 0 2px 4px rgba(0,0,0,0.1);}
.contact-grid {display: grid;grid-template-columns: 1fr 1fr;gap: 2rem;}
@media(max-width: 700px){.contact-grid {grid-template-columns: 1fr;}}
form input, form textarea {width: 100%;margin-bottom: 1rem;padding: 0.6rem;border-radius: 5px;border: 1px solid #ccc;}


@media (max-width: 600px) {
    .header-wrapper {
        flex-direction: column;
    }

    .custom-footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-section {
        margin: 10px 0;
    }
}



.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: center;
}
.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid #fff;
    border-radius: 8px;
    transition: all 0.3s ease;
    color: #fff;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    border-color: var(--secondary-color);
}
.modal{display:none;position:fixed;inset:0;background:rgba(0,0,0,.6);display:flex;align-items:center;justify-content:center}
.modal-content{background:#fff;padding:2rem;border-radius:10px;max-width:400px;width:90%;position:relative}
.close{position:absolute;top:10px;right:15px;font-size:22px;cursor:pointer}
.stats{display:flex;justify-content:center;gap:3rem;padding:3rem 1rem;background:#fff}
.stats div{text-align:center}
.stats strong{font-size:2rem;color: #FF0000
}