    .hero {
      background: linear-gradient(to right, #0d6efd, #0b5ed7);
      color: white;
      padding: 80px 0;
      text-align: center;
    }
    .card-img-top {
      object-fit: cover;
      height: 200px;
    }
    .timeline {
      border-left: 3px solid #C5A04D;
      margin: 50px 0;
      padding-left: 30px;
    }
    .timeline h5 {
      margin-top: 0;
    }
    .team-card img {
      width: 100%;
      height: 280px;
      object-fit: cover;
    }
    .icon-box {
      text-align: center;
      padding: 20px;
    }
    .icon-box i {
      font-size: 40px;
      color: #C5A04D;
      margin-bottom: 15px;
    }

.company_logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 12px;
    padding: 8px;
    background-color: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Optional: Hover effect */
.company_logo:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.team-card:hover {
    transform: translateY(-4px);
    transition: 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.big-cta{
  background-color:#C5A04D;
  color:white;
  border:none;
  width:100%;
  height:60px;
  border-radius:5px;
}