/* who we are */
.intro{
  text-align: justify;
}
/* who we are end */


/* ========== Key Highlights Section ========== */
.key-highlights-wrapper {
    margin-top: 2rem;
}

.key-highlights-wrapper .icon-circle {
    border-radius: 50%;
    width: 45px;
    height: 45px;
    min-width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    background-color: var(--theme-color, #ffd700); /* fallback if theme var not defined */
    color: var(--icon-color, #000); /* fallback color for icon */
}

.key-highlights-wrapper .highlight-text {
    flex: 1;
}

.key-highlights-wrapper .highlight-text h5 {
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 1rem;
}

.key-highlights-wrapper .highlight-text p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-light, #aaa);
    margin-bottom: 0;
}

/* Responsive spacing if needed */
@media (max-width: 767px) {
    .key-highlights-wrapper .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .key-highlights-wrapper .icon-circle {
        margin-bottom: 10px;
    }
}


/* footer ========= */

.footer-social-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 20px;
}

.footer-address {
  max-width: 220px;
}

@media (max-width: 767px) {
  .footer-social-wrap {
    flex-direction: column;
  }
}



/* our team card */

.team-grid {
  gap: 30px;
}

.team-card {
  display: flex;
  background: #111111;
  border-radius: 12px;
  overflow: hidden;
  min-height: 200px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-6px);
}

.identity-bar {
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #121212;
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 1px;
}

.bg-red { background-color:var(--theme-color); color: #121212;}
.bg-blue { background-color:var(--theme-color);  color: #121212;}


.card-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-content h4 {
  margin: 0;
  font-size: 20px;
  /* color: white; */
}

.card-content .role {
  margin-top: 8px;
  /* color: white; */
  font-size: 15px;
}



/* our team end */



.custom-icon-bg {
  width: 36px;
  height: 36px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #b3de4f, #8bc34a); 
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}


.custom-icon-bg i {
  color: #000 !important;
  font-size: 16px;
}



/* logo header=== */

.main-brand img, .dsnload__img img {
    width: 135px !important;
    
    /* border-radius: 12px; */
  }

  .footer .logo-wrap .logo {
    width: 135px !important;
}



















