/* header */
.main-logo {
  height: auto;
  width: 203px;
}
.footer-logo {
  height: auto;
  width: 233px;
}

.icon-grid .col {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  border-right: 1px solid #ddd; /* vertical dividers */
  border-bottom: 1px solid #ddd; /* horizontal dividers */
}
.icon-grid .col img {
  width: 227px; /* adjust icon size */
  height: auto;
}
/* remove right border on last column of each row */
.icon-grid .col:nth-child(4n) {
  border-right: none;
}
/* remove bottom border on last row */
.icon-grid .col:nth-last-child(-n + 4) {
  border-bottom: none;
}

.icon-grid2 .col {
  /* font-size: 21px; */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  border-right: 1px solid #ddd; /* vertical dividers */
  border-bottom: 1px solid #ddd; /* horizontal dividers */
}
.icon-grid2 .col p {
  margin-bottom: 0px !important;
}

/* remove right border on last column of each row (2 columns per row) */
.icon-grid2 .col:nth-child(2n) {
  border-right: none;
}

/* remove bottom border on last row (2 columns per row, so last 2 items) */
.icon-grid2 .col:nth-last-child(-n + 2) {
  border-bottom: none;
}

.visibility-cls {
  visibility: visible !important;
}

.table td,
.table th {
  border-bottom: none !important;
}
.product-btn {
  margin-top: 15px !important;
  padding-left: 27px;
  padding-right: 61px;
}
.prod-num {
  position: absolute;
  z-index: 1;
  padding-left: 23px;
  padding-top: 23px;
}
.prod-num h2 {
  color: white;
  font-weight: bolder;
  font-size: 48px;
  text-shadow: 0px 0px 20px black;
}
.product-list-arrow {
  height: 50px;
  width: 50px !important;
  position: absolute;
  z-index: 1;
  margin-left: -62px;
  margin-top: 189px;
}
/* .project-category-list li:hover{
  background-color: #085a71;
} */

.product-wrapper {
  /* max-width: 1100px; */
  margin: 30px auto;
  padding: 20px;
}
.card {
  background: #fff;
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.card h2 {
  font-size: 22px;
  margin-bottom: 15px;
  padding: 10px;
  border-radius: 8px;
  background: linear-gradient(90deg, #085a71, #70caff);
  color: #fff;
  display: inline-block;
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.info-item {
  background: #fafafa;
  padding: 15px;
  border-radius: 10px;
  border-left: 4px solid #ff6f61;
  box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.05);
}
.info-item strong {
  display: block;
  font-weight: 600;
  color: #222;
  margin-bottom: 6px;
}
.description {
  background: #fff7e6;
  padding: 18px;
  border-radius: 12px;
  border: 1px solid #ffe0b3;
  line-height: 1.7;
  font-size: 15px;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05);
}
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 12px;
  background: #ff6f61;
  color: #fff;
  margin-left: 10px;
}

.our-goals {
  padding: 100px 0;
}

.goals-content-body {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.goals-item2 {
  position: relative;
  /* width: auto; */
  width: calc(50% - 15px);
  /* border: 2px solid var(--divider-color); */
  border-radius: 50px;
  background-color: #eafaff;
  padding: 7px 29px;
  overflow: hidden;
  margin: -10px;
}

.goals-item2::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--accent-secondary-color);
  height: 0;
  width: 100%;
  z-index: 0;
  transition: all 0.4s ease-in-out;
}

.goals-item2:hover:before {
  height: 100%;
}

.goals-item2 .icon-box {
  position: relative;
  margin-bottom: 40px;
  z-index: 1;
}

.goals-item2 .icon-box img {
  max-width: 50px;
  transition: all 0.4s ease-in-out;
}

.goals-item2:hover .icon-box img {
  transform: rotateY(180deg);
  filter: brightness(0) invert(1);
}

.goals-item-content {
  position: relative;
  z-index: 1;
}

.goals-item-content h3 {
  font-size: 20px;
  text-transform: capitalize;
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
}
.goals-item-content h2 {
  transition: all 0.3s ease-in-out;
}

.goals-item-content p {
  margin: 0;
  transition: all 0.3s ease-in-out;
  color: #085a71;
  font-size: 15px;
}

.goals-item2:hover .goals-item-content p,
.goals-item2:hover .goals-item-content h3,
.goals-item2:hover .goals-item-content h2 {
  color: var(--white-color);
}

.goals-content-footer {
  display: flex;
  align-items: center;
  gap: 20px 30px;
  margin-top: 60px;
}

