.large-popup {
    font-family: Arial, sans-serif; 
    border-radius: 10px; 
    padding: 20px; 
}
.custom-confirm-button {
    background-color: #244568;
    color: white; 
    border: none; 
    padding: 10px 20px; 
    font-size: 16px; 
    border-radius: 5px;
    transition: background-color 0.3s ease; 
}
.custom-confirm-button:hover {
    background-color: #d04a8e; 
}
.read-more {
    background-color: #244568; 
    color: #fff; 
    border: none;
    padding: 8px 12px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease; 
    position: relative;
    overflow: hidden;
    margin-top: 14%;
    /* bottom: 0%; */
}
.read-more:hover {
    background-color: #244568;
    transform: scale(1.05); 
}
.read-more:focus {
    outline: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); 
}
.read-more::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: rgba(255, 255, 255, 0.2); 
    transition: all 0.4s ease;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
}
.read-more:hover::before {
    transform: translate(-50%, -50%) scale(1); 
}
.single-box {
    height: 500px; 
}
.single-category {
    height: 373px;
    width: 228px;
 }
 @media (max-width: 768px) {
     .single-category {
         height: auto; 
         width: 100%; 
     }
 }
 @media (max-width: 576px) {
     .single-category {
         height: auto; 
         width: 100%;  
         padding: 10px;
         box-sizing: border-box; 
     }
 }
 