/* Styles for the new horizontal block with big numbers */
.stats-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 40px 20px;
    background-color: #f8f8f8;
    margin-bottom: 30px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 8px;
    perspective: 1000px; /* For 3D effect */
}

.stat-item-home {
    text-align: center;
    color: #333;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s;
}

.stat-item-home:hover {
    transform: rotateY(15deg) rotateX(15deg);
}

.stat-number-home {
    font-size: 4em;
    font-weight: bold;
    color: #007bff; /* A prominent color */
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.stat-description-home {
    font-size: 1.2em;
    color: #555;
}

/* 3D visual effects for expandable blocks */
.subi-list1-li-inner,
.pic2-dd-text,
.subi-list2-li-inner {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    transform-style: preserve-3d;
    position: relative;
    z-index: 1;
}

.subi-list1-li-inner:hover,
.pic2-dd-text:hover,
.subi-list2-li-inner:hover {
    transform: translateY(-5px) rotateX(5deg) rotateY(5deg);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    cursor: pointer;
}

/* Styles for the expanded content */
.prettyphoto-expanded-content {
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    max-width: 800px;
    margin: 20px auto;
    line-height: 1.6;
}

.prettyphoto-expanded-content h4 {
    color: #007bff;
    margin-bottom: 15px;
    font-size: 1.8em;
}

.prettyphoto-expanded-content p {
    margin-bottom: 10px;
}
