.school-products-section{
    background:#066168;
    padding:40px 20px;
    border-radius: 25px;
}
.school-products-section .container-section{
  width: 1200px;
  margin: auto;
}
.school-products-section .container-section h2{
  color:#fff;
}
.school-products-section .container-section p{
  color:#fff;
}
.school-products-section .container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.product-card{
    background:#0A737B;
    border:1px solid rgba(255,255,255,0.15);
    border-radius:30px;
    overflow:hidden;
    transition:.4s ease;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.product-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.25);
}

.product-card a{
    display:block;
    text-decoration:none;
}

.product-image{
    padding:15px;
}

.product-image img{
    width:100%;
    height:300px;
    object-fit:cover;
    border-radius:25px;
    display:block;
}

.product-content{
    text-align:center;
    padding:0 15px 25px;
}

.product-content h3{
    color:#fff;
    font-size:22px;
    font-weight:700;
    margin:0 0 8px;
    line-height:1.3;
}

.product-content span{
    color:#fff;
    font-size:16px;
    opacity:.9;
}

.product-card:hover .product-content span{
    color:#f1f1f1;
}

/* Tablet */

@media(max-width:991px){

.school-products-section .container{
    grid-template-columns:repeat(2,1fr);
}

.product-image img{
    height:250px;
}

.product-content h3{
    font-size:22px;
}

}

/* Mobile */

@media(max-width:767px){

.school-products-section{
    padding:25px 15px;
}

.school-products-section .container{
    grid-template-columns:1fr;
    gap:15px;
}

.product-card{
    border-radius:20px;
}

.product-image{
    padding:12px;
}

.product-image img{
    height:220px;
    border-radius:18px;
}

.product-content{
    padding:0 12px 18px;
}

.product-content h3{
    font-size:24px;
}

.product-content span{
    font-size:14px;
}

}