.elementor-8208 .elementor-element.elementor-element-744e3ea{--display:flex;}.elementor-8208 .elementor-element.elementor-element-9ed4484{--display:flex;}.elementor-8208 .elementor-element.elementor-element-9240091{--display:flex;}.elementor-8208 .elementor-element.elementor-element-6a102c3{--display:flex;}.elementor-8208 .elementor-element.elementor-element-6678b83{--display:flex;}.elementor-8208 .elementor-element.elementor-element-572d2ee{width:100%;max-width:100%;}body.elementor-page-8208:not(.elementor-motion-effects-element-type-background), body.elementor-page-8208 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FFFFFF;}/* Start custom CSS for html, class: .elementor-element-572d2ee *//* Section Styling */
.accreditations-section {
  padding: 70px 0;
  background: #f9fbfd;
  position: relative;
  z-index: 1;
}

/* Subtitle */
.subtitle {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: #0C2A4E;
  position: relative;
  margin-bottom: 10px;
  padding-left: 35px;
  letter-spacing: 1px;
}

.subtitle:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 12px;
  height: 12px;
  transform: translateY(-50%);
  background: #0C2A4E;
  border-radius: 50%;
  animation: blink 1.5s infinite;
}

/* Heading */
.main-heading {
  font-size: 32px;
  font-weight: 800;
  color: #0C2A4E;
  margin-bottom: 10px;
}

/* Description */
.section-description {
  max-width: 600px;
  margin: 0 auto;
  color: #6c7a89;
  font-size: 15px;
  line-height: 1.6;
}

/* Badge Cards */
.badge-card {
  text-align: center;
  transition: all 0.3s ease-in-out;
}

/* Circular Logo Container */
.badge-logo {
  background: #fff;
  border-radius: 50%;
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease-in-out;
}

/* Logo Styling */
.badge-logo img {
  max-width: 70%;
  max-height: 70%;
  object-fit: contain;
  filter: grayscale(30%);
  transition: all 0.3s ease-in-out;
}

/* Title Styling */
.badge-title {
  margin-top: 12px;
  font-size: 14px;
  color: #0C2A4E;
  font-weight: 600;
}

/* Hover Effects */
.badge-card:hover .badge-logo {
  transform: scale(1.08);
  box-shadow: 0 12px 24px rgba(12, 42, 78, 0.2);
}

.badge-card:hover img {
  filter: grayscale(0%);
}

/* Responsive */
@media (max-width: 768px) {
  .main-heading {
    font-size: 26px;
  }
  .section-description {
    font-size: 14px;
  }
  .badge-logo {
    width: 120px;
    height: 120px;
  }
  .badge-title {
    font-size: 13px;
  }
}



/* 5-per-row layout with real gaps (works alongside Bootstrap) */
.badges-row{
  --gap: 24px;
  --cols: 5;                /* desktop: 5 items per row */
  display:flex;
  flex-wrap:wrap;
  gap: var(--gap);
  justify-content:center;
}

/* Each item takes exactly 1/--cols of the row, minus the gaps */
.badges-row .custom-col{
  flex: 0 0 calc((100% - (var(--cols) - 1) * var(--gap)) / var(--cols));
  max-width: calc((100% - (var(--cols) - 1) * var(--gap)) / var(--cols));
}

/* Responsive: adjust columns */
@media (max-width: 1200px){
  .badges-row{ --cols: 4; }   /* optional: 4 per row on large laptops */
}
@media (max-width: 992px){
  .badges-row{ --cols: 2; }   /* tablets: 2 per row */
}
@media (max-width: 576px){
  .badges-row{ --cols: 1; }   /* phones: 1 per row */
}/* End custom CSS */