﻿.reer-para {
    font-family: "Heebo", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #666565;
    margin: 0 0 1rem 0;
}

@media (min-width: 768px) and (max-width: 1024px) {
    /* iPad: 2 images in 1 row */
    .vision-section .row.g-3 > .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}
.btn-tab {
    background: #2ECC71;
    color: #fff !important;
    font-weight: 600;
    border-radius: 25px;
    padding: 10px 25px;
    border: none;
    transition: 0.3s ease-in-out;
}

    .btn-tab.active, .btn-tab:hover {
        background: #27AE60;
        color: #fff !important;
    }

body {
    color: #666565;
}

.vision-section {
    padding: 40px 0;
}

.carousel img {
    object-fit: cover;
    border-radius: 20px;
}

hr {
    border-top: 2px solid #B62E27;
    margin: 30px 0;
}
.img-wrapper img {
    border-radius: 10px; /* Rounded corners */
    width: 80%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
}

    .img-wrapper img:hover {
        transform: scale(1.02); /* optional hover zoom effect */
    }

/* Flex wrapper already centers images with gap */
@media (max-width: 767px) {
    .img-wrapper {
        width: 100%; /* stacked on small screens */
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .img-wrapper {
        width: 48%; /* 2 images side by side on iPad */
    }
}