/* Start custom CSS for html, class: .elementor-element-b34c295 *//* BASIC SETTINGS */
.bvs-about-wrapper {
    font-family: 'Poppins', sans-serif;
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
}

/* NO SHADOWS ANYWHERE */
* {
    box-shadow: none !important;
}

/* ABOUT SECTION */
.bvs-about-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
    align-items: flex-start;
}

.bvs-about-image img {
    width: 100%;
    max-width: 520px;
    border-radius: 10px;
}

/* Text Area */
.bvs-tag {
    font-size: 14px;
    font-weight: 600;
    color: #d82b2b;
    letter-spacing: 1px;
}

.bvs-about-content h2 {
    font-size: 36px;
    margin: 10px 0 20px;
    font-weight: 700;
}

.bvs-about-content p {
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 15px;
}

/* GRID BOXES */
.bvs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.bvs-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 25px;
    border: 1px solid #e7e7e7;
    text-align: left;
    transition: transform 0.3s ease;
}

.bvs-card:hover {
    transform: translateY(-5px);
}

/* ICONS */
.bvs-icon {
    font-size: 34px;
    color: #0d6efd;
    margin-bottom: 12px;
    animation: floatIcon 3s ease-in-out infinite;
}

.bvs-icon.large {
    font-size: 50px;
    margin-bottom: 18px;
}

/* ICON FLOAT ANIMATION */
@keyframes floatIcon {
    0% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
    100% { transform: translateY(0); }
}

/* HEADINGS */
.bvs-card h3,
.bvs-expertise h3 {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #0d6efd;
}

/* EXPERTISE BLOCK */
.bvs-expertise {
    background: #f3f8ff;
    padding: 35px;
    border-radius: 8px;
    text-align: left;
    border: 1px solid #e3e8ef;
}

.bvs-expertise p {
    line-height: 1.7;
    margin-bottom: 10px;
    font-size: 15px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .bvs-about-content h2 {
        font-size: 28px;
    }
    .bvs-card {
        padding: 20px;
    }
}
/* Ensure image LEFT and text RIGHT */
.bvs-about-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

/* LEFT IMAGE */
.bvs-about-image {
    flex: 1 1 45%;
}

.bvs-about-image img {
    width: 100%;
    border-radius: 10px;
}

/* RIGHT TEXT */
.bvs-about-content {
    flex: 1 1 50%;
}/* End custom CSS */