 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
}



/* Hero Section */
.hero {
    background: linear-gradient(rgba(1, 32, 53, 0.8), rgba(1, 32, 53, 0.7)),
        url('../pictures/about-image.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--text-light);
    padding: 5rem 3rem 0;
}


.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero p {
    font-size: 1.2rem;
    padding-left: 5rem;
    padding-right: 5rem;
}


@media (max-width:768px) {
    .hero {
        padding: 5rem 2rem 0;
    }

    .hero p {
        padding-left: 0rem;
        padding-right: 0rem
    }
}

/* Products Section */
.products {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: #012035;
    margin-bottom: 15px;
}

.section-title p {
    color: #1a1a1a;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 600;
}

.product-filters {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    margin: 10px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: #FF6404;
    color: white;
    border-color: #FF6404;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    max-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    margin: 0 auto;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.product-image {
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 20px;
    background-color: #012035;
}

.product-category {
    display: inline-block;
    color: #FF6404;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.product-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #FF6404;
}

.product-description {
    color: #f1f1f1;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

/* 
.product-price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #012035;
    margin-bottom: 15px;
} */
/* 
.add-to-cart {
    display: block;
    width: 100%;
    padding: 12px;
    background: #FF6404;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
}

.add-to-cart:hover {
    background: #e55b00;
} *