/* SECTION */
.cab-section {
  padding: 40px 20px;
}

/* HEADER */
.cab-header {
  text-align: center;
  margin-bottom: 30px;
}

.cab-header h2 {
  margin-bottom: 10px;
}

.cab-header p {
  color: #666;
  font-size: 14px;
}

/* GRID */
.cab-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

/* CARD */
.cab-card {
  border-radius: 12px;
  color: #fff;
  padding: 15px;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}

.cab-card:hover {
  transform: translateY(-5px);
}

/* COLORS */
.blue {
  background: #2f5ea7;
}

.red {
  background: #d32f2f;
}

/* TITLE */
.cab-card h3 {
  margin: 0 0 10px;
  border-bottom: 1px dashed white;
  padding-bottom:8px;
}

/* BADGE */
.badge {
  background: #000;
  padding: 4px 10px;
  font-size: 12px;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 10px;
}

/* DETAILS */
.details {
  font-size: 15px;
  line-height: 1.6;
}

/* IMAGE */
.cab-img {
  /* width: 65%; */
  margin-top: 10px;
  border-radius: 50%;
}

/* ICONS */
.icons {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 14px;
}

.cta-btn-2{
    background: linear-gradient(45deg, #ff416c, #ff4b2b);
    padding: 12px 15px;
    border-radius: 50px;
    border: none;
    color: blue;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

@media (max-width: 320px) {
  .cab-img {
   width: 100%; 
  margin-top: 10px;
  border-radius: 50%;
}
}