/* BASE */
.storage-section {
 
}

/* ALTERNATING BACKGROUNDS */
.section-light {
    background: #ffffff;
}

.section-dark {
    background: #f4f7fb;
}

/* HEADER */

.section-title h3 {
    font-size: 28px;
    font-weight: 700;
}

/* PRODUCT GRID */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.silos .product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.product-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.product-card:hover {
    transform: translateY(-6px);
}

.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.product-card .content {
    padding: 18px;
}

.product-card h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.product-card p {
    font-size: 14px;
    color: #666;
}

/* FEATURES */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-item {
    background: #fff;
    padding: 25px;
    border-radius: 12px; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.feature-item i {
    font-size: 26px; 
    margin-bottom: 10px;
}

/* APPLICATIONS */
.app-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.app-grid span {
    background: #fff;
    padding: 10px 16px;
    border-radius: 25px;
    font-size: 14px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.06);
}

/* CTA */
.cta-box {
    background: linear-gradient(135deg, #0d6efd, #1e3a8a);
    color: #fff;
    text-align: center;
    padding: 60px 25px;
    border-radius: 16px;
}

.cta-box h3 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #FFF;
}

.cta-box p {
    color: #e5e7eb;
    margin-bottom: 20px;
}

.cta-box .btn {
    background: #fff;
    color: #0d6efd;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .product-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .storage-section {
        padding: 50px 15px;
    }

    .section-header h2 {
        font-size: 28px;
    }
}
/* product page css */

.industry-section {
    padding: 80px;
}

.bg-white {
    background: #ffffff;
}

.bg-light-green {
    background: #f4faf6;
}

.bg-light-blue {
    background: #f5f9fd;
}

.industry-content {}

.sub-title {
    display: inline-block;
    background: #005387;
    color: #fff;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.industry-content h2 {
    font-size: 36px;
    color: #004a14;
    margin-bottom: 15px;
}

.industry-content p {
    font-size: 17px;
    color: #000;
    margin-bottom: 15px;
}

.feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.feature-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 14px;
    font-weight: 500;
}

.feature-list li::before {
    content: "\f058"; /* fa-circle-check */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0px;
    color: var(--primary); /* #004a14 */
    font-size: 18px;
}

.industry-img {
    width: 100%; 
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .15);
    transition: .4s;
}
.industry-content h4 {
    color: #005387;
}
.industry-img:hover {
    transform: scale(1.03);
}
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 25px;
}

.feature-item {
    background: #fff;
    border: 1px solid var(--border);
    border-left: 4px solid var(--primary);
    padding: 16px 20px;
    border-radius: 10px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
}
@media(max-width:991px) {
    .industry-section {
        padding: 50px 0;
    }

    .industry-content h2 {
        font-size: 28px;
    }

    .industry-img {
        height: 320px;
    }
}

@media(max-width:576px) {
    .industry-section {
        padding: 30px 0;
    }

    .industry-content h2 {
        font-size: 24px;
    }

    .industry-img {
        height: 240px;
    }

    .sub-title {
        font-size: 12px;
    }
}