/* Featured Products Section */
.featured-products {
    background-image: linear-gradient(0deg, transparent 0%, transparent 58%,rgba(104, 104, 104,0.05) 58%, rgba(104, 104, 104,0.05) 92%,transparent 92%, transparent 100%),linear-gradient(45deg, transparent 0%, transparent 34%,rgba(104, 104, 104,0.05) 34%, rgba(104, 104, 104,0.05) 77%,transparent 77%, transparent 100%),linear-gradient(0deg, transparent 0%, transparent 33%,rgba(104, 104, 104,0.05) 33%, rgba(104, 104, 104,0.05) 53%,transparent 53%, transparent 100%),linear-gradient(90deg, rgb(255,255,255),rgb(255,255,255));text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #004771;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
}

.product-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
}

.product-img {
    width: 100%;
    max-width: 280px; /* Set a decent max width */
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
    display: block;
    margin: 0 auto; /* Center the image */
}

.product-img:hover {
    transform: scale(1.05); /* Slight zoom effect for a premium feel */
}


.product-info {
    margin-top: 15px;
}

.price {
    font-size: 1.2rem;
    color: #296d58;
    font-weight: bold;
}

.product-buttons {
    margin-top: 15px;
}

.product-buttons .btn {
    margin: 5px;
    padding: 12px 20px;
    border: none;
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
    transform: skewX(-15deg); /* Skew effect */
}

.product-buttons .btn span {
    display: inline-block;
    transform: skewX(15deg); /* Fix text alignment inside button */
}

.product-buttons .btn-primary {
    background-color: #004771;
    color: white;
}

.product-buttons .btn-outline-light {
    background-color: transparent;
    color: #004771;
    border: 2px solid #004771;
}

.product-buttons .btn-primary:hover {
    background-color: #002147;
    color: white;
    transform: skewX(-15deg) scale(1.05);
}

.product-buttons .btn-outline-light:hover {
    background-color: #004771;
    color: white;
    transform: skewX(-15deg) scale(1.05);
}


/* Carousel Controls */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #004771;
    border-radius: 50%;
    padding: 10px;
}