﻿
:root,
[data-bs-theme="light"] {
    --bs-primary: #2EB872;
    --bs-primary-rgb: 46, 184, 114;
}
.text-primary,
.btn-primary,
.bg-primary {
    --bs-primary: #2EB872 !important;
}

html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}




.service-icon {
    /* Set the fixed size here */
    width: auto;
    height: 90px;
    /* Ensures the image doesn't stretch or distort */
    object-fit: contain;
    /* Centers the icon if it's narrower than the container */
    display: block;
    border-radius: 12px; /* ADD THIS */
    margin-left: 0;
}

/* Optional: If you want the text to stay aligned even if descriptions vary in length */
.col-lg-3 h5 {
    min-height: 3rem;
    display: flex;
    align-items: center;
}

.service-card img {
    height: 80px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.service-card:hover img {
    transform: scale(1.3);
}

.service-card {
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    background: #fff;
}

    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    }


.industry-title {
    font-weight: 600;
    font-size: 1.1rem;
}

.industry-text {
    font-size: 0.9rem;
    color: #6c757d;
}

/* Only for this section */
.service-box-fixed {
    height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    transition: 0.3s ease;
}

    .service-box-fixed:hover {
        transform: scale(1.05);
    }

    .service-box-fixed img {
        height: 80px;
        width: 100%;
        object-fit: contain;
    }

    .service-box-fixed span {
        font-size: 14px;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }