@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700&display=swap');
body {
    margin: 0;
    font-family: 'Cairo', sans-serif;
    background: #f5f5f5;
    color: #222;
}
.navbar {
    background: white;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #ddd;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    padding: 10px 20px;
    background-color: ff7b29;
}
.logo {
    position: static;
    width: 80px;
    height: auto;
}
.logo img {
    width: 100%;
    height: auto;
    display: block;
}
.logo-and-text .logo {
    width: 70px;
    height: auto;
    position: static;
}
.logo-and-text .text {
    font-size: 40px;
    font-weight: 700;
}
.logo-and-text {
    display: flex; 
    align-items: center; 
    flex-direction: row-reverse; 
    gap: 15px; 
    margin-bottom: 25px; 
    direction: ltr;
}
.hero-logo {
    width: 150px; 
    height: auto;
    position: static;
}
.navbar a {
    margin-left: 15px;
    padding: 10px 20px;
    border-radius: 8px;
    background: #ff7b29;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 3px 6px rgba(0,0,0,0.2);
}
.navbar a:hover {
    background: #e96d1f;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.25);
}
.navbar a.active {
    background: #5170ff;
}
.hero {
    background: #ffffff;
    color: rgb(0, 0, 0);
    padding: 60px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.hero p {
    max-width: 700px;
    margin: auto;
}
.btn {
    padding: 12px 25px;
    border-radius: 6px;
    font-size: 16px;
    text-decoration: none;
    margin: 10px;
    display: inline-block;
}
.primary { background: #ff7b29; color: white; }
.secondary { background: #ff7b29; color: white; }
.features {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 40px;
}
.feature-box {
    width: 180px;
    text-align: center;
}
.feature-box img {
    width: 65px;
    height: 65px;
    object-fit: contain;
}
.products {
    padding: 50px 30px;
    text-align: center;
}
.product-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}
.product-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px #0001;
    text-align: center;
    transition: 0.3s ease;
    cursor: pointer;
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 18px #0003;
}
.product-card img {
    width: 100px;
    display: block;
    margin: auto;
    transition: 0.3s ease;
}
.product-card:hover img {
    transform: scale(1.12);
}
.buy-btn {
    margin-top: 10px;
    padding: 10px 20px;
    background: #ff7b29;
    color: white;
    border: none;
    border-radius: 6px;
    transition: 0.3s ease;
    font-size: 15px;
}
.product-card:hover .buy-btn {
    background: #e96d1f;
    transform: scale(1.08);
}
.about {
    padding: 60px 40px;
    background: white;
    text-align: center;
}
.contact {
    background: #5170ff;
    padding: 60px 30px;
    color: white;
    text-align: center;
}
.contact-form input,
.contact-form textarea {
    width: 60%;
    max-width: 600px;
    padding: 12px;
    margin: 10px auto;
    display: block;
    border-radius: 6px;
    border: none;
}
.send-btn {
    background: #ff7b29;
    padding: 12px 35px;
    border: none;
    border-radius: 6px;
    color: white;
    font-size: 18px;
}
.footer {
    background: #ff7b29;
    text-align: center;
    padding: 10px;
    color: white;
    font-weight: 700;
}