/* =========================
   Bottom Section
========================= */
.bottom {
  display: flex;
  flex-wrap: wrap;           /* allow wrapping on smaller screens */
  justify-content: center;   /* center cards horizontally */
  gap: 30px;
  margin-top: 80px;          /* space from previous content */
  padding: 0 20px;           /* small horizontal padding */
}

/* =========================
   Left Section Card
========================= */
.left-sectionb {
  flex: 1 1 450px;           /* flexible width, min 450px */
  max-width: 600px;
  background: #ffffff;        /* white card background */
  border-left: 5px solid #3a6cf4; /* colored stripe */
  border-radius: 12px;
  padding: 30px 25px;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  color: #333;
  line-height: 1.7;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-left-color 1.5s linear;
}

/* Hover effect for left card */
.left-sectionb:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
  border-left-color: #ff6f61;  /* changes stripe color on hover */
}

/* Optional animated stripe */
.professional-card.animated-stripe {
  animation: stripeAnimation 3s infinite;
}

@keyframes stripeAnimation {
  0%, 100% { border-left-color: #3a6cf4; }
  50% { border-left-color: #ff6f61; }
}

/* =========================
   Right Section (Contact Box)
========================= */
.right-sectionb {
  flex: 1 1 250px;           /* flexible width */
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 15px;                  /* space between rows */
  padding: 20px;              /* inner padding */
  border: 1px solid rgb(192, 189, 189);
  border-radius: 10px;
  background: #f9f9f9;        /* soft background for contrast */
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  font-family: 'Poppins', sans-serif;
  color: #333;
  transition: all 0.3s ease;
}

/* Hover effect for right box */
.right-sectionb:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  border-color: #ccc;
}

/* Rows inside contact box */
.right-sectionb .contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 500;
  color: #444;
}

/* Icons inside contact rows */
.right-sectionb .contact-row img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

/* =========================
   Responsive
========================= */
@media (max-width: 768px) {
  .bottom {
    flex-direction: column;      /* stack cards vertically */
    align-items: center;
    gap: 20px;
  }
  .left-sectionb, .right-sectionb {
    max-width: 100%;             /* full width on small screens */
    flex: 1 1 100%;
    padding: 20px;
  }
  .right-sectionb .contact-row {
    font-size: 14px;
    gap: 8px;
  }
  .right-sectionb .contact-row img {
    width: 22px;
    height: 22px;
  }
}