.contentfirst{
    padding: 50px 0;
}
.contentfirst h2{
    color: #1a73e8;
    font-weight: 600;
}
  .animated-cta-btn {
    position: relative;
    display: inline-block;
    background: linear-gradient(90deg, #ffa500, #4e54c8);
    color: white;
    padding: 10px 30px;
    font-weight: 600;
    font-size: 1.2rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: 1px;
    user-select: none;
    overflow: hidden;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 20px rgba(72, 75, 255, 0.4);
  }

  .animated-cta-btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(25deg) translate(-100%, -50%);
    transition: transform 0.7s ease;
    pointer-events: none;
    filter: blur(20px);
    border-radius: 50%;
    z-index: 1;
  }

  .animated-cta-btn:hover::before {
    transform: rotate(25deg) translate(150%, -50%);
  }

  .animated-cta-btn:hover,
  .animated-cta-btn:focus {
    background: linear-gradient(90deg, #4e54c8, #ffa500);
    box-shadow: 0 12px 28px rgba(72, 75, 255, 0.6);
    outline: none;
    color: white;
  }

  .animated-cta-btn span {
    position: relative;
    z-index: 2;
    display: inline-block;
  }

  /* Trusted Agency Section */
.trusted-agency-section {
  border-radius: 14px;
  margin-bottom: 50px;
  transition: all 0.3s ease;
}

.trusted-agency-title {
  color: #1a73e8;
  font-weight: 600;
  
}

.trusted-agency-intro {
  font-size: 1.15rem;
  margin-bottom: 35px;
  color: #333;
  line-height: 1.6;
}

/* Card Deck */
.trusted-agency-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

/* Individual Cards */
.trusted-card {
  background: linear-gradient(135deg, #ffa500, #f1b91c);
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(78, 84, 200, 0.15);
  padding: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.trusted-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(78, 84, 200, 0.2);
}

.trusted-card h5 {
  color: white;
  font-weight: 600;
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.trusted-card p {
  color: white;
  font-size: 1rem;
  line-height: 1.5;
}
