.menu-item{
    margin-left: 80px;
}

@media screen and (max-width: 768px){

    .menu-item{
        margin-left: 0px;
    }
    .zoom-img {
        transform: scale(1.7); /* Zoom 20% */
        margin-top: 30px;
    }

    .stats-section .stat-box {
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);

    }
    .stats-section .stat-box:last-child {
        border-right: none;
        border-bottom: none;
    }
    .why_choose_us{
        padding-left: 40px !important;
        margin-bottom: 10px !important;
    }
    .recent_posts{
        padding-left: none  !important; padding-right: none !important;
    }

}

.info-box {
    padding: 30px;
    color: white;
    text-align: left;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.info-box h5, .info-box p {
    margin: 0;

}
.box1 { background-color: #0099CC; }  /* Light blue */
.box2 { background-color: #578FCA; }  /* Medium blue */
.box3 { background-color: #3674B5; }  /* Dark blue */


/* Default: Normal image size */
.zoom-img {
    transition: transform 0.3s ease-in-out;
}
.stats-section {
    position: relative;

    color: white;

    text-align: center;
}
.stats-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 85, 170, 0.8); /* Blue overlay with opacity */
}
.stats-section .overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Blue overlay with opacity */
}
.stats-section .content {
    position: relative;
    z-index: 2;
}
.stats-section .stat-box {
    display: flex;
    align-items: center;
    padding: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    justify-content: start; /* Align left */
    text-align: left;
}
.stats-section .stat-box:last-child {
    border-right: none;
}
.stats-section .icon {

    margin-bottom: 10px;
}

.stats-section .icon > img {

    margin-bottom: 10px;
}
.stats-section .stat-text{
    margin-left: 10px;
}

.recent_posts{
    padding-left: 100px !important;padding-right: 100px !important;
}

.vision-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: 0.3s;
    border: 2px solid transparent;
}
.vision-card .icon {
    background: #3674B5;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 15px;
}
.vision-card h3 {
    font-weight: bold;
    margin-bottom: 15px;
}
.vision-card p {
    color: #666;
}
.vision-card:hover, .vision-card.active {
    background: #3674B5;
    color: white;
    border-color: #3674B5;
}
.vision-card:hover .icon, .vision-card.active .icon {
    background: white;
    color: #3674B5;
}
.vision-card:hover p, .vision-card.active p {
    color: white;
}


