:root {
  --brand:#546ce3;
    --sub: #fe7c1a;
    --body: #516171;
    --border: rgba(0,0,0,0.08);
    --shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
}


/* our values start  */
.value-box {
    background-color: #f8f9fa;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, background-color 0.3s ease;
    text-align: center;
}

.icon-box {
    width: 60px;
    height: 60px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.value-title {
    font-weight: bold;
    font-size: 20px;
    color: #1e3a5f;
    margin-top: 15px;
}

.value-subtitle {
    font-weight: bold;
    color: #ff6b6b;
    margin-top: 10px;
}

.value-description {
    color: #6c757d;
    font-size: 14px;
    margin-top: 10px;
}

.empowerment-box {
    background-color: #e6e9fd;
}

.inclusivity-box {
    background-color: #ffe7e0;
}

.sustainability-box {
    background-color: #e5f7ff;
}

.community-box {
    background-color: #ffdff4;
}

/* Responsive spacing adjustments */
@media (max-width: 992px) {
    .mt-lg-4 {
        margin-top: 0 !important;
    }
}
/* ==========================  */
/* product  */
.product-img {
    border-radius: 50px;
  }
  
  .how-bor2,
  .how-bor1 {
    position: relative;
    z-index: 1;
  
  }
  
  .how-bor2::before,
  .how-bor1::before {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    border: 3px solid var(--sub);
    border-radius: 50px;
  }
  
  .how-bor1::before {
    bottom: -21px;
    left: -21px;
  }
  
  
  @media (max-width: 767px) {
    .how-bor1::before {
      bottom: -21px;
      right: -21px;
  
    }
  }
  
  .how-bor2::before {
    bottom: -21px;
    right: -21px;
  }
/* =========================    */
/* -----------------------------------------------------------------------------  */
/* Sections Header
--------------------------------*/
.section-header h3 {
    font-size: 32px;
    color: #111;
    text-transform: uppercase;
    text-align: center;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
  }
  
  .section-header h3::before {
    content: '';
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: #ddd;
    bottom: 1px;
    left: calc(50% - 60px);
  }
  
  .section-header h3::after {
    content: '';
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: var(--brand);
    bottom: 0;
    left: calc(50% - 20px);
  }
  
  .section-header p {
    text-align: center;
    padding-bottom: 30px;
    color: #333;
  }
  /* ===============  */
  .topbar {
    background-color: var(--brand) !important;    
}

