.icon-50 i {
  font-size: 50px;     /* width ≈ 50px */
  line-height: 1;     /* extra height remove */
}

.img-max-270 {
  max-width: 370px;
  width: 100%;
  height: 300px;
  object-fit: cover;
}
/* Big FAQ Image */
.it-about-2-thumb {
    max-width: 500px;
    max-height: 705px;
    overflow: hidden;
}

.it-about-2-thumb img {
    width: 100%;
    height: 100%;
    max-width: 500px;
    max-height: 705px;
    object-fit: cover; /* image crop hogi, stretch nahi */
    border-radius: 20px;
}

/* Small FAQ Image */
.it-about-2-thumb-sm {
    width: 241px;
    height: 242px;
    overflow: hidden;
}

.it-about-2-thumb-sm img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* exact box fill */
    border-radius: 20px;
}

.it-choose-2-icon {
    text-align: center;
}

.it-choose-2-icon .icon-wrap {
    width: 100px;
    height: 100px;
    margin: 0 auto; /* horizontal center */
}

.it-choose-2-icon img {
    max-width: 100px;
    max-height: 87px;
    object-fit: contain;
}

.it-team-social p {
  color: white !important;
}

/* ❌ Decorative shapes must not block clicks */
.it-team-shape-3,
.it-team-shape-7,
.it-breadcrumb-shape-1,
.it-breadcrumb-shape-3 {
    pointer-events: none !important;
}

/* ❌ Any overlay pseudo elements */
.it-team-thumb::before,
.it-team-thumb::after {
    pointer-events: none !important;
}

.it-footer-wrap .it-footer-border::before,
.it-footer-wrap .it-footer-border::after,
.it-footer-wrap .it-footer-border span::after {
    display: none !important;
}
.filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-tags label {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

.filter-tags input[type="radio"] {
    display: none; /* Radio ka dot hide */
}

.filter-tags span {
    padding: 8px 18px;
    border: 1px solid #d8dee6;
    border-radius: 25px;
    font-size: 15px;
    color: #505d67;
    background: #fff;
    transition: all 0.25s ease;
}

/* Active Button Style */
.filter-tags input[type="radio"]:checked + span {
    background: #03594E;
    color: #fff;
    border-color: #03594E;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}




