/*
    Theme Name: FullTimeForce Theme
    Theme URI:
    Description: Custom Theme
    Author: FullTimeForce
    Version: 1.0
    License: GNU General Public License v2 or Later
    Tags: Wordpress
*/
/* Grid layout for products */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); /* Creates a responsive grid */
    gap: 20px; /* Adds space between the items */
    margin-top: 20px;
}

.product-item {
    background: #fff;
    border: 1px solid #ddd;
    padding: 15px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.product-item:hover {
    transform: translateY(-5px); /* Adds a hover effect */
}

.product-thumbnail {
    margin-bottom: 15px;
}

.product-title {
    font-size: 18px;
    margin-bottom: 10px;
}

.price {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

/* Pagination styles */
.pagination {
    margin-top: 20px;
    text-align: center;
}

.pagination a {
    padding: 10px 15px;
    margin: 0 5px;
    text-decoration: none;
    background-color: #f1f1f1;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.pagination a:hover {
    background-color: #0073e6;
    color: white;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.about-company img{
    aspect-ratio: 16 / 11;
    object-fit: cover;
    object-position: center;
}
.video-slider {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    scroll-snap-type: x mandatory;
    padding: 20px;
}

.video-slide {
    flex: 0 0 80%;
    scroll-snap-align: center;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
